:root {
    --ink: #07090f;
    --graphite: #151922;
    --muted: #6f7480;
    --line: #e5e8ee;
    --paper: #f7f8fb;
    --white: #ffffff;
    --accent: #a100ff;
    --accent-strong: #7df9ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    letter-spacing: 0;
}

.preview-banner {
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 24px;
    text-align: center;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    display: grid;
    gap: 24px;
    grid-template-columns: auto 1fr auto;
    left: 0;
    min-height: 72px;
    padding: 0 42px;
    position: sticky;
    right: 0;
    top: 0;
    z-index: 40;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-weight: 800;
    gap: 10px;
}

.brand img {
    display: block;
    height: 44px;
    object-fit: contain;
    width: 184px;
}

.site-header .brand img {
    filter: none;
}

.main-nav {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: center;
    min-height: 72px;
}

.nav-item {
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    min-height: 72px;
    padding: 0;
}

.nav-item > a {
    align-items: center;
    display: flex;
    height: 72px;
    padding: 0 18px;
    position: relative;
}

.nav-item > a::after {
    background: var(--accent);
    bottom: 0;
    content: "";
    height: 4px;
    left: 18px;
    opacity: 0;
    position: absolute;
    right: 18px;
}

.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
    opacity: 1;
}

.nav-panel {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    color: var(--white);
    display: none;
    left: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 72px;
    width: 100vw;
}

.mega-inner {
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(280px, 0.8fr) minmax(540px, 1.6fr);
    margin: 0 auto;
    max-width: 1480px;
    padding: 40px 42px 52px;
}

.mega-featured {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 14px;
    padding-right: 34px;
}

