:root {
    --navy: #12345a;
    --blue: #1e6aa8;
    --sky: #e9f4ff;
    --gold: #dca640;
    --gold-light: #ffe4a3;
    --ink: #172335;
    --muted: #647084;
    --line: #dbe5f1;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(18, 52, 90, 0.16);
    --soft-shadow: 0 16px 40px rgba(18, 52, 90, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #f8fbff;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(30, 106, 168, 0.1), transparent 36%),
        linear-gradient(315deg, rgba(220, 166, 64, 0.12), transparent 34%);
}

img {
    max-width: 100%;
    display: block;
}

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

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

h1 {
    max-width: 780px;
    font-size: clamp(2.65rem, 8vw, 5.45rem);
    line-height: 0.96;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    font-size: 1.1rem;
    line-height: 1.2;
}

.section-pad {
    padding: 88px max(22px, calc((100vw - 1160px) / 2));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px max(22px, calc((100vw - 1160px) / 2));
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(219, 229, 241, 0.8);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--navy);
}

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--navy));
    box-shadow: 0 10px 24px rgba(30, 106, 168, 0.26);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.93rem;
    font-weight: 700;
}

.nav-links a {
    border-radius: 999px;
    padding: 9px 12px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--navy);
    background: var(--sky);
    outline: none;
}

.hero {
    min-height: calc(100vh - 74px);
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
    align-items: center;
    gap: 48px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(18, 52, 90, 0.96), rgba(30, 106, 168, 0.9)),
        radial-gradient(circle at 85% 25%, rgba(255, 228, 163, 0.75), transparent 28%);
    color: var(--white);
}

.hero-content {
    display: grid;
    gap: 24px;
}

.eyebrow {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading .eyebrow,
.services .eyebrow,
.qr-section .eyebrow,
.contact .eyebrow {
    color: var(--gold);
}

.hero-copy {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 8px;
    padding: 14px 22px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 18px 42px rgba(220, 166, 64, 0.28);
}

.button-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.secondary-text {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.hero-card {
    position: relative;
    display: grid;
    gap: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.mini-browser,
.browser-bar {
    display: flex;
    gap: 7px;
}

.mini-browser span,
.browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-light);
}

.score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 18px;
}

.score-row span {
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--navy);
    background: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 800;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.metric-grid div {
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.13);
}

.metric,
.metric-label {
    display: block;
}

.metric {
    font-size: 1.55rem;
    font-weight: 900;
}

.metric-label,
.hero-card p {
    color: rgba(255, 255, 255, 0.78);
}

.showcase {
    background: var(--white);
}

.section-heading {
    display: grid;
    max-width: 760px;
    gap: 13px;
    margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.05rem;
}

.mockup-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: end;
    gap: 28px;
}

.desktop-preview,
.phone-preview {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.desktop-preview {
    overflow: hidden;
}

.browser-bar {
    align-items: center;
    height: 44px;
    padding: 0 18px;
    background: #eef5fc;
    border-bottom: 1px solid var(--line);
}

.browser-bar span:nth-child(1) {
    background: #ff7468;
}

.browser-bar span:nth-child(2) {
    background: #f4c356;
}

.browser-bar span:nth-child(3) {
    background: #43c98f;
}

.mock-site {
    padding: 22px;
}

.mock-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    color: #22405f;
}

