:root {
    --bg: #F8FAFC;
    --bg-soft: #EEF4FF;
    --dark: #0F172A;
    --dark-2: #111827;
    --text: #1E293B;
    --muted: #475569;
    --line: #E2E8F0;
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --blue-soft: #DBEAFE;
    --white: #FFFFFF;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-pad {
    padding: 110px 0;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: radial-gradient(#0F172A 0.7px, transparent 0.7px);
    background-size: 18px 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #60A5FA);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-size: 19px;
}

.brand-text span {
    color: var(--blue);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 15px;
}

.nav-links a {
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-cta {
    padding: 13px 20px;
    color: var(--white);
    background: var(--dark);
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 18px;
    height: 2px;
    background: var(--dark);
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.12), transparent 34%), radial-gradient(circle at 90% 0%, rgba(96, 165, 250, 0.14), transparent 30%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.45;
}

.hero-glow-one {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.2);
    right: 14%;
    top: 14%;
}

.hero-glow-two {
    width: 220px;
    height: 220px;
    background: rgba(59, 130, 246, 0.16);
    left: 2%;
    bottom: 12%;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 72px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.pill span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.hero h1 {
    margin-top: 26px;
    max-width: 780px;
    color: var(--dark);
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.075em;
    font-weight: 900;
}

.hero-lead {
    max-width: 630px;
    margin-top: 26px;
    font-size: 20px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.btn {
    padding: 16px 26px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.24);
}

.btn-primary:hover {
    background: var(--blue-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    border-color: var(--line);
}

.btn-secondary:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    border: 0;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
    max-width: 650px;
}

.hero-proof div {
    padding-left: 16px;
    border-left: 2px solid rgba(37, 99, 235, 0.2);
}

.hero-proof strong {
    display: block;
    color: var(--dark);
    font-size: 18px;
}

.hero-proof span {
    color: var(--muted);
    font-size: 14px;
}

.hero-visual {
    min-height: 560px;
    position: relative;
}

.browser-card,
.mobile-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.browser-card {
    position: absolute;
    inset: 34px 0 auto auto;
    width: min(100%, 610px);
    border-radius: 28px;
    overflow: hidden;
}

.browser-top {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
}

.browser-top span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #CBD5E1;
}

.browser-top p {
    margin-left: auto;
    color: #94A3B8;
    font-size: 13px;
    font-weight: 600;
}

.mock-site {
    padding: 28px;
}

.mock-nav {
    height: 16px;
    width: 60%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--line), #F1F5F9);
    margin-bottom: 30px;
}

.mock-hero {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 22px;
    align-items: center;
}

.mock-hero span {
    display: block;
    width: 112px;
    height: 28px;
    border-radius: 999px;
    background: var(--blue-soft);
    margin-bottom: 18px;
}

.mock-hero h3 {
    color: var(--dark);
    font-size: 29px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.mock-hero p {
    height: 12px;
    width: 90%;
    border-radius: 999px;
    background: #E2E8F0;
    margin-top: 14px;
}

.mock-hero p:last-child {
    width: 64%;
}

.mock-image {
    height: 190px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0F172A, #2563EB);
    position: relative;
    overflow: hidden;
}

.mock-image::after {
    content: "";
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 18px;
}

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

.mock-cards span {
    height: 88px;
    border-radius: 18px;
    background: #F1F5F9;
    border: 1px solid var(--line);
}

.mobile-card {
    position: absolute;
    width: 190px;
    height: 350px;
    right: -20px;
    bottom: 0;
    border-radius: 34px;
    padding: 16px;
}

.phone-speaker {
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: #CBD5E1;
    margin: 0 auto 16px;
}

.phone-screen {
    height: 292px;
    border-radius: 24px;
    background: linear-gradient(180deg, #F8FAFC, #EFF6FF);
    padding: 22px;
}

.phone-screen span {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), #60A5FA);
    margin-bottom: 18px;
}

.phone-screen h4 {
    color: var(--dark);
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
}

.phone-screen p {
    height: 10px;
    border-radius: 999px;
    background: #CBD5E1;
    margin-bottom: 12px;
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

.floating-card-small {
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.logo-strip {
    padding: 26px 0;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

.strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #64748B;
    font-weight: 800;
}

.strip-content span {
    font-size: 14px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 62px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    color: var(--blue);
    font-size: 13px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 14px;
}

.section-kicker.light {
    color: #93C5FD;
}

.section-heading h2,
.panel-copy h2,
.contact-copy h2 {
    color: var(--dark);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.section-heading p,
.panel-copy p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
}

.services-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card,
.pricing-card,
.work-card,
.timeline-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.service-card {
    padding: 34px;
    min-height: 300px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.pricing-card:hover,
.work-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 900;
    margin-bottom: 32px;
}

.service-card h3,
.benefit-card h3,
.timeline-item h3,
.pricing-card h3 {
    color: var(--dark);
    font-size: 23px;
    letter-spacing: -0.035em;
    margin-bottom: 12px;
}

.service-card p,
.benefit-card p,
.timeline-item p,
.pricing-card p,
.work-content p {
    color: var(--muted);
}

.dark-panel-section {
    padding-top: 40px;
}

.dark-panel {
    padding: clamp(34px, 6vw, 70px);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.45), transparent 30%), linear-gradient(135deg, #081229, var(--dark), #111827);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.dark-panel::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    right: -120px;
    bottom: -160px;
    filter: blur(10px);
}

.panel-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: 44px;
}

.panel-copy h2,
.contact-copy h2 {
    color: var(--white);
}

.benefit-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.benefit-card h3 {
    color: var(--white);
}

.benefit-card p {
    color: rgba(255,255,255,0.72);
}

.split-heading {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    text-align: left;
}

.split-heading p {
    max-width: 360px;
}

.work-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: repeat(2, minmax(240px, auto));
    gap: 24px;
}