.mega-kicker {
    color: #9fa4ad;
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.mega-feature-card {
    background: #171717;
    border-left: 4px solid transparent;
    display: grid;
    gap: 10px;
    padding: 20px;
}

.mega-feature-card:hover {
    border-left-color: var(--accent);
    background: #202020;
}

.mega-feature-card strong {
    color: var(--white);
    font-size: 19px;
    line-height: 1.16;
}

.mega-feature-card span {
    color: #b8bec8;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.mega-groups {
    column-gap: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 34px;
}

.mega-group {
    break-inside: avoid;
}

.mega-group h3 {
    color: var(--white);
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.mega-group a {
    color: #b8bec8;
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 9px;
}

.mega-group a:hover {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
}

.nav-item:hover .nav-panel,
.nav-item:focus-within .nav-panel {
    display: block;
}

.header-actions {
    align-items: center;
    display: flex;
    gap: 12px;
}

.icon-link {
    border: 1px solid var(--line);
    border-radius: 999px;
    display: grid;
    height: 40px;
    place-items: center;
    width: 40px;
}

.icon-link span {
    border: 2px solid var(--ink);
    border-radius: 50%;
    height: 14px;
    position: relative;
    width: 14px;
}

.icon-link span::after {
    background: var(--ink);
    content: "";
    height: 2px;
    position: absolute;
    right: -7px;
    top: 10px;
    transform: rotate(45deg);
    width: 8px;
}

.header-cta,
.btn {
    align-items: center;
    border-radius: 0;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
}

.header-cta,
.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-secondary {
    border: 1px solid currentColor;
}

.hero {
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    min-height: calc(100vh - 72px);
    padding: 86px 7vw 72px;
}

.hero-compact {
    grid-template-columns: minmax(0, 900px);
    min-height: 430px;
}

.hero-dark {
    background: var(--ink);
    color: var(--white);
}

.hero-light {
    background: var(--paper);
}

.hero-copy {
    align-self: center;
    max-width: 960px;
}

.eyebrow {
    color: var(--accent);
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 18px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(48px, 8vw, 102px);
    line-height: 0.98;
    margin-bottom: 28px;
    max-width: 980px;
}

h2 {
    font-size: clamp(34px, 4vw, 64px);
    line-height: 1.04;
    margin-bottom: 22px;
}

h3 {
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 14px;
}

p,
li {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}

.hero-dark p,
.hero-dark li,
.dark-band p,
.dark-band li {
    color: #c5ccd8;
}

.hero-copy > p {
    font-size: 22px;
    max-width: 760px;
}

.hero-copy strong {
    color: var(--accent-strong);
    display: block;
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-system {
    align-self: end;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 14px;
    padding-left: 34px;
}

.hero-system span {
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.18), rgba(33, 230, 168, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #eef4ff;
    font-size: 18px;
    font-weight: 800;
    padding: 22px;
}

.split-section,
.content-section,
.dark-band,
.statement-band,
.cta-band,
.contact-section {
    padding: 86px 7vw;
}

.split-section {
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
}

.lead-copy {
    font-size: 20px;
}

.check-list {
    columns: 2;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.check-list li {
    break-inside: avoid;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.check-list li::before {
    color: var(--accent);
    content: "+";
    font-weight: 800;
    left: 0;
    position: absolute;
}

.statement-band {
    background: var(--accent);
    color: var(--ink);
}

.statement-band p {
    color: #19202c;
    font-size: 22px;
    max-width: 880px;
}

.dark-band {
    background: var(--graphite);
    color: var(--white);
}

.muted {
    background: var(--paper);
}

.section-heading {
    margin-bottom: 42px;
    max-width: 900px;
}

.section-heading p {
    font-size: 20px;
}

.card-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1100px;
}

.audience-cloud span {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--graphite);
    font-size: 15px;
    font-weight: 800;
    padding: 12px 16px;
}

.package-grid {
    background: var(--line);
    border: 1px solid var(--line);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-card {
    background: var(--white);
    min-height: 520px;
    padding: 30px;
    position: relative;
}

.package-card.is-featured {
    box-shadow: inset 0 0 0 3px var(--accent);
}

.package-badge {
    background: var(--accent);
    color: var(--white);
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
    padding: 8px 10px;
    text-transform: uppercase;
}

.package-card h3 {
    font-size: 30px;
}

.package-card > strong {
    color: var(--ink);
    display: block;
    font-size: 22px;
    margin-bottom: 18px;
}

.package-card ul {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.package-card li {
    border-top: 1px solid var(--line);
    color: var(--graphite);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 0;
}

.faq-list {
    border-top: 1px solid var(--line);
    max-width: 980px;
}

.faq-list details {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 26px 28px;
}

.faq-list summary {
    color: var(--ink);
    cursor: pointer;
    font-size: 22px;
    font-weight: 900;
}

.faq-list p {
    margin: 16px 0 0;
    max-width: 760px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    min-height: 250px;
    padding: 30px;
}

.dark-band .feature-card {
    background: #202632;
    border-color: rgba(255, 255, 255, 0.08);
}

.kicker {
    color: var(--accent-strong);
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.feature-card ul {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.feature-card li {
    font-size: 15px;
    margin-bottom: 8px;
}

.service-list {
    border-top: 1px solid var(--line);
}

.service-row {
    display: grid;
    gap: 32px;
    grid-template-columns: 90px minmax(0, 1fr);
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.service-row > span {
    color: var(--accent);
    font-size: 18px;
    font-weight: 800;
}

.service-row h2 {
    font-size: clamp(30px, 3vw, 48px);
}

.cta-band {
    background: var(--ink);
    color: var(--white);
}

.cta-band h2,
.cta-band p {
    max-width: 860px;
}

.contact-section {
    display: grid;
    gap: 38px;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
}

.contact-card {
    background: var(--paper);
    padding: 36px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    color: var(--graphite);
    display: grid;
    font-weight: 800;
    gap: 8px;
}

.contact-form label.half {
    grid-column: span 1;
}

.contact-form label:not(.half),
.contact-form .form-success,
.contact-form .form-error,
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form label span {
    color: var(--accent);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--white);
    border: 1px solid var(--line);
    font: inherit;
    padding: 16px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.contact-form .field-error,
.form-error {
    color: #b42318;
}

.form-success,
.form-error {
    border: 1px solid var(--line);
    font-weight: 800;
    padding: 16px;
}

.form-success {
    background: #ecfdf3;
    color: #027a48;
}

.form-error {
    background: #fff1f3;
}

.choice-list {
    border: 1px solid var(--line);
    display: grid;
    gap: 10px;
    padding: 14px;
}

.choice-list em {
    align-items: center;
    color: var(--graphite);
    display: inline-flex;
    font-style: normal;
    font-weight: 700;
    gap: 8px;
}

.choice-list input {
    width: auto;
}

.mco-honeypot {
    height: 0;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.readable {
    max-width: 900px;
}

.builder-section {
    padding: 86px 7vw;
}

.builder-bg-default,
.builder-bg-light {
    background: var(--white);
    color: var(--ink);
}

.builder-bg-light {
    background: var(--paper);
}

.builder-bg-dark {
    background: #000000;
    color: var(--white);
}

.builder-bg-dark p,
.builder-bg-dark .eyebrow {
    color: #cbd5e1;
}

.builder-bg-accent {
    background: var(--accent);
    color: #ffffff;
}

.builder-bg-image {
    background: #111827;
    color: var(--white);
}

.builder-hero,
.builder-split {
    display: grid;
    align-items: center;
    gap: 54px;
    grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
}

.builder-hero {
    min-height: 70vh;
}

.builder-copy h1,
.builder-copy h2,
.builder-cta h2 {
    max-width: 900px;
}

.builder-copy p,
.builder-cta p {
    max-width: 760px;
    font-size: 20px;
}

.builder-hero img,
.builder-split img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.builder-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.builder-card-grid article {
    min-height: 230px;
    padding: 30px;
    background: var(--white);
}

.builder-card-grid h3 {
    margin-bottom: 14px;
}

.builder-faq {
    display: grid;
    border-top: 1px solid var(--line);
}

.builder-faq details {
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
}

.builder-faq summary {
    cursor: pointer;
    font-size: 22px;
    font-weight: 800;
}

.builder-faq p {
    max-width: 780px;
    margin-top: 14px;
}

.builder-feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--line);
    border: 1px solid var(--line);
}

.builder-feature-list li {
    min-height: 120px;
    padding: 26px;
    background: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.builder-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.builder-stats strong {
    display: grid;
    min-height: 150px;
    place-items: center;
    padding: 24px;
    background: var(--white);
    font-size: clamp(28px, 4vw, 54px);
    text-align: center;
}

.builder-quote blockquote {
    max-width: 900px;
    margin: 0;
    font-size: clamp(34px, 5vw, 76px);
    font-weight: 800;
    line-height: .98;
}

.builder-cta {
    display: grid;
    gap: 18px;
}

.builder-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.builder-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.builder-form-card,
.builder-map-placeholder {
    display: grid;
    min-height: 280px;
    align-content: center;
    gap: 16px;
    padding: 34px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
}

.builder-form-card strong {
    font-size: 28px;
}

.builder-map-placeholder {
    place-items: center;
    background: #f2f4f7;
    color: var(--muted);
    font-size: 42px;
    font-weight: 800;
}

.builder-article p {
    font-size: 19px;
    line-height: 1.8;
}

.site-footer {
    background: #000000;
    color: var(--white);
}

.a-home,
.a-section,
.a-value-band,
.a-careers,
.a-app-cta {
    background: #000000;
    color: var(--white);
}

.a-home {
    padding: 38px 7vw 74px;
}

.a-hero-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
    min-height: calc(100vh - 150px);
}

.a-hero-main,
.a-story-card,
.a-insight-card,
.a-case-card,
.a-award-card {
    background: #1f1f1f;
    color: var(--white);
    overflow: hidden;
}

.a-hero-main {
    display: grid;
    grid-template-rows: minmax(280px, 0.8fr) auto;
}

.a-hero-main img,
.a-story-card img,
.a-insight-card img,
.a-case-card img,
.a-careers img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.a-hero-main img {
    max-height: 420px;
}

.a-hero-content {
    padding: 38px 44px 44px;
}

.a-hero-content span,
.a-story-card span,
.a-insight-card span,
.a-eyebrow {
    color: var(--accent);
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.a-hero-content h1 {
    font-size: clamp(44px, 5.4vw, 88px);
    line-height: 0.98;
    margin-bottom: 24px;
    max-width: 980px;
}

.a-hero-content p {
    color: #d4d8e1;
    font-size: 21px;
    max-width: 780px;
}

.a-link {
    color: var(--white);
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 10px;
    margin-top: 14px;
}

.a-link::before {
    color: var(--accent);
    content: "";
    display: none;
}

.a-story-rail {
    display: grid;
    gap: 1px;
}

.a-story-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 210px;
}

.a-story-card > div {
    padding: 22px;
    position: relative;
}

.a-story-card h2 {
    font-size: 24px;
    line-height: 1.08;
    margin-bottom: 12px;
}

.a-story-card p,
.a-insight-card p,
.a-case-card p,
.a-award-card p,
.a-careers p,
.a-app-cta p {
    color: #c7ccd5;
}

.a-story-card button,
.a-insight-card button,
.a-award-card button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-size: 22px;
    height: 38px;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px;
}

.a-section {
    padding: 76px 7vw;
}

.a-section-heading {
    align-items: end;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin-bottom: 28px;
}

.a-section-heading h2,
.a-awards > h2,
.a-news > h2 {
    font-size: clamp(34px, 4vw, 58px);
    margin-bottom: 0;
}

.a-insight-grid,
.a-award-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.a-insight-card {
    min-height: 540px;
    position: relative;
}

.a-insight-card img {
    aspect-ratio: 16 / 10;
    height: auto;
}

.a-insight-card span,
.a-insight-card h3,
.a-insight-card p {
    margin-left: 28px;
    margin-right: 28px;
}

.a-insight-card span {
    margin-top: 26px;
}

.a-insight-card h3 {
    font-size: 30px;
    line-height: 1.08;
}

.a-value-band {
    display: grid;
    gap: 52px;
    grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
    padding: 86px 7vw;
}

.a-quote {
    background: #1f1f1f;
    border-left: 6px solid var(--accent);
    padding: 44px;
}

.a-quote p {
    color: var(--white);
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 800;
    line-height: 1.08;
}

.a-quote span {
    color: #aeb4c0;
    font-weight: 800;
}

.a-value-band h2 {
    font-size: clamp(36px, 4.4vw, 68px);
}

.a-case-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.a-case-card {
    display: grid;
    grid-template-rows: 260px auto;
}

.a-case-card div {
    padding: 28px;
}

.a-case-card h3,
.a-award-card h3 {
    font-size: 27px;
    line-height: 1.1;
}

.a-awards {
    background: #050505;
}

.a-awards > h2 {
    margin-bottom: 28px;
}

.a-award-card {
    min-height: 320px;
    padding: 34px;
    position: relative;
}

.a-award-card button {
    position: static;
    margin-bottom: 70px;
}

.a-careers {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    padding: 0;
}

.a-careers > div {
    align-self: center;
    padding: 72px 7vw;
}

.a-careers h2 {
    font-size: clamp(36px, 4.8vw, 72px);
}

.a-careers img {
    min-height: 520px;
}

.a-news-list {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 28px;
}

.a-news-list a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 24px;
    grid-template-columns: 180px minmax(0, 1fr);
    padding: 22px 0;
}

.a-news-list span {
    color: #aeb4c0;
    font-weight: 700;
}

.a-news-list strong {
    font-size: 20px;
}

.a-app-cta {
    padding: 72px 7vw 88px;
}

.a-app-cta h2 {
    font-size: clamp(38px, 5vw, 74px);
    max-width: 900px;
}

.a-app-cta p {
    font-size: 21px;
    max-width: 760px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    background: #25d366;
    color: #000;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 18px;
}

.cookie-banner {
    align-items: center;
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.18);
    bottom: 22px;
    color: #fff;
    display: flex;
    gap: 18px;
    left: 22px;
    max-width: 520px;
    padding: 16px;
    position: fixed;
    z-index: 61;
}

.cookie-banner span {
    color: #d8dde7;
    font-size: 14px;
    line-height: 1.45;
}

.cookie-banner button {
    background: var(--accent);
    border: 0;
    color: #fff;
    font-weight: 800;
    padding: 10px 14px;
}

.acc-hero,
.acc-section,
.acc-quote-band,
.acc-value,
.acc-carousel,
.acc-awards,
.acc-careers,
.acc-news {
    background: #000;
    color: #fff;
}

.acc-section.reveal-on-scroll,
.acc-quote-band.reveal-on-scroll,
.acc-value.reveal-on-scroll,
.acc-carousel.reveal-on-scroll,
.acc-awards.reveal-on-scroll,
.acc-careers.reveal-on-scroll,
.acc-news.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

.acc-hero {
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, 1fr) 360px;
    min-height: 450px;
    padding: 92px 7vw 42px;
}

.acc-eyebrow,
.acc-hero-story > span,
.acc-carousel-slide span,
.acc-tile span {
    color: var(--accent);
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.acc-hero h1 {
    font-size: clamp(46px, 7vw, 96px);
    line-height: .88;
    margin: 0 0 34px;
    max-width: 760px;
    text-transform: uppercase;
}

.acc-hero h1 span,
.acc-hero h1 strong {
    display: block;
}

.acc-hero h1 strong {
    padding-left: clamp(34px, 10vw, 180px);
}

.acc-hero-story {
    align-self: center;
    border-left: 4px solid var(--accent);
    padding-left: 24px;
}

.acc-hero-story h2 {
    font-size: 25px;
    line-height: 1.08;
    margin-bottom: 14px;
}

.acc-hero-story p,
.acc-value p,
.acc-carousel-slide p {
    color: #c7ccd5;
}

.acc-link {
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 9px;
    margin-top: 12px;
}

.acc-link::before {
    background: var(--accent);
    content: "";
    height: 2px;
    margin-top: 8px;
    width: 18px;
}

.acc-section {
    padding: 28px 7vw 72px;
}

.acc-tile-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.acc-tile {
    background: #1e1e1e;
    min-height: 260px;
    overflow: hidden;
    position: relative;
}

.acc-tile::after,
.acc-award-card::after {
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(161, 0, 255, 0.22), transparent 34%);
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 220ms ease;
}

.acc-tile:hover::after,
.acc-award-card:hover::after {
    opacity: 1;
}

.acc-tile:hover,
.acc-award-card:hover {
    border-color: var(--accent);
    box-shadow: 0 22px 54px rgba(161, 0, 255, 0.18);
}

.acc-tile img {
    display: block;
    height: 132px;
    object-fit: cover;
    transition: transform 700ms ease, opacity 350ms ease;
    width: 100%;
}

.acc-tile > div {
    padding: 18px;
}

.acc-tile h2 {
    font-size: 19px;
    line-height: 1.12;
    margin: 0;
}

.acc-tile button,
.acc-news-list em {
    background: #111;
    border: 1px solid rgba(255,255,255,.42);
    color: #fff;
    display: grid;
    font-size: 22px;
    height: 36px;
    place-items: center;
    position: absolute;
    right: 14px;
    top: 14px;
    transition: transform 220ms ease, background-color 220ms ease;
    width: 36px;
}

.acc-tile:hover img {
    opacity: .72;
    transform: scale(1.08);
}

.acc-tile:hover button,
.acc-news-list a:hover em {
    background: var(--accent);
    transform: rotate(90deg);
}

.acc-tile-white {
    background: #f2f2f2;
    color: #000;
}

.acc-tile-purple {
    background: radial-gradient(circle at 70% 20%, #7c2cff, #170022 72%);
}

.acc-tile-orange {
    background: linear-gradient(135deg, #d85b10, #7a2500);
}

.acc-tile-light {
    background: #e5e5ea;
    color: #000;
}

.acc-quote-band {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: 300px minmax(0, 720px);
    justify-content: center;
    padding: 76px 7vw 40px;
}

.acc-quote-band img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.acc-quote-band blockquote {
    margin: 0;
}

.acc-quote-band p {
    color: #fff;
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 800;
    line-height: 1.22;
}

.acc-quote-band cite {
    color: #b8bec8;
    font-style: normal;
    font-weight: 700;
}

.acc-value {
    padding: 28px 7vw 76px;
    text-align: center;
}

.acc-value h2 {
    font-size: clamp(46px, 7vw, 92px);
    margin-bottom: 10px;
}

.acc-value p {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.acc-carousel {
    overflow: hidden;
    padding: 34px 0 90px;
}

.acc-carousel-track {
    display: flex;
    transition: transform 500ms ease;
}

.acc-carousel-slide {
    align-items: center;
    display: grid;
    flex: 0 0 100%;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    padding: 0 7vw;
}

.acc-carousel-slide:not(.is-active) {
    opacity: .55;
}

.acc-carousel-slide img {
    aspect-ratio: 16 / 8;
    object-fit: cover;
    width: 100%;
}

.acc-carousel-slide h2 {
    font-size: clamp(28px, 3.4vw, 54px);
    line-height: 1;
}

.acc-carousel-controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 18px 7vw 0;
}

.acc-carousel-controls button {
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-weight: 900;
    height: 34px;
    width: 42px;
}

.acc-carousel-controls button.is-active {
    background: var(--accent);
}

.acc-awards {
    min-height: auto;
    padding: 74px 7vw;
}

.acc-awards h2 {
    font-size: clamp(36px, 5.6vw, 72px);
    line-height: 1.02;
    margin: 0 0 34px;
    max-width: 760px;
    text-align: left;
}

.acc-award-scroll {
    display: grid;
    grid-auto-columns: minmax(280px, 420px);
    grid-auto-flow: column;
    gap: 18px;
    margin: 0 -7vw;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 7vw 24px;
    scroll-padding-inline: 7vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.acc-award-card {
    background: #ffffff;
    color: #111111;
    display: grid;
    min-height: 520px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.acc-award-card:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    transform: translateY(-8px);
}

.acc-award-card img {
    aspect-ratio: 4 / 3;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    width: 100%;
}

.acc-award-card div {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 26px;
}

.acc-award-card span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.acc-award-card h3 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.02;
    margin: 0;
}

.acc-award-card p {
    color: #3d3d3d;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.acc-news {
    padding: 76px 0;
}

.acc-careers {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    min-height: 560px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.acc-careers::before {
    background: var(--accent);
    content: "";
    height: 0;
    left: 7vw;
    position: absolute;
    top: 86px;
    transition: height 700ms cubic-bezier(.2, .8, .2, 1) 160ms;
    width: 6px;
    z-index: 2;
}

.acc-careers.is-visible::before {
    height: 92px;
}

.acc-careers-media {
    min-height: 560px;
    overflow: hidden;
    position: relative;
}

.acc-careers-media::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .72));
    content: "";
    inset: 0;
    position: absolute;
}

.acc-careers-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 1100ms cubic-bezier(.2, .8, .2, 1);
    width: 100%;
}

.acc-careers.is-visible .acc-careers-media img {
    transform: scale(1);
}

.acc-careers-copy {
    align-self: center;
    max-width: 520px;
    padding: 86px 7vw 86px 52px;
    position: relative;
    z-index: 1;
}

.acc-careers-copy .acc-eyebrow,
.acc-careers-copy h2,
.acc-careers-copy p,
.acc-careers-copy .acc-link {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: translateX(-24px);
    transition: clip-path 760ms cubic-bezier(.2, .8, .2, 1), opacity 520ms ease, transform 760ms cubic-bezier(.2, .8, .2, 1);
}

.acc-careers.is-visible .acc-careers-copy .acc-eyebrow,
.acc-careers.is-visible .acc-careers-copy h2,
.acc-careers.is-visible .acc-careers-copy p,
.acc-careers.is-visible .acc-careers-copy .acc-link {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: translateX(0);
}

.acc-careers.is-visible .acc-careers-copy h2 {
    transition-delay: 110ms;
}

.acc-careers.is-visible .acc-careers-copy p {
    transition-delay: 220ms;
}

.acc-careers.is-visible .acc-careers-copy .acc-link {
    transition-delay: 330ms;
}

.acc-careers-copy h2 {
    font-size: clamp(34px, 4.8vw, 66px);
    line-height: 1;
    margin: 0 0 24px;
}

.acc-careers-copy p {
    color: #c7ccd5;
    font-size: 19px;
    line-height: 1.55;
}

.acc-news > div {
    display: grid;
    gap: 38px;
    grid-template-columns: 260px minmax(0, 1fr);
    padding: 0 7vw;
}

.acc-news-list {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.acc-news-list a {
    border-top: 1px solid rgba(255,255,255,.18);
    color: #fff;
    min-height: 160px;
    padding: 22px 56px 22px 0;
    position: relative;
}

.acc-news-list small {
    color: #aab0bc;
    display: block;
    margin-bottom: 12px;
}

.acc-news-list strong {
    display: block;
    font-size: 22px;
    line-height: 1.15;
}

.acc-news-list em {
    bottom: 22px;
    font-style: normal;
    top: auto;
}

body.has-scroll-reveal .acc-tile,
body.has-scroll-reveal .acc-award-card,
body.has-scroll-reveal .acc-news-list a {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease, background-color 220ms ease;
}

body.has-scroll-reveal .acc-tile.is-visible,
body.has-scroll-reveal .acc-award-card.is-visible,
body.has-scroll-reveal .acc-news-list a.is-visible {
    opacity: 1;
    transform: translateY(0);
}

body.has-scroll-reveal .acc-award-card.is-visible:hover {
    transform: translateY(-8px);
}

.footer-download {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 54px 7vw;
}

.footer-download h2 {
    font-size: clamp(28px, 3vw, 44px);
    margin-bottom: 0;
    max-width: 820px;
}

.footer-store-links {
    display: flex;
    gap: 14px;
}

.footer-store-links a {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    min-width: 150px;
    padding: 15px 18px;
    text-align: center;
}

.footer-store-links a:hover {
    background: var(--white);
    color: #000000;
}

.footer-main {
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(260px, 0.7fr) minmax(540px, 1.3fr);
    padding: 72px 7vw 64px;
}

.footer-brand {
    margin-bottom: 34px;
}

.footer-brand img {
    height: 56px;
    width: 230px;
}

.footer-manifesto h2 {
    font-size: clamp(44px, 6vw, 92px);
    line-height: 0.98;
    margin-bottom: 0;
    max-width: 600px;
}

.footer-columns {
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-columns h3 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 18px;
}

.footer-columns a {
    color: #b7bcc6;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 12px;
}

.footer-columns a:hover,
.footer-utility a:hover {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 20px;
    padding: 28px 7vw 38px;
}

.footer-utility {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.footer-utility a,
.footer-legal p {
    color: #9da3af;
    font-size: 13px;
    font-weight: 600;
}

.footer-legal p {
    margin-bottom: 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.a-hero-main,
.a-story-card,
.a-insight-card,
.a-case-card,
.a-award-card,
.a-news-list a {
    transition: opacity 700ms ease, transform 700ms ease, border-color 250ms ease, background-color 250ms ease;
}

body.has-scroll-reveal .a-hero-main,
body.has-scroll-reveal .a-story-card,
body.has-scroll-reveal .a-insight-card,
body.has-scroll-reveal .a-case-card,
body.has-scroll-reveal .a-award-card,
body.has-scroll-reveal .a-news-list a {
    opacity: 0;
    transform: translateY(28px);
}

body.has-scroll-reveal .is-visible .a-hero-main,
body.has-scroll-reveal .a-story-card.is-visible,
body.has-scroll-reveal .a-insight-card.is-visible,
body.has-scroll-reveal .a-case-card.is-visible,
body.has-scroll-reveal .a-award-card.is-visible,
body.has-scroll-reveal .a-news-list a.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .a-hero-main,
    .a-story-card,
    .a-insight-card,
    .a-case-card,
    .a-award-card,
    .a-news-list a {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .acc-careers::before,
    .acc-careers-media img,
    .acc-careers-copy .acc-eyebrow,
    .acc-careers-copy h2,
    .acc-careers-copy p,
    .acc-careers-copy .acc-link {
        clip-path: none !important;
        height: auto !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
        padding: 14px 20px;
    }

    .main-nav {
        display: none;
    }

    .hero,
    .split-section,
    .contact-section,
    .builder-hero,
    .builder-split {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 72px 24px 56px;
    }

    .hero-system {
        border-left: 0;
        padding-left: 0;
    }

    .split-section,
    .content-section,
    .dark-band,
    .statement-band,
    .cta-band,
    .contact-section,
    .builder-section {
        padding: 64px 24px;
    }

    .card-grid,
    .card-grid-compact,
    .package-grid,
    .builder-card-grid,
    .builder-stats,
    .builder-feature-list,
    .builder-gallery {
        grid-template-columns: 1fr;
    }

    .check-list {
        columns: 1;
    }

    .footer-download,
    .footer-main {
        grid-template-columns: 1fr;
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-store-links {
        flex-wrap: wrap;
    }

    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-legal {
        padding-left: 24px;
        padding-right: 24px;
    }

    .a-home,
    .a-section,
    .a-value-band,
    .a-app-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .a-hero-grid,
    .a-value-band,
    .a-careers {
        grid-template-columns: 1fr;
    }

    .a-story-card {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .a-insight-grid,
    .a-award-grid,
    .a-case-grid {
        grid-template-columns: 1fr;
    }

    .a-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .a-careers > div {
        padding: 64px 24px;
    }

    .a-careers img {
        min-height: 360px;
    }

    .a-news-list a {
        grid-template-columns: 1fr;
    }

    .acc-hero,
    .acc-quote-band,
    .acc-carousel-slide,
    .acc-careers,
    .acc-news > div {
        grid-template-columns: 1fr;
    }

    .acc-hero {
        gap: 34px;
        min-height: auto;
        padding: 72px 24px 42px;
    }

    .acc-hero-story {
        max-width: 560px;
    }

    .acc-section,
    .acc-value,
    .acc-awards {
        padding-left: 24px;
        padding-right: 24px;
    }

    .acc-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .acc-quote-band {
        justify-content: stretch;
        padding-left: 24px;
        padding-right: 24px;
    }

    .acc-quote-band img {
        max-width: 360px;
    }

    .acc-carousel-slide {
        padding-left: 24px;
        padding-right: 24px;
    }

    .acc-carousel-slide img {
        aspect-ratio: 16 / 10;
    }

    .acc-carousel-controls {
        justify-content: flex-start;
        padding-left: 24px;
        padding-right: 24px;
    }

    .acc-news > div {
        padding-left: 24px;
        padding-right: 24px;
    }

    .acc-careers::before {
        left: 24px;
        top: 52px;
    }

    .acc-careers-media {
        min-height: 380px;
    }

    .acc-careers-copy {
        max-width: none;
        padding: 54px 24px 72px;
    }
}

@media (max-width: 560px) {
    .header-cta {
        display: none;
    }

    h1 {
        font-size: 46px;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .a-home {
        padding-top: 24px;
    }

    .a-hero-content {
        padding: 28px 24px 34px;
    }

    .a-story-card {
        grid-template-columns: 1fr;
    }

    .a-story-card img {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .a-quote {
        padding: 28px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-download {
        align-items: flex-start;
    }

    .footer-store-links {
        flex-direction: column;
    }

    .acc-hero h1 {
        font-size: 46px;
    }

    .acc-hero h1 strong {
        padding-left: 24px;
    }

    .acc-tile-grid,
    .acc-news-list {
        grid-template-columns: 1fr;
    }

    .acc-tile {
        min-height: 240px;
    }

    .acc-quote-band {
        gap: 28px;
        padding-top: 54px;
    }

    .acc-value h2 {
        font-size: 48px;
    }

    .acc-awards {
        min-height: auto;
    }

    .acc-awards h2 {
        margin-bottom: 40px;
        text-align: left;
    }

    .acc-award-scroll {
        grid-auto-columns: minmax(260px, 82vw);
    }

    .acc-award-card {
        min-height: 480px;
    }

    .acc-careers {
        min-height: auto;
    }

    .acc-careers-media {
        min-height: 300px;
    }

    .acc-careers-copy h2 {
        font-size: 38px;
    }

    .acc-careers-copy p {
        font-size: 17px;
    }
}

/* Movadly white theme */
body {
    background: #ffffff;
}

.nav-panel {
    background: #ffffff;
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(12, 18, 28, 0.14);
    color: var(--ink);
}

.mega-featured {
    border-right-color: var(--line);
}

.mega-kicker,
.mega-feature-card span,
.mega-group a,
.footer-columns a,
.footer-utility a,
.footer-legal p {
    color: var(--muted);
}

.mega-feature-card {
    background: #f7f8fb;
}

.mega-feature-card:hover {
    background: var(--accent);
}

.mega-feature-card:hover strong,
.mega-feature-card:hover span {
    color: #ffffff;
}

.mega-feature-card strong,
.mega-group h3,
.footer-columns h3 {
    color: var(--ink);
}

.acc-hero,
.acc-section,
.acc-quote-band,
.acc-value,
.acc-carousel,
.acc-awards,
.acc-careers,
.acc-news,
.site-footer,
.footer-download {
    background: #ffffff;
    color: var(--ink);
}

.acc-hero {
    border-bottom: 1px solid var(--line);
}

.acc-hero-story {
    background: #ffffff;
}

.acc-hero-story p,
.acc-value p,
.acc-carousel-slide p,
.acc-careers-copy p {
    color: var(--muted);
}

.acc-link,
.acc-quote-band p,
.acc-news-list a {
    color: var(--ink);
}

.acc-tile {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(12, 18, 28, 0.08);
    color: var(--ink);
}

.acc-tile-white,
.acc-tile-light {
    background: #f7f8fb;
}

.acc-tile-purple {
    background: linear-gradient(135deg, #f6edff, #ffffff);
    color: var(--ink);
}

.acc-tile-orange {
    background: linear-gradient(135deg, #fff1e8, #ffffff);
    color: var(--ink);
}

.acc-tile button,
.acc-news-list em,
.acc-carousel-controls button {
    background: #ffffff;
    border-color: var(--line);
    color: var(--ink);
}

.acc-tile:hover button,
.acc-news-list a:hover em,
.acc-carousel-controls button.is-active {
    background: var(--accent);
    color: #ffffff;
}

.acc-tile:hover,
.acc-award-card:hover,
.mega-feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 22px 54px rgba(161, 0, 255, 0.18);
}

.mega-feature-card:hover {
    background: var(--accent);
}

.mega-feature-card:hover strong,
.mega-feature-card:hover span {
    color: #ffffff;
}

.acc-quote-band,
.acc-carousel,
.acc-awards,
.acc-news,
.footer-download,
.footer-legal {
    border-top: 1px solid var(--line);
}

.acc-quote-band cite,
.acc-news-list small {
    color: var(--muted);
}

.acc-carousel-slide:not(.is-active) {
    opacity: .75;
}

.acc-careers-media::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.92));
}

.acc-news-list a {
    border-top-color: var(--line);
}

.site-footer {
    border-top: 1px solid var(--line);
}

.footer-download,
.footer-legal {
    border-bottom-color: var(--line);
}

.footer-store-links a {
    border-color: var(--line);
    color: var(--ink);
}

.footer-store-links a:hover {
    background: var(--ink);
    color: #ffffff;
}

.footer-brand img {
    filter: none;
}

.footer-manifesto h2 {
    color: var(--ink);
}

.site-footer,
.site-footer .footer-download,
.site-footer .footer-main,
.site-footer .footer-legal {
    background: #000000;
    color: #ffffff;
}

.site-footer {
    border-top-color: #000000;
}

.site-footer .footer-download,
.site-footer .footer-legal {
    border-color: rgba(255, 255, 255, 0.16);
}

.site-footer .footer-manifesto h2,
.site-footer .footer-columns h3 {
    color: #ffffff;
}

.site-footer .footer-columns a,
.site-footer .footer-utility a,
.site-footer .footer-legal p,
.site-footer .acc-eyebrow {
    color: #b8bec8;
}

.site-footer .footer-columns a:hover,
.site-footer .footer-utility a:hover {
    color: #ffffff;
}

.site-footer .footer-store-links a {
    border-color: rgba(255, 255, 255, 0.36);
    color: #ffffff;
}

.site-footer .footer-store-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.site-footer .footer-brand img {
    filter: brightness(0) invert(1);
}

/* Movadly Content OS reusable theme modules */
.builder-header-logo {
    align-items: center;
    display: flex;
    min-height: 86px;
}

.builder-header-logo a,
.builder-header-logo img {
    display: block;
}

.builder-header-menu {
    align-items: center;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    min-height: 86px;
}

.builder-header-menu nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.builder-menu-item {
    position: relative;
}

.builder-menu-item > a {
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    padding: 14px 16px;
}

.builder-menu-item:hover > a {
    color: var(--accent);
}

.builder-mega-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(12, 18, 28, 0.14);
    display: none;
    gap: 10px;
    left: 0;
    min-width: 280px;
    padding: 18px;
    position: absolute;
    top: 100%;
    z-index: 10;
}

.builder-menu-item:hover .builder-mega-panel {
    display: grid;
}

.builder-mega-panel img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.builder-mega-panel strong,
.builder-mega-panel a {
    display: block;
}

.builder-hero-banner {
    align-items: center;
    display: grid;
    min-height: 620px;
    overflow: hidden;
    position: relative;
}

.builder-hero-media,
.builder-hero-slide > img,
.builder-hero-banner video {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.builder-hero-overlay {
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.builder-hero-content {
    max-width: 780px;
    padding: 0 7vw;
    position: relative;
    z-index: 2;
}

.builder-hero-banner.align-center .builder-hero-content {
    margin-inline: auto;
    text-align: center;
}

.builder-hero-banner.align-right .builder-hero-content {
    margin-left: auto;
    text-align: right;
}

.builder-hero-banner.position-top {
    align-items: start;
}

.builder-hero-banner.position-bottom {
    align-items: end;
}

.builder-hero-banner h1 {
    color: inherit;
    font-size: clamp(46px, 7vw, 96px);
    line-height: .92;
    margin-bottom: 20px;
}

.builder-hero-banner h2 {
    font-size: clamp(24px, 3vw, 42px);
}

.builder-hero-banner p {
    color: currentColor;
    font-size: 20px;
    opacity: .84;
}

.builder-hero-slides {
    display: grid;
    grid-auto-columns: 100%;
    grid-auto-flow: column;
    min-height: 620px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.builder-hero-slide {
    align-items: center;
    display: grid;
    min-height: 620px;
    position: relative;
    scroll-snap-align: start;
}

.builder-button-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.builder-image-text {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(280px, .95fr) minmax(320px, 1.05fr);
}

.builder-image-text.image-right .builder-image-frame {
    order: 2;
}

.builder-image-text.valign-top {
    align-items: start;
}

.builder-image-text.valign-bottom {
    align-items: end;
}

.builder-image-frame,
.builder-image-frame img {
    display: block;
    width: 100%;
}

.builder-image-frame img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.builder-image-text.image-style-rounded img {
    border-radius: 18px;
}

.builder-image-text.image-style-cover .builder-image-frame,
.builder-image-text.image-style-cover img {
    height: 100%;
    min-height: 520px;
}

.builder-rich-text.align-center .readable,
.builder-social-icons.align-center,
.builder-testimonials.align-center {
    margin-inline: auto;
    text-align: center;
}

.builder-rich-text.align-right .readable,
.builder-social-icons.align-right,
.builder-testimonials.align-right {
    margin-left: auto;
    text-align: right;
}

.builder-rich-text.width-narrow .readable {
    max-width: 760px;
}

.builder-rich-text.width-full .readable {
    max-width: none;
}

.builder-card-grid article img,
.builder-slider-card img {
    aspect-ratio: 16 / 10;
    display: block;
    margin: -30px -30px 24px;
    object-fit: cover;
    width: calc(100% + 60px);
}

.builder-testimonial-track {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(var(--per-row, 2), minmax(0, 1fr));
}

.builder-testimonials.layout-slider .builder-testimonial-track,
.builder-testimonials.layout-featured .builder-testimonial-track,
.builder-slider-track {
    display: grid;
    gap: 18px;
    grid-auto-columns: calc((100% - (var(--desktop-cols, 3) - 1) * 18px) / var(--desktop-cols, 3));
    grid-auto-flow: column;
    overflow-x: auto;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
}

.builder-testimonials.layout-featured .builder-testimonial-track {
    grid-auto-columns: minmax(320px, 760px);
}

.builder-testimonial-card,
.builder-slider-card {
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--ink);
    display: grid;
    gap: 14px;
    min-height: 280px;
    padding: 28px;
    scroll-snap-align: start;
}

.builder-avatar {
    align-items: center;
    background: var(--paper);
    border-radius: 50%;
    display: flex;
    height: 56px;
    justify-content: center;
    overflow: hidden;
    width: 56px;
}

.builder-avatar img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.builder-avatar span {
    color: var(--accent);
    font-size: 24px;
    font-weight: 900;
}

.builder-rating {
    color: var(--accent);
    letter-spacing: 2px;
}

.builder-testimonial-card blockquote {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.22;
    margin: 0;
}

.builder-testimonial-card em {
    color: var(--muted);
    font-style: normal;
    font-weight: 700;
}

.builder-testimonial-logo {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.builder-slider-card {
    padding: 0;
}

.builder-slider-card > div {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.builder-slider-card img {
    margin: 0;
    width: 100%;
}

.builder-slider-card span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.builder-faq-module.accordion-boxed details {
    background: #ffffff;
    border: 1px solid var(--line);
    margin-bottom: 12px;
    padding: 22px;
}

.builder-faq-module.accordion-border details {
    border-bottom: 1px solid var(--line);
}

.builder-footer-menus {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(var(--footer-cols, 4), minmax(0, 1fr));
}

.builder-footer-menus nav {
    display: grid;
    gap: 12px;
}

.builder-footer-menus h3 {
    margin-bottom: 6px;
}

.builder-footer-menus a {
    color: inherit;
    opacity: .72;
}

.builder-footer-menus a:hover {
    color: var(--accent);
    opacity: 1;
}

.builder-social-icons {
    display: grid;
    gap: 20px;
}

.builder-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.builder-social-icons.align-center .builder-social-row {
    justify-content: center;
}

.builder-social-icons.align-right .builder-social-row {
    justify-content: flex-end;
}

.builder-social-row a {
    align-items: center;
    border: 1px solid var(--line);
    color: inherit;
    display: inline-flex;
    font-size: calc(var(--icon-size, 42px) * .36);
    font-weight: 900;
    height: var(--icon-size, 42px);
    justify-content: center;
    width: var(--icon-size, 42px);
}

.builder-social-row.icon-circle a {
    border-radius: 50%;
}

.builder-social-row.icon-square a {
    border-radius: 8px;
}

.builder-social-row.icon-normal a {
    border-color: transparent;
}

.builder-social-row.icon-outline a {
    background: transparent;
}

.builder-email-signup {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr);
}

.builder-email-signup form {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.builder-email-signup input,
.builder-email-signup button,
.builder-contact-form input,
.builder-contact-form select,
.builder-contact-form textarea,
.builder-contact-form button {
    border: 1px solid var(--line);
    font: inherit;
    min-height: 48px;
    padding: 13px 14px;
}

.builder-email-signup button,
.builder-contact-form button {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    font-weight: 900;
}

.builder-email-signup small {
    color: currentColor;
    grid-column: 1 / -1;
    opacity: .7;
}

.builder-contact-module {
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
}

.builder-contact-module.form-left .builder-contact-form {
    order: -1;
}

.builder-contact-module.layout-form_only .builder-contact-details {
    display: none;
}

.builder-contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.builder-contact-cards a,
.builder-contact-cards div,
.builder-hours {
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--ink);
    display: grid;
    gap: 6px;
    padding: 18px;
}

.builder-contact-cards strong,
.builder-hours strong {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
}

.builder-map-embed {
    margin-top: 24px;
}

.builder-map-embed iframe,
.builder-map-placeholder iframe {
    border: 0;
    min-height: 320px;
    width: 100%;
}

.builder-contact-form {
    background: #ffffff;
    border: 1px solid var(--line);
    display: grid;
    gap: 14px;
    padding: 24px;
}

.builder-contact-form textarea,
.builder-contact-form .builder-consent,
.builder-contact-form button {
    grid-column: 1 / -1;
}

.builder-contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.builder-consent {
    align-items: center;
    color: var(--muted);
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.builder-consent input {
    min-height: auto;
    width: auto;
}

.builder-stats strong {
    align-content: center;
    display: grid;
    gap: 8px;
}

.builder-stats strong span {
    color: var(--muted);
    font-size: 15px;
}

@media (max-width: 980px) {
    .builder-header-menu,
    .builder-header-menu nav,
    .builder-image-text,
    .builder-email-signup,
    .builder-contact-module {
        grid-template-columns: 1fr;
    }

    .builder-header-menu {
        align-items: stretch;
        display: grid;
    }

    .builder-header-menu nav {
        align-items: stretch;
        display: grid;
    }

    .builder-mega-panel {
        box-shadow: none;
        display: grid;
        position: static;
    }

    .builder-image-text.image-right .builder-image-frame,
    .builder-contact-module.form-left .builder-contact-form {
        order: 0;
    }

    .builder-testimonial-track,
    .builder-footer-menus,
    .builder-contact-form {
        grid-template-columns: 1fr;
    }

    .builder-slider-track,
    .builder-testimonials.layout-slider .builder-testimonial-track {
        grid-auto-columns: calc((100% - (var(--tablet-cols, 2) - 1) * 18px) / var(--tablet-cols, 2));
    }
}

@media (max-width: 560px) {
    .builder-hero-banner,
    .builder-hero-slides,
    .builder-hero-slide {
        min-height: 520px;
    }

    .builder-hero-content {
        padding: 0 24px;
    }

    .builder-hero-banner h1 {
        font-size: 44px;
    }

    .builder-slider-track,
    .builder-testimonials.layout-slider .builder-testimonial-track {
        grid-auto-columns: calc((100% - (var(--mobile-cols, 1) - 1) * 18px) / var(--mobile-cols, 1));
    }

    .builder-email-signup form {
        grid-template-columns: 1fr;
    }
}
