﻿:root {
    --dark: #07172f;
    --dark-2: #0d203d;
    --blue: #0d6efd;
    --text: #0b1f3a;
    --muted: #6b7280;
    --light: #f5f8fc;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #ffffff;
}

main {
    width: 100%;
    overflow-x: hidden;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 88px;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .5px;
    white-space: nowrap;
}

    .logo span {
        display: block;
        font-size: 10px;
        letter-spacing: 6px;
        margin-top: 4px;
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .main-nav a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        padding: 10px 16px;
        border-radius: 8px;
        transition: all .25s ease;
    }

        .main-nav a:hover {
            background: rgba(255,255,255,.08);
        }

    .main-nav .active {
        color: white;
        background: rgba(76,124,255,.20);
        box-shadow: 0 0 20px rgba(76,124,255,.25);
    }

.header-btn {
    background: var(--blue);
    color: white;
    text-decoration: none;
    padding: 15px 26px;
    border-radius: 7px;
    font-weight: 700;
    white-space: nowrap;
}

/* Hero */

.hero {
    background: #07172f;
    min-height: 850px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 0 80px;
    overflow: hidden;
}


.hero-left {
    color: white;
    max-width: 800px;
}


.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
}


    .hero-right img {
        width: 100%;
        max-width: 1100px;
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(0,0,0,.45);
    }

.hero-text {
    max-width: 680px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
}

    .hero h1 span {
        color: var(--blue);
    }

.hero p {
    color: rgba(255,255,255,.8);
    font-size: 22px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 36px;
}

.hero-button,
.hero-button-outline {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

.hero-button {
    background: var(--blue);
    color: white;
}

.hero-button-outline {
    border: 1px solid rgba(255,255,255,.9);
    color: white;
}

/* Benefits */

.benefits {
    width: min(1500px, calc(100% - 60px));
    margin: -46px auto 0;
    position: relative;
    z-index: 2;
    background: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
    border-radius: 8px;
    overflow: hidden;
}

.benefit {
    padding: 30px;
    border-right: 1px solid #e8eef6;
}

    .benefit:last-child {
        border-right: none;
    }

    .benefit h3 {
        margin: 0 0 10px;
        font-size: 22px;
    }

    .benefit p {
        margin: 0;
        color: var(--muted);
        line-height: 1.55;
    }

/* General Sections */

.section {
    width: min(1400px, calc(100% - 80px));
    margin: auto;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 52px;
}

    .section-title small {
        color: var(--blue);
        font-weight: 800;
    }

    .section-title h2 {
        font-size: 40px;
        margin: 10px 0 0;
    }

/* Services */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,.1);
    border: 1px solid #e4eaf2;
    transition: .3s;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 70px rgba(0,0,0,.15);
    }

    .service-card img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

    .service-card h3 {
        font-size: 26px;
        margin: 28px 30px 10px;
    }

    .service-card p {
        color: var(--muted);
        line-height: 1.7;
        margin: 0 30px 30px;
    }

/* Process */

.process-section {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 90px 70px;
}

    .process-section small {
        color: var(--blue);
        font-weight: 800;
    }

    .process-section h2 {
        font-size: 42px;
        margin: 12px 0;
    }

    .process-section > p {
        color: rgba(255,255,255,.75);
        margin: 0;
    }

.process-grid {
    max-width: 1400px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.process-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 34px 24px;
}

.circle {
    width: 58px;
    height: 58px;
    background: var(--blue);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    font-size: 22px;
    font-weight: 800;
}

/* CTA */

