:root {
    --black:      #050a12;
    --navy:       #0a1628;
    --dark:       #070f1e;
    --blue:       #2c96df;
    --blue-dark:  #1a75b8;
    --blue-light: #5bb8f0;
    --font:       'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.4;
    color: white;
    background: var(--black);
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────── */
nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: transparent;
    padding: 0.6rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo-img {
    height: 52px;
    width: auto;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    padding: 0.45em 1.1em;
    border-radius: 0.4rem;
    background: rgba(10,26,48,0.6);
    transition: color 0.2s, transform 0.15s;
}
.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1a5fa8, #2c96df, #5bb8f0);
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.nav-links a:hover { color: white; transform: translateY(-1px); }
.nav-links a:hover::before { opacity: 0.75; }
.nav-links a.active { color: white; background: rgba(44,150,223,0.18); }
.nav-links a.active::before { opacity: 0.45; }

/* ── BUTTONS ──────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.65em 1.5em;
    border-radius: 0.45rem;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    position: relative;
    overflow: hidden;
    background: #0a1a30;
    color: white;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1a5fa8, #2c96df, #5bb8f0);
    opacity: 0.45;
    filter: blur(8px);
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.btn-primary:hover { background: #0a1a30; }
.btn-primary:hover::before { opacity: 0.9; }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; }
.btn-lg { padding: 0.9em 2.2em; font-size: 1.1rem; }

/* ── HERO ─────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -15%; right: -8%;
    width: 65%; height: 85%;
    background: radial-gradient(ellipse, rgba(44,150,223,0.15) 0%, transparent 68%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -8%;
    width: 55%; height: 60%;
    background: radial-gradient(ellipse, rgba(44,150,223,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ── AURORA ───────────────────────────────── */
@keyframes aurora {
    from { background-position: 50% 50%, 50% 50%; }
    to   { background-position: 350% 50%, 350% 50%; }
}
.aurora-bg {
    position: absolute;
    inset: -10px;
    opacity: 0.5;
    will-change: transform;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(100deg, #000 0%, #000 7%, transparent 10%, transparent 12%, #000 16%),
        repeating-linear-gradient(100deg, #3b82f6 10%, #a5b4fc 15%, #93c5fd 20%, #ddd6fe 25%, #60a5fa 30%);
    background-size: 300%, 200%;
    background-position: 50% 50%, 50% 50%;
    filter: blur(10px);
    animation: aurora 60s linear infinite;
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
    mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}
.aurora-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(100deg, #000 0%, #000 7%, transparent 10%, transparent 12%, #000 16%),
        repeating-linear-gradient(100deg, #3b82f6 10%, #a5b4fc 15%, #93c5fd 20%, #ddd6fe 25%, #60a5fa 30%);
    background-size: 200%, 100%;
    background-attachment: fixed;
    mix-blend-mode: difference;
    animation: aurora 60s linear infinite;
}

.sp {
    position: absolute;
    color: var(--blue);
    pointer-events: none;
    line-height: 1;
}
.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    position: relative; z-index: 1;
    filter: drop-shadow(0 0 20px rgba(44,150,223,0.4));
}
.hero-eyebrow {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 1.25rem;
    position: relative; z-index: 1;
}
.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.05;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative; z-index: 1;
    text-shadow: 0 0 50px rgba(44,150,223,0.2);
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2.75rem;
    letter-spacing: 0.08em;
    position: relative; z-index: 1;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative; z-index: 1;
}
.hero-badges {
    margin-top: 5rem;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative; z-index: 1;
}
.hero-badge {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

/* ── PAGE HERO (interior pages) ──────────── */
.page-hero {
    background: var(--black);
    padding: 10rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -15%; right: -8%;
    width: 65%; height: 85%;
    background: radial-gradient(ellipse, rgba(44,150,223,0.12) 0%, transparent 68%);
    pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 1rem; position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.05;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative; z-index: 1;
    text-shadow: 0 0 50px rgba(44,150,223,0.2);
}
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.45);
    max-width: 520px;
    margin: 0 auto;
    position: relative; z-index: 1;
    line-height: 1.7;
}

/* ── CTA BANNER ──────────────────────────── */
.cta-banner {
    background: var(--navy);
    padding: 6rem 2rem;
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    color: white;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.cta-banner p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ── PROBLEM ──────────────────────────────── */
.problem {
    background: var(--navy);
    padding: 6rem 2rem;
    text-align: center;
}
.problem h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--blue);
    text-transform: uppercase;
    max-width: 680px;
    margin: 0 auto 1.25rem;
}
.problem p {
    color: rgba(255,255,255,0.5);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── OVERVIEW / SERVICES ──────────────────── */
.overview {
    background: var(--dark);
    padding: 7rem 2rem;
}
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.overview h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}
.photo-box {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0,0,0,0.5);
    aspect-ratio: 3/2;
}
.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.points { display: flex; flex-direction: column; gap: 2rem; }
.point { display: flex; gap: 1rem; align-items: flex-start; }
.point-icon { font-size: 1.4rem; color: var(--blue); flex-shrink: 0; margin-top: 0.1rem; }
.point h3 { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.04em; }
.point p { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.65; }