.mock-nav nav {
    display: flex;
    gap: 16px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.mock-hero {
    min-height: 330px;
    display: flex;
    align-items: flex-end;
    border-radius: 8px;
    padding: 34px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(18, 52, 90, 0.1), rgba(18, 52, 90, 0.84)),
        linear-gradient(135deg, #73af63, #bfdc8a 42%, #4777a7);
}

.mock-hero div {
    max-width: 440px;
}

.mock-hero p {
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mock-hero h3 {
    margin: 8px 0 12px;
    font-size: clamp(1.75rem, 4vw, 3.15rem);
}

.mock-hero span,
.phone-screen span {
    display: inline-flex;
    border-radius: 8px;
    padding: 10px 13px;
    color: var(--navy);
    background: var(--gold-light);
    font-weight: 900;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.mock-cards span {
    height: 82px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f1f7fd, #ffffff);
    border: 1px solid var(--line);
}

.phone-preview {
    position: relative;
    min-height: 520px;
    padding: 14px;
    background: #14243a;
    transform: translateY(22px);
}

.phone-speaker {
    width: 72px;
    height: 6px;
    margin: 2px auto 12px;
    border-radius: 999px;
    background: #304966;
}

.phone-screen {
    height: 468px;
    overflow: hidden;
    border-radius: 8px;
    padding: 18px;
    background: #ffffff;
}

.phone-photo {
    height: 190px;
    margin: 18px 0;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(18, 52, 90, 0.04), rgba(18, 52, 90, 0.46)),
        linear-gradient(135deg, #6cac59, #f6de9d 55%, #6f9bc8);
}

.phone-screen h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 1.75rem;
}

.phone-screen p {
    margin-bottom: 16px;
    color: var(--muted);
}

.services {
    background: #f4f8fd;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.service-card {
    grid-column: span 2;
    min-height: 240px;
    display: grid;
    align-content: start;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
    grid-column: span 3;
}

.service-card p {
    color: var(--muted);
}

.icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 8px;
    color: var(--navy);
    background: var(--gold-light);
    font-weight: 900;
}

.offer {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--navy));
}

.offer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: clamp(26px, 5vw, 46px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}

.offer-card p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.2rem;
    font-weight: 700;
}

.expiration {
    flex: 0 0 auto;
    min-width: 210px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: var(--white);
    color: var(--navy);
}

.expiration span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.expiration strong {
    display: block;
    margin-top: 4px;
    color: var(--blue);
    font-size: 1.55rem;
}

.qr-section {
    background: var(--white);
}

.qr-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
    align-items: center;
    gap: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(24px, 5vw, 44px);
    background:
        linear-gradient(135deg, rgba(233, 244, 255, 0.95), rgba(255, 255, 255, 0.96)),
        var(--white);
    box-shadow: var(--soft-shadow);
}

.qr-content p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 14px;
    color: var(--muted);
}

.qr-frame {
    display: grid;
    place-items: center;
    border-radius: 8px;
    padding: 16px;
    background: var(--white);
    box-shadow: inset 0 0 0 1px var(--line);
}

.qr-placeholder {
    width: min(100%, 230px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 3px dashed var(--blue);
    border-radius: 8px;
    color: var(--navy);
    background:
        linear-gradient(90deg, rgba(18, 52, 90, 0.05) 10%, transparent 10%) 0 0 / 24px 24px,
        linear-gradient(rgba(18, 52, 90, 0.05) 10%, transparent 10%) 0 0 / 24px 24px,
        #ffffff;
    font-weight: 900;
}

.qr-frame img {
    width: min(100%, 230px);
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
}

.qr-destination {
    margin-top: 12px;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 800;
}

.contact {
    background: #0f2744;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    gap: 34px;
    align-items: start;
    color: var(--white);
}

.contact-card p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.77);
}

address {
    display: grid;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    font-style: normal;
}

address strong {
    color: var(--gold-light);
    font-size: 1.18rem;
}

address span,
address a {
    color: rgba(255, 255, 255, 0.84);
    overflow-wrap: anywhere;
}

address a:hover,
address a:focus-visible {
    color: var(--gold-light);
    outline: none;
}

.preview-page {
    background: #f7fbff;
}

.preview-header {
    background: rgba(255, 255, 255, 0.92);
}

.preview-hero {
    min-height: calc(100vh - 74px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: center;
    gap: 54px;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(18, 52, 90, 0.96), rgba(30, 106, 168, 0.86)),
        linear-gradient(45deg, rgba(220, 166, 64, 0.28), transparent 48%);
}

.preview-hero-copy {
    display: grid;
    gap: 24px;
}