.cta-section {
    width: min(1180px, calc(100% - 48px));
    margin: 90px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cta-left small {
    color: var(--blue);
    font-weight: 800;
}

.cta-left h2 {
    font-size: 44px;
    margin: 12px 0;
}

.cta-left p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-right img {
    width: 100%;
    border-radius: 14px;
    display: block;
    box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

/* Page Hero */

.page-hero {
    background: linear-gradient(90deg, rgba(7,23,47,.96), rgba(7,23,47,.78)), url("/images/HomePageWebsites.png") center/cover no-repeat;
    color: white;
    padding: 105px 70px;
}

.why-page-hero {
    background: linear-gradient( 90deg, rgba(7,23,47,.96), rgba(7,23,47,.78) ), url("/images/handshake.png");
    background-size: cover;
    background-position: center;
}

.hero-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 48px;
    margin: 0 0 12px;
}

.page-hero p {
    font-size: 20px;
    max-width: 620px;
    line-height: 1.6;
}

/* Other Pages */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.feature-card,
.stat-box,
.contact-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(0,0,0,.1);
    border: 1px solid #e4eaf2;
    padding: 34px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.stats {
    display: grid;
    gap: 18px;
}

.stat-box {
    text-align: center;
    background: var(--dark);
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d6deea;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 16px;
    font: inherit;
}

.send-btn {
    width: 100%;
    border: none;
    background: var(--blue);
    color: white;
    padding: 16px;
    border-radius: 7px;
    font-weight: 800;
}

/* Footer */

.site-footer {
    background: var(--dark);
    color: white;
}

.footer-grid {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
    padding: 70px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.site-footer h2 {
    font-size: 24px;
    line-height: 1.05;
    margin: 0 0 18px;
}

    .site-footer h2 span {
        display: block;
        font-size: 10px;
        letter-spacing: 6px;
        margin-top: 5px;
    }

.site-footer p {
    color: rgba(255,255,255,.75);
    line-height: 1.65;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    margin-bottom: 12px;
}

    .site-footer a:hover {
        color: var(--blue);
    }

.footer-bottom {
    text-align: center;
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.55);
}

/* Mobile */

@media (max-width: 950px) {
    .site-header {
        height: auto;
        padding: 22px;
        flex-direction: column;
        gap: 18px;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero {
        padding: 80px 28px;
        min-height: auto;
    }

        .hero h1 {
            font-size: 42px;
        }

        .hero p {
            font-size: 18px;
        }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefits,
    .service-grid,
    .process-grid,
    .cta-section,
    .features-grid,
    .about-grid,
    .contact-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .benefit {
        border-right: none;
        border-bottom: 1px solid #e8eef6;
    }

    .process-section {
        padding: 70px 24px;
    }

    .page-hero {
        padding: 80px 28px;
    }
}

@media(max-width:1000px) {

    .hero {
        grid-template-columns: 1fr;
        padding: 80px 30px;
        text-align: center;
    }

    .hero-right {
        order: -1;
    }

    .hero h1 {
        font-size: 48px;
    }
}

.service-section {
    width: min(1400px, calc(100% - 80px));
    margin: auto;
    padding: 100px 0;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.service-content small {
    color: #0d6efd;
    font-weight: bold;
}

.service-content h2 {
    font-size: 48px;
    margin-top: 15px;
    color: #07172f;
}

.service-content p {
    color: gray;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    line-height: 2.4;
}

.why-section {
    background: #07172f;
    color: white;
    padding: 100px 0;
    text-align: center;
}

    .why-section small {
        color: #0d6efd;
        font-weight: bold;
    }

    .why-section h2 {
        font-size: 48px;
        margin-bottom: 60px;
    }

.why-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;
    padding: 40px;
}

    .why-card p {
        color: rgba(255,255,255,.7);
    }

@media(max-width:1000px) {

    .service-row,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

.contact-info small {
    color: #0d6efd;
    font-weight: bold;
}

.contact-info h2 {
    font-size: 48px;
    margin-top: 15px;
    color: #07172f;
}

.contact-info p {
    color: gray;
    line-height: 1.8;
}

.contact-box {
    background: white;
    border: 1px solid #e6edf5;
    border-radius: 15px;
    padding: 30px;
    margin-top: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.contact-form small {
    color: #0d6efd;
    font-weight: bold;
}

.contact-form h2 {
    font-size: 42px;
    margin-top: 15px;
}

.contact-form p {
    color: gray;
    margin-bottom: 30px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-box h3 {
    color: #07172f;
}

/* HERO */


/* CENTER SECTION */

.difference-section {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    padding: 90px 0;
}

.difference-header {
    text-align: center;
    margin-bottom: 60px;
}

    .difference-header small {
        color: #3467ff;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .difference-header h2 {
        font-size: 52px;
        margin: 20px 0;
        color: #07172f;
    }

    .difference-header p {
        max-width: 700px;
        margin: auto;
        line-height: 1.8;
        color: #666;
    }


/* CARDS */

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.difference-card {
    border: 1px solid #e8edf4;
    border-radius: 12px;
    background: white;
    padding: 35px;
    min-height: 230px;
}

    .difference-card i {
        color: #3467ff;
        font-size: 48px;
        margin-bottom: 20px;
    }

    .difference-card h3 {
        font-size: 26px;
        margin-bottom: 20px;
        color: #07172f;
    }

    .difference-card p {
        color: #666;
        line-height: 1.8;
    }


/* CTA */

.bottom-cta {
    background: #07172f;
    padding: 50px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .bottom-cta h2 {
        color: white;
        font-size: 42px;
    }

    .bottom-cta p {
        color: rgba(255,255,255,.7);
    }

.cta-button {
    background: #3467ff;
    color: white;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 700;
}

*:focus,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.portfolio-carousel {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-header {
    color: white;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-carousel {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-header {
    color: white;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-image-container {
    height: 650px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.portfolio-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    transition: all .4s ease;
}

    .portfolio-image.after {
        transform: scale(1.03);
        box-shadow: 0 0 40px rgba(79,124,255,.30), 0 25px 60px rgba(0,0,0,.35);
    }

.portfolio-dots {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4b5563;
    cursor: pointer;
    transition: .25s;
}

    .dot:hover {
        transform: scale(1.2);
    }

    .dot.active {
        background: #4c7cff;
    }

.success-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 520px;
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #4c7cff;
    color: white;
    font-size: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.try-ai-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.try-ai-form,
.try-ai-result {
    background: white;
    border: 1px solid #e4eaf2;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 14px 35px rgba(0,0,0,.1);
}

    .try-ai-form small {
        color: var(--blue);
        font-weight: 800;
    }

    .try-ai-form h2 {
        font-size: 42px;
        margin: 15px 0;
        color: var(--dark);
    }

    .try-ai-form p {
        color: var(--muted);
        line-height: 1.7;
    }

    .try-ai-form input,
    .try-ai-form textarea {
        width: 100%;
        border: 1px solid #d6deea;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 16px;
        font: inherit;
    }

.try-ai-result {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .try-ai-result img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0,0,0,.15);
    }

.ai-placeholder,
.ai-loading {
    color: var(--muted);
}

    .ai-placeholder h3,
    .ai-loading h3 {
        color: var(--dark);
    }

@media(max-width:1000px) {
    .try-ai-container {
        grid-template-columns: 1fr;
    }
}

.ai-status-box {
    text-align: center;
    padding: 80px 40px;
}

.ai-logo {
    font-size: 70px;
    margin-bottom: 20px;
}

.progress {
    width: 100%;
    height: 14px;
    background: #e5e7eb;
    border-radius: 100px;
    overflow: hidden;
    margin-top: 40px;
}

.progress-bar {
    height: 100%;
    background: #4c7cff;
    transition: width .6s ease;
}

.try-center-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e4eaf2;
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

    .try-center-box small {
        color: var(--blue);
        font-weight: 800;
        letter-spacing: 1px;
    }

    .try-center-box h2 {
        font-size: 44px;
        margin: 15px 0;
        color: var(--dark);
    }

.preview-lock-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.locked-preview {
    width: 100%;
    border-radius: 18px;
    filter: blur(12px);
    opacity: .55;
    pointer-events: none;
    transition: .4s ease;
}

    .locked-preview.unlocked {
        filter: blur(0);
        opacity: 1;
    }

.unlock-box {
    position: absolute;
    background: white;
    border-radius: 18px;
    padding: 32px;
    width: min(430px, 90%);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    z-index: 5;
}

    .unlock-box h3 {
        font-size: 28px;
        color: var(--dark);
        margin-bottom: 10px;
    }

.preview-success {
    margin-top: 30px;
    text-align: center;
}

.footer-social {
    margin-top: 24px;
}

    .footer-social h3 {
        margin-bottom: 12px;
        font-size: 18px;
        color: white;
    }

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-social-links a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px;
        color: #d7e1f0;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

        .footer-social-links a:hover {
            color: white;
            border-color: var(--blue);
            background: rgba(76, 124, 255, 0.12);
            transform: translateY(-2px);
        }

    .footer-social-links i {
        color: var(--blue);
        font-size: 18px;
    }

.mobile-menu-button,
.mobile-menu-cta {
    display: none;
}

@media (max-width: 900px) {

    .site-header {
        position: relative;
        min-height: 76px;
        padding: 0 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        position: relative;
        z-index: 1002;
        font-size: 22px;
        line-height: 1;
    }

        .logo span {
            margin-top: 5px;
            font-size: 9px;
            letter-spacing: 4px;
        }

    .header-btn {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        padding: 0;
        color: white;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 10px;
        font-size: 27px;
        cursor: pointer;
        position: relative;
        z-index: 1002;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 22px 24px;
        background: #091a35;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 22px 35px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

        .main-nav.mobile-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .main-nav a {
            width: 100%;
            padding: 15px 4px;
            font-size: 17px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

            .main-nav a.active {
                color: var(--blue);
                background: transparent;
                box-shadow: none;
            }

        .main-nav .mobile-menu-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 18px;
            padding: 15px 20px;
            color: white;
            background: var(--blue);
            border: 0;
            border-radius: 9px;
            font-weight: 800;
        }
}

@media (max-width: 900px) {

    /* Stack the two sides of the homepage hero */
    .hero {
        min-height: auto;
        padding: 40px 20px 50px;
    }

    .hero-container,
    .hero-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 35px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        max-width: none;
    }

    /* Homepage headline */
    .hero-left {
        text-align: center;
        order: 1;
    }

        .hero-left h1 {
            font-size: clamp(38px, 11vw, 52px);
            line-height: 1.08;
            margin-bottom: 18px;
        }

        .hero-left p {
            font-size: 17px;
            line-height: 1.65;
            margin: 0 auto 25px;
            max-width: 520px;
        }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

        .hero-buttons a {
            display: flex;
            justify-content: center;
            width: 100%;
        }

    /* Carousel appears after the text */
    .hero-right {
        order: 2;
    }

    .portfolio-carousel {
        min-height: 0;
        width: 100%;
        height: auto;
        display: block;
    }

    .portfolio-header {
        font-size: 25px;
        line-height: 1.3;
        margin: 0 0 18px;
        padding: 0 10px;
    }

    .portfolio-images,
    .portfolio-image-container,
    .portfolio-image-stage {
        width: 100%;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
    }

    .portfolio-image,
    .portfolio-image-block img,
    .portfolio-carousel img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 430px;
        object-fit: contain;
        margin: 0 auto;
    }

    .portfolio-dots {
        position: static;
        height: auto;
        margin-top: 18px;
        padding-bottom: 5px;
    }
}

@media (max-width: 900px) {

    /* HOME HERO */

    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 35px;
        padding: 45px 20px 50px;
        overflow: visible;
    }

    .hero-left {
        width: 100%;
        max-width: none;
        text-align: center;
        order: 1;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 50px);
        line-height: 1.08;
        margin: 0 0 22px;
    }

    .hero p {
        font-size: 17px;
        line-height: 1.65;
        margin: 0 auto 28px;
        max-width: 560px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 24px;
    }

    .hero-button,
    .hero-button-outline {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: 52px;
        padding: 14px 20px;
    }

    .hero-right {
        width: 100%;
        margin-top: 0;
        order: 2;
        display: block;
    }

        .hero-right img {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 14px;
            box-shadow: none;
        }

    /* BENEFITS */

    .benefits {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .benefit {
        padding: 24px 20px;
        text-align: center;
    }

    /* SERVICES */

    .section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title h2 {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }

    .section-title small {
        display: block;
        text-align: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card img {
        width: 100%;
        height: auto;
    }

    /* PROCESS */

    .process-section {
        padding-left: 20px;
        padding-right: 20px;
    }

        .process-section h2 {
            font-size: 32px;
            line-height: 1.2;
        }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CTA */

    .cta-section {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 45px 20px;
    }

    .cta-left,
    .cta-right {
        width: 100%;
        max-width: none;
    }

    .cta-left {
        text-align: center;
    }

        .cta-left h2 {
            font-size: 36px;
            line-height: 1.15;
        }

        .cta-left p {
            font-size: 17px;
            line-height: 1.6;
        }

    .cta-right img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 900px) {

    .site-header {
        position: sticky;
        top: 0;
        z-index: 2000;
        height: 76px;
        min-height: 76px;
        padding: 0 18px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: #07172f;
    }

    .logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        font-size: 20px;
        line-height: 1;
        margin: 0;
    }

        .logo span {
            display: block;
            margin-top: 5px;
            font-size: 8px;
            letter-spacing: 4px;
        }

    .mobile-menu-button {
        position: static;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        margin: 0;
    }

    .main-nav {
        top: 76px;
        position: fixed;
    }
}