/* ── TRUST ────────────────────────────────── */
.trust {
    background: var(--black);
    padding: 6rem 2rem;
    text-align: center;
}
.trust h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--blue);
    text-transform: uppercase;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.stats {
    display: flex;
    gap: 5rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}
.stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-lbl {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 0.5rem;
}

/* ── APPROACH / ABOUT ─────────────────────── */
.approach {
    background: var(--navy);
    padding: 7rem 2rem;
}
.approach-photo {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0,0,0,0.5);
    aspect-ratio: 17/10;
}
.approach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.approach-content .eyebrow { font-size: 0.8rem; letter-spacing: 0.18em; }
.approach-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.approach-content p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* ── SERVICE CARDS ────────────────────────── */
.cards {
    background: var(--dark);
    padding: 7rem 2rem;
}
.cards-head { text-align: center; margin-bottom: 3.5rem; }
.cards-head h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.cards-head p { color: rgba(255,255,255,0.45); font-size: 1.1rem; }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.cards-grid .card:nth-child(1) { grid-column: 1 / 3; }
.cards-grid .card:nth-child(2) { grid-column: 3 / 5; }
.cards-grid .card:nth-child(3) { grid-column: 5 / 7; }
.cards-grid .card:nth-child(4) { grid-column: 2 / 4; }
.cards-grid .card:nth-child(5) { grid-column: 4 / 6; }
.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(44,150,223,0.2);
    border-radius: 1rem;
    padding: 2.25rem;
    transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--blue); transform: translateY(-5px); }
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.card h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.card p { color: rgba(255,255,255,0.5); font-size: 0.93rem; line-height: 1.65; }