.preview-hero-copy p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.preview-phone {
    justify-self: end;
    width: min(100%, 350px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 34px;
    padding: 14px;
    background: #14243a;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.preview-phone-screen {
    min-height: 620px;
    overflow: hidden;
    border-radius: 24px;
    padding: 20px;
    background: var(--white);
}

.sample-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    color: var(--navy);
}

.sample-topline span {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 5px 8px;
    color: #1f6b48;
    background: #e7f7ee;
    font-size: 0.76rem;
    font-weight: 900;
}

.sample-photo {
    height: 230px;
    margin: 20px 0;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(18, 52, 90, 0), rgba(18, 52, 90, 0.44)),
        linear-gradient(135deg, #f8fbff, #b8d9f2 44%, #dca640);
}

.preview-phone-screen h2 {
    color: var(--navy);
    font-size: 2rem;
}

.preview-phone-screen p {
    margin: 12px 0 18px;
    color: var(--muted);
}

.preview-phone-screen a {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-weight: 900;
}

.sample-site {
    background: var(--white);
}

.sample-browser {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.sample-desktop {
    padding: clamp(18px, 3vw, 30px);
}

.sample-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    color: var(--navy);
}

.sample-nav nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.sample-desktop-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 22px;
    min-height: 360px;
    border-radius: 8px;
    padding: clamp(24px, 5vw, 46px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(18, 52, 90, 0.88), rgba(30, 106, 168, 0.58)),
        linear-gradient(135deg, #d8ecfb, #73acd3 52%, #dca640);
}

.sample-desktop-hero > div {
    align-self: end;
}

.sample-desktop-hero p {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sample-desktop-hero h3 {
    max-width: 640px;
    margin: 8px 0 18px;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

.sample-desktop-hero div > span {
    display: inline-flex;
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--navy);
    background: var(--gold-light);
    font-weight: 900;
}

.sample-desktop-hero aside {
    align-self: end;
    display: grid;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.sample-desktop-hero aside strong {
    color: var(--gold-light);
    font-size: 1.28rem;
}

.sample-desktop-hero aside span {
    color: rgba(255, 255, 255, 0.82);
}

.sample-feature-row,
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sample-feature-row {
    margin-top: 18px;
}

.sample-feature-row div,
.included-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: #f8fbff;
}

.sample-feature-row strong,
.sample-feature-row span {
    display: block;
}

.sample-feature-row strong {
    color: var(--navy);
}

.sample-feature-row span,
.included-card p {
    margin-top: 6px;
    color: var(--muted);
}

.preview-included {
    background: #f4f8fd;
}

.included-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 230px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.preview-cta {
    color: var(--white);
    background: #0f2744;
}

.preview-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    gap: 34px;
    align-items: start;
}

.preview-cta-card p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.77);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .site-header {
        position: static;
    }

    .nav-links {
        display: none;
    }

    .hero,
    .preview-hero,
    .mockup-stage,
    .qr-content,
    .contact-card,
    .sample-desktop-hero,
    .preview-cta-card {
        grid-template-columns: 1fr;
    }

    .hero,
    .preview-hero {
        min-height: auto;
        padding-top: 68px;
    }

    .preview-phone {
        justify-self: start;
    }

    .hero-card {
        max-width: 560px;
    }

    .mockup-stage {
        justify-items: center;
    }

    .phone-preview {
        width: min(100%, 290px);
        transform: none;
    }

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

    .sample-feature-row,
    .included-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .offer-card {
        align-items: stretch;
        flex-direction: column;
    }

    .expiration {
        min-width: 0;
    }
}

@media (max-width: 620px) {
    .section-pad {
        padding: 64px 18px;
    }

    .site-header {
        padding: 14px 18px;
    }

    .brand span:last-child {
        font-size: 0.94rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .metric-grid,
    .mock-cards,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .mock-site {
        padding: 16px;
    }

    .mock-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .mock-nav nav {
        flex-wrap: wrap;
    }

    .mock-hero {
        min-height: 270px;
        padding: 22px;
    }

    .service-card {
        min-height: auto;
    }
}