.work-card {
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.work-card.large {
    grid-row: span 2;
}

.work-image {
    min-height: 250px;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.85);
    font-weight: 800;
}

.work-card.large .work-image {
    min-height: 490px;
}

.placeholder-gradient {
    background: linear-gradient(135deg, #0F172A, #2563EB);
}

.placeholder-gradient.alt {
    background: linear-gradient(135deg, #1E293B, #60A5FA);
}

.placeholder-gradient.alt-two {
    background: linear-gradient(135deg, #0B1120, #1D4ED8 60%, #93C5FD);
}

.work-content {
    padding: 24px;
}

.work-content h3 {
    color: var(--dark);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.process-section {
    background: linear-gradient(180deg, transparent, rgba(219, 234, 254, 0.28), transparent);
}

.timeline {
    display: grid;
    gap: 18px;
    max-width: 940px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    padding: 28px;
}

.timeline-item span {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.pricing-card {
    position: relative;
    padding: 34px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card.featured {
    background: var(--dark);
    color: var(--white);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-12px);
}

.pricing-card.featured h3,
.pricing-card.featured strong {
    color: var(--white);
}

.pricing-card.featured p,
.pricing-card.featured li {
    color: rgba(255,255,255,0.72);
}

.popular-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.2);
    color: #BFDBFE;
    font-size: 13px;
    font-weight: 800;
}

.pricing-card strong {
    display: block;
    color: var(--dark);
    font-size: 36px;
    letter-spacing: -0.05em;
    margin: 28px 0;
}

.pricing-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
    margin-bottom: 28px;
}

.pricing-card li {
    color: var(--muted);
}

.pricing-card li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 900;
    margin-right: 10px;
}

.full {
    width: 100%;
}

.contact-section {
    padding-top: 40px;
}

.contact-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    padding: clamp(32px, 6vw, 70px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #081229, #0F172A 55%, #1E3A8A);
    color: var(--white);
    box-shadow: var(--shadow);
}

.contact-copy p {
    margin-top: 18px;
    color: rgba(255,255,255,0.76);
    font-size: 18px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row {
    display: grid;
    gap: 8px;
}

.full-row {
    grid-column: 1 / -1;
}

label {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 14px;
    padding: 15px 16px;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.42);
}

input:focus,
textarea:focus {
    border-color: rgba(147, 197, 253, 0.8);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.site-footer {
    padding: 60px 0;
    background: #070D1D;
    color: rgba(255,255,255,0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 0.8fr;
    gap: 40px;
}

.footer-brand {
    color: var(--white);
    margin-bottom: 18px;
}

.footer-grid h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-grid a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 1050px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.open {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 92px;
        display: grid;
        gap: 0;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 14px;
        box-shadow: var(--shadow);
    }

    .nav-links.open a {
        display: block;
        padding: 14px;
    }

    .hero-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 520px;
    }

    .services-grid,
    .pricing-grid,
    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .split-heading {
        display: block;
    }

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

    .work-card.large {
        grid-row: auto;
    }

    .work-card.large .work-image {
        min-height: 300px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section-pad {
        padding: 76px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 58px);
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-proof,
    .services-grid,
    .pricing-grid,
    .benefit-grid,
    .footer-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .strip-content {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .strip-content p {
        white-space: nowrap;
    }

    .browser-card {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .mobile-card {
        display: none;
    }

    .mock-hero {
        grid-template-columns: 1fr;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .dark-panel {
        border-radius: 26px;
    }

    .popular-tag {
        position: static;
        width: fit-content;
        margin-bottom: 18px;
    }
}