/* ── SERVICES PREVIEW (homepage 3-card grid) */
.services-preview {
    background: var(--dark);
    padding: 7rem 2rem;
}
.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.preview-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ── OWNER PREVIEW (homepage) ────────────── */
.owner-preview {
    background: var(--navy);
    padding: 7rem 2rem;
}
.owner-preview-photo {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0,0,0,0.5);
    aspect-ratio: 3/4;
    max-width: 360px;
}
.owner-preview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.owner-preview-content .eyebrow { font-size: 0.8rem; letter-spacing: 0.18em; }
.owner-preview-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.owner-preview-content p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* ── OWNER (full page section) ───────────── */
.owner {
    background: var(--black);
    padding: 7rem 2rem;
}
.owner-photo {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0,0,0,0.5);
    aspect-ratio: 3/4;
}
.owner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.owner-content .eyebrow { font-size: 0.8rem; letter-spacing: 0.18em; }
.owner-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.owner-content p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* ── CONTACT ──────────────────────────────── */
.contact {
    background: var(--black);
    padding: 7rem 2rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.contact-info .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 1.25rem;
}
.contact-info h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 2rem;
}
.detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.detail-icon { font-size: 1.2rem; color: var(--blue-light); flex-shrink: 0; }
.detail-text { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.5; }
.detail-text strong { display: block; color: white; margin-bottom: 0.2rem; font-weight: 700; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.1em; }
.detail-text a { color: var(--blue-light); text-decoration: none; }
.detail-text a:hover { color: white; }
.socials { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
.social-btn {
    padding: 0.55em 1.3em;
    border-radius: 0.4rem;
    background: rgba(44,150,223,0.1);
    border: 1px solid rgba(44,150,223,0.25);
    color: var(--blue-light);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s;
}
.social-btn:hover { background: rgba(44,150,223,0.22); border-color: var(--blue); color: white; }

/* FORM */
.form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(44,150,223,0.15);
    border-radius: 1rem;
    padding: 2.75rem;
}
.form-card h3 {
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.1rem; }
label { display: block; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.1em; }
input, textarea {
    width: 100%;
    padding: 0.78rem 1rem;
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 0.4rem;
    font-family: var(--font);
    font-size: 0.95rem;
    color: white;
    background: rgba(255,255,255,0.05);
    outline: none;
    transition: border-color 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
input:focus, textarea:focus { border-color: var(--blue); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 1em;
    background: #0a1a30;
    color: white;
    border: none;
    border-radius: 0.4rem;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1a5fa8, #2c96df, #5bb8f0);
    opacity: 0.45;
    filter: blur(8px);
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.form-submit:hover { background: #0a1a30; transform: translateY(-1px); }
.form-submit:hover::before { opacity: 0.9; }

/* ── FOOTER ───────────────────────────────── */
footer {
    background: #020609;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(44,150,223,0.1);
}
.footer-logo { font-size: 1.1rem; font-weight: 800; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-logo span { color: var(--blue); }
footer p { color: rgba(255,255,255,0.28); font-size: 0.8rem; line-height: 2.4; }
footer a { color: rgba(255,255,255,0.38); text-decoration: none; }
footer a:hover { color: var(--blue); }

/* ── HAMBURGER ────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 102;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ──────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,10,18,0.98);
    z-index: 101;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    text-align: center;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}
.mobile-link:hover { color: var(--blue); }
.mobile-menu-cta { margin-top: 0.75rem; font-size: 1.05rem; }
.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.mobile-menu-close:hover { opacity: 1; }
.mobile-menu-close svg { width: 28px; height: 28px; stroke: #fff; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 800px) {
    :root { font-size: 0.9rem; }

    /* Nav */
    nav { padding: 0.5rem 1.25rem; }
    .nav-logo-img { height: 38px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* Hero */
    .hero { padding: 6rem 1.25rem 3rem; }
    .hero-logo { width: 110px; margin-bottom: 1.25rem; }
    .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
    .hero h1 { font-size: clamp(1.75rem, 9vw, 2.4rem); letter-spacing: 0.02em; }
    .hero-sub { font-size: 0.9rem; letter-spacing: 0.04em; margin-bottom: 1.75rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 0.65rem; }
    .hero-ctas .btn { width: 100%; text-align: center; }
    .btn-lg { padding: 0.8em 1.5em; font-size: 0.95rem; }
    .hero-badges { gap: 0.75rem; margin-top: 2rem; }
    .hero-sep { display: none; }
    .hero-badge { font-size: 0.68rem; }

    /* Eyebrow (global) */
    .eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; }

    /* Page hero */
    .page-hero { padding: 7rem 1.25rem 3rem; }
    .page-hero h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
    .page-hero p { font-size: 0.92rem; }

    /* CTA Banner */
    .cta-banner { padding: 3rem 1.25rem; }
    .cta-banner h2 { font-size: clamp(1.15rem, 5vw, 1.6rem); }
    .cta-banner p { font-size: 0.92rem; margin-bottom: 1.5rem; }

    /* Problem */
    .problem { padding: 3rem 1.25rem; }
    .problem h2 { font-size: clamp(1.25rem, 5.5vw, 1.7rem); letter-spacing: 0.02em; }
    .problem p { font-size: 0.95rem; }

    /* Overview */
    .overview { padding: 3.5rem 1.25rem; }
    .overview h2 { font-size: clamp(1.25rem, 5.5vw, 1.7rem); letter-spacing: 0.02em; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
    .photo-box { aspect-ratio: 4/3; }
    .points { gap: 1.4rem; }
    .point h3 { font-size: 0.92rem; }
    .point p { font-size: 0.88rem; }
    .point-icon { font-size: 1.2rem; }

    /* Trust */
    .trust { padding: 3rem 1.25rem; }
    .trust h2 { font-size: clamp(1.15rem, 5vw, 1.6rem); letter-spacing: 0.02em; margin-bottom: 1.5rem; }
    .stats { gap: 1.75rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }
    .stat-num { font-size: 1.9rem; }
    .stat-lbl { font-size: 0.68rem; }

    /* Approach */
    .approach { padding: 3.5rem 1.25rem; }
    .approach-photo { aspect-ratio: 4/3; }
    .approach-content h2 { font-size: clamp(1.15rem, 5vw, 1.6rem); letter-spacing: 0.02em; margin-bottom: 1rem; }
    .approach-content p { font-size: 0.92rem; line-height: 1.65; }

    /* Cards */
    .cards { padding: 3.5rem 1.25rem; }
    .cards-head { margin-bottom: 2rem; }
    .cards-head h2 { font-size: clamp(1.25rem, 5.5vw, 1.7rem); letter-spacing: 0.02em; margin-bottom: 0.5rem; }
    .cards-head p { font-size: 0.92rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .cards-grid .card:nth-child(1),
    .cards-grid .card:nth-child(2),
    .cards-grid .card:nth-child(3),
    .cards-grid .card:nth-child(4),
    .cards-grid .card:nth-child(5) { grid-column: auto; }
    .card { padding: 1.4rem; }
    .card-icon { font-size: 1.75rem; margin-bottom: 0.65rem; }
    .card h3 { font-size: 0.88rem; margin-bottom: 0.5rem; }
    .card p { font-size: 0.86rem; line-height: 1.6; }

    /* Services preview */
    .services-preview { padding: 3.5rem 1.25rem; }
    .services-preview-grid { grid-template-columns: 1fr; }

    /* Owner preview */
    .owner-preview { padding: 3.5rem 1.25rem; }
    .owner-preview-photo { max-width: 100%; aspect-ratio: 2/3; }
    .owner-preview-content { text-align: center; }
    .owner-preview-content h2 { font-size: clamp(1.15rem, 5vw, 1.6rem); letter-spacing: 0.02em; margin-bottom: 1rem; }
    .owner-preview-content p { font-size: 0.92rem; line-height: 1.65; text-align: left; }

    /* Owner full */
    .owner { padding: 3.5rem 1.25rem; }
    .owner-photo { aspect-ratio: 2/3; max-width: 100%; margin: 0 auto; }
    .owner-content { text-align: center; }
    .owner-content h2 { font-size: clamp(1.15rem, 5vw, 1.6rem); letter-spacing: 0.02em; margin-bottom: 1rem; }
    .owner-content p { font-size: 0.92rem; line-height: 1.65; text-align: left; }

    /* Contact */
    .contact { padding: 3.5rem 1.25rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-info h2 { font-size: clamp(1.15rem, 5vw, 1.6rem); letter-spacing: 0.02em; margin-bottom: 1.25rem; }
    .detail { margin-bottom: 1.1rem; }
    .detail-text { font-size: 0.92rem; }
    .socials { margin-top: 1.75rem; }
    .form-card { padding: 1.5rem 1.25rem; }
    .form-card h3 { font-size: 1rem; margin-bottom: 1.25rem; }
    input, textarea { font-size: 0.9rem; padding: 0.7rem 0.85rem; }

    /* Footer */
    footer { padding: 2rem 1.25rem; }
    .footer-logo { font-size: 0.95rem; }
    footer p { font-size: 0.75rem; line-height: 2; }
}
