:root{
    --bg:#090a0b;
    --bg-2:#0d0f10;
    --surface:#131516;
    --surface-2:#191b1d;

    --text:#f3f2ee;
    --text-soft:#b8bab6;
    --muted:#747875;

    --orange:#d98a28;
    --orange-light:#f0aa45;

    --line:rgba(255,255,255,.075);
    --line-strong:rgba(255,255,255,.15);

    --radius:14px;
    --max:1280px;
}

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

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
    height:100%;
}

body{
    min-height:100%;
    display:flex;
    flex-direction:column;
}

main{
    flex:1 0 auto;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:"DM Sans",sans-serif;
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    overflow-wrap:break-word;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    opacity:.018;
    z-index:999;
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
    background-size:180px 180px;
}

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

button,
input,
textarea{
    font:inherit;
}

img{width:100%;display:block}

.container{width:min(var(--max),calc(100% - 64px));margin:auto}

.section{
    padding:120px 0;
}

.section-dark{
    background:var(--bg-2);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.eyebrow{
    display:flex;
    flex-wrap:wrap;
    row-gap:6px;
    align-items:center;
    gap:12px;

    color:var(--orange-light);
    font-size:11px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
}
.eyebrow::before{
    content:"";
    width:28px;
    height:1px;
    flex-shrink:0;
    background:var(--orange);
}

h1,h2,h3,h4{
    font-family:"Manrope",sans-serif;
    letter-spacing:-.035em;
}

h2{font-size:clamp(34px,4vw,52px);line-height:1.04}

p{color:var(--text-soft)}

/* NAV */

header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
}

header::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    pointer-events:none;

    background:rgba(9,10,11,.78);
    -webkit-backdrop-filter:blur(20px) saturate(140%);
    backdrop-filter:blur(20px) saturate(140%);
    border-bottom:1px solid var(--line);
    box-shadow:0 10px 35px rgba(0,0,0,.18);

    opacity:0;
    transition:opacity .3s ease;
}

header.scrolled::before{opacity:1}

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

.logo{
    display:flex;
    align-items:center;
    gap:11px;
}

.logo-img{width:38px;height:38px;object-fit:contain;flex-shrink:0}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-title{
    font-family:"Manrope",sans-serif;
    font-size:20px;
    font-weight:800;
    letter-spacing:-.03em;
    color:var(--text);
}

.logo-title span{color:var(--orange-light)}

.logo-sub{
    margin-top:4px;
    font-family:"DM Sans",sans-serif;
    font-size:9.5px;
    font-weight:600;
    letter-spacing:.24em;
    text-transform:uppercase;
    color:var(--muted);
}

.nav-links{
    display:flex;
    gap:28px;
    list-style:none;

    color:#a7a9a7;
    font-size:13px;
    font-weight:500;
}
.nav-links a{
    transition:color .2s ease, border-color .2s ease;
    padding-bottom:4px;
    border-bottom:1px solid transparent;
}

.nav-links a:hover{
    color:white;
}
.nav-links a.active{ color:white; border-bottom-color:var(--orange) }

.mobile-menu-links a.active{
    color:white;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.phone{ color:#aaa; font-size:13px }

.nav-button{
    background:var(--orange);
    padding:11px 18px;
    border-radius:7px;

    font-size:13px;
    font-weight:700;

    transition:background-color .25s ease, transform .25s ease;
}

.nav-button:hover{
    background:var(--orange-light);
    transform:translateY(-1px);
}

.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;

    width:38px;
    height:38px;

    background:none;
    border:1px solid var(--line-strong);
    border-radius:7px;
    cursor:pointer;
}
.menu-toggle span{
    display:block;
    width:16px;
    height:2px;
    margin:0 auto;

    background:var(--text);
    border-radius:2px;
    transition:transform .3s ease, opacity .3s ease;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){ opacity:0 }
.menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.mobile-menu{
    display:none;
    max-height:0;
    overflow:hidden;

    background:rgba(9,10,11,.98);
    border-top:1px solid transparent;

    transition:max-height .35s ease, border-color .35s ease;
}

.mobile-menu.open{max-height:420px;border-top-color:var(--line)}

.mobile-menu-links{
    list-style:none;
    padding:18px 0;
}
.mobile-menu-links li + li{
    border-top:1px solid var(--line);
}

.mobile-menu-links a{
    display:block;
    padding:15px 32px;

    font-size:15px;
    font-weight:600;
    color:var(--text-soft);
}
.mobile-menu-links a:active{
    color:white;
}

.mobile-menu-actions{ display:flex; gap:10px; padding:0 20px 22px }
.mobile-menu-actions .btn{
    flex:1;
}

/* HERO (Ana sayfa) */

.hero{
    min-height:100svh;
    position:relative;
    overflow:hidden;

    display:flex;
    align-items:flex-end;

    padding:150px 0 72px;

    background:
        linear-gradient(
            90deg,
            rgba(7,8,9,.8) 0%,
            rgba(7,8,9,.62) 42%,
            rgba(7,8,9,.32) 72%,
            rgba(7,8,9,.52) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7,8,9,.78) 0%,
            transparent 48%
        ),
        url("images/hero.webp")
        100% center/cover no-repeat;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,transparent 55%,rgba(216,137,37,.09));
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
    width:min(var(--max),calc(100% - 64px));
    margin:auto;
}

.hero-copy{
    max-width:760px;
}

.hero h1{
    margin-top:22px;

    font-size:clamp(48px,7vw,92px);
    line-height:.98;
    font-weight:800;
}
.hero h1 em{color:var(--orange-light);font-style:normal}

.hero-description{
    max-width:570px;
    margin-top:26px;

    font-size:17px;
    line-height:1.72;
    color:#c6c8c4;
}

.hero-actions{
    display:flex;
    gap:12px;
    margin-top:34px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    min-height:48px;
    padding:0 20px;

    border:1px solid var(--line-strong);
    border-radius:7px;

    font-size:13px;
    font-weight:700;

    transition:background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.btn-primary{
    background:var(--orange);
    border-color:var(--orange);
    color:white;
}

.btn-primary:hover{
    background:var(--orange-light);
    border-color:var(--orange-light);
}

.btn-secondary:hover{
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.22);
}

/* WHY US (Neden Genç Hafriyat) */

.hero-why{
    margin-top:70px;
    padding-top:28px;

    border-top:1px solid rgba(255,255,255,.16);
}

.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:36px }

.why-item{ display:flex; align-items:flex-start; gap:16px }

.why-icon{
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    width:38px;
    height:38px;

    color:var(--orange-light);
}

.why-icon svg{ width:100%; height:100% }

.why-item h3{
    font-size:15.5px;
    font-weight:700;
}

.why-item p{ margin-top:5px; font-size:13px; line-height:1.55 }

/* REGIONS (Çalışma Bölgelerimiz) */

.regions-compact-section{ padding:100px 0 }

.regions-compact{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:72px;
    align-items:center;
}

.regions-heading{
    margin-top:18px;
    max-width:470px;

    font-family:"Manrope",sans-serif;
    font-size:clamp(26px,3vw,40px);
    font-weight:800;
    line-height:1.15;
    letter-spacing:-.03em;
}

.regions-heading span{color:var(--orange-light)}

.region-pills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    max-width:470px;
    margin-top:32px;
}

.pill{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:10px 18px;

    background:rgba(255,255,255,.03);
    border:1px solid var(--line);
    border-radius:999px;

    color:var(--text-soft);
    font-size:13px;
    font-weight:600;

    transition:
        border-color .25s ease,
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}
.pill::before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--orange);
    opacity:.65;
    transition:opacity .25s ease, box-shadow .25s ease;
}
.pill:hover{
    border-color:rgba(217,138,40,.45);
    background:rgba(217,138,40,.08);
    color:white;
    transform:translateY(-2px);
}
.pill:hover::before{ opacity:1; box-shadow:0 0 10px rgba(240,170,69,.7) }

.pill-main{
    background:rgba(217,138,40,.12);
    border-color:rgba(217,138,40,.4);
    color:var(--orange-light);
}
.pill-main::before{background:var(--orange-light);opacity:1}

.region-map-small{
    position:relative;
    aspect-ratio:875/524;

    background:
        radial-gradient(ellipse at 60% 55%, rgba(80,140,185,.14), transparent 65%),
        var(--surface);
    border:1px solid var(--line);
    border-radius:calc(var(--radius) + 6px);
    overflow:hidden;

    box-shadow:
        0 30px 70px rgba(0,0,0,.35),
        0 0 0 6px rgba(255,255,255,.015);
}

.region-map-small::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;

    background:
        linear-gradient(to top, rgba(9,10,11,.55), transparent 38%),
        radial-gradient(ellipse at center, transparent 55%, rgba(9,10,11,.3));
}

.region-map-small img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .8s cubic-bezier(.22,.75,.28,1);
}

.region-map-small:hover img{
    transform:scale(1.03);
}

.map-badge{
    position:absolute;
    left:16px;
    bottom:16px;
    z-index:2;

    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;

    background:rgba(9,10,11,.55);
    border:1px solid var(--line-strong);
    border-radius:999px;

    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);

    color:var(--text);
    font-size:12px;
    font-weight:700;
}

.region-map-small .map-badge svg{ width:14px; height:14px; color:var(--orange-light) }

/* PAGE HERO (İç sayfalar) */

.page-hero{
    padding:170px 0 68px;
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(circle at 85% 0%, rgba(217,138,40,.14), transparent 45%),
        var(--bg-2);

    border-bottom:1px solid var(--line);
}
.page-hero .eyebrow{
    margin-bottom: 4px;
}
.page-hero h1{
    margin-top:18px;
    max-width:760px;

    font-size:clamp(38px,5.2vw,64px);
    line-height:1.05;
    font-weight:800;
}

.page-hero p{
    margin-top:20px;
    max-width:600px;

    font-size:15.5px;
    line-height:1.75;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:22px;

    color:var(--muted);
    font-size:12px;
    font-weight:600;
    letter-spacing:.02em;
}
.breadcrumb a:hover{ color:var(--orange-light) }
.breadcrumb .sep{color:var(--line-strong)}

.breadcrumb .current{
    color:var(--text-soft);
}

/* INTRO */

.about-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:64px 72px;
    align-items:stretch;
}

.about-copy h2{margin-top:20px;max-width:520px}

.about-copy p{margin-top:18px;max-width:500px;font-size:15px;line-height:1.8}

.about-toggle-checkbox{ display:none }

.about-toggle-label{ display:none }

.about-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-content:center;
    gap:14px;
}

.about-stat{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:26px 24px;

    background:linear-gradient(
        145deg,
        rgba(255,255,255,.05),
        rgba(255,255,255,.015)
    );
    border:1px solid var(--line);
    border-radius:var(--radius);

    transition:border-color .3s ease,background .3s ease,transform .3s ease;
}
.about-stat:hover{ border-color:rgba(217,138,40,.35); transform:translateY(-2px) }

.about-stat-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;

    background:rgba(217,138,40,.09);
    border:1px solid rgba(217,138,40,.24);
    border-radius:12px;

    color:var(--orange-light);
}
.about-stat-icon svg{width:21px;height:21px}

.about-stat strong{
    display:block;
    margin-top:18px;
    font-family:"Manrope",sans-serif;
    font-size:28px;
    font-weight:800;
    line-height:1.1;
    font-variant-numeric:tabular-nums;
}

.about-stat p{margin-top:4px;font-size:13px}

/* SECTION HEAD */

/* SECTION HEAD */

/* SECTION HEAD */

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    gap:40px;
    margin-bottom:55px;
}

.section-head p{
    max-width:450px;
    font-size:14px;
    line-height:1.75;
}

/* SERVICES */

.services{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-top:1px solid var(--line);
}

.service{
    position:relative;

    min-height:170px;
    padding:30px 34px;

    border-bottom:1px solid var(--line);

    transition:background-color .3s ease;
}

.service:nth-child(odd){
    border-right:1px solid var(--line);
}

.service:hover{ background:#17191b }

.service-number{color:var(--orange);font-family:monospace;font-size:12px}

.service h3{margin-top:24px;font-size:21px}
.service p{
    margin-top:8px;
    max-width:470px;
    font-size:13.5px;
}

/* CTA */

.cta{ padding:90px 0 }

.cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;

    padding:55px 60px;

    background:
        linear-gradient(120deg,rgba(216,137,37,.12),transparent 50%),
        var(--surface);

    border:1px solid var(--line);
}

.cta-full{
    position:relative;
    padding:100px 0;

    background:
        linear-gradient(
            100deg,
            rgba(7,8,9,.94) 6%,
            rgba(7,8,9,.72) 42%,
            rgba(7,8,9,.4) 100%
        ),
        url("images/cta-bg.webp") center/cover no-repeat,
        var(--surface);

    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.cta-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.cta h2{max-width:650px}
.cta p{
    margin-top:12px;
    font-size:14px;
}

.cta-actions{ display:flex; flex-wrap:wrap; gap:12px; flex-shrink:0 }

.btn-ghost{
    gap:9px;

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.22);
    color:#fff;
}

.btn-ghost:hover{
    background:rgba(255,255,255,.1);
    border-color:rgba(255,255,255,.36);
}

.btn-icon{
    width:16px;
    height:16px;
    flex-shrink:0;
}

/* CONTACT */

.contact{ display:grid; grid-template-columns:1fr .9fr; gap:90px }
.contact h2{
    margin-top:20px;
    max-width:520px;
}

.contact-info{
    margin-top:45px;
    border-top:1px solid var(--line);
}

.contact-row{
    display:grid;
    grid-template-columns:120px 1fr;

    padding:18px 0;
    border-bottom:1px solid var(--line);
}
.contact-row span:first-child{
    color:var(--muted);
    font-size:12px;
}
.contact-row span:last-child{color:#ddd;font-size:14px}

.contact-row a:hover{color:var(--orange-light)}

.form{background:var(--surface);border:1px solid var(--line);padding:32px}

.form-note{margin-top:14px;color:var(--muted);font-size:12px;text-align:center}

.form-note.sent{color:var(--orange-light);font-weight:600}

.form label{
    display:block;

    margin-bottom:7px;

    color:#9b9d9b;
    font-size:11px;
    font-weight:600;
}

.form input,
.form textarea{
    width:100%;

    margin-bottom:20px;
    padding:13px 14px;

    border:1px solid var(--line);
    border-radius:9px;

    background:#0c0e0f;
    color:white;

    outline:none;
    resize:vertical;

    transition:border-color .2s ease, background-color .2s ease;
}

.form input:focus,
.form textarea:focus{
    border-color:rgba(216,137,37,.6);
}

.form button{
    width:100%;
    cursor:pointer;
}

/* FOOTER */

footer{
    position:relative;
    background:var(--bg);
    border-top:1px solid var(--line);
    padding:80px 0 32px;
}

footer::before{
    content:"";
    position:absolute;
    top:-1px;
    left:0;
    width:180px;
    height:1px;
    background:linear-gradient(90deg,var(--orange),transparent);
    opacity:.55;
}

.footer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding-bottom:52px;
}

.footer-logo{display:inline-flex;align-items:center;gap:15px}

.footer-logo-img{width:48px;height:48px;object-fit:contain;flex-shrink:0}

.footer-logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.footer-logo-title{
    font-family:"Manrope",sans-serif;
    font-size:26px;
    font-weight:800;
    letter-spacing:-.03em;
}

.footer-logo-title span{ color:var(--orange-light) }

.footer-logo-sub{
    margin-top:5px;
    font-family:"DM Sans",sans-serif;
    font-size:11px;
    font-weight:600;
    letter-spacing:.24em;
    text-transform:uppercase;
    color:var(--muted);
}

.footer-description{
    max-width:380px;
    margin-top:20px;

    color:var(--text-soft);
    font-size:15px;
    line-height:1.7;
}

.footer-social-group{
    display:flex;
    gap:12px;
}

.footer-social{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:44px;
    height:44px;

    background:rgba(255,255,255,.03);
    border:1px solid var(--line);
    border-radius:12px;

    color:var(--text-soft);

    transition:
        color .25s ease,
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.footer-social:hover{
    color:white;
    border-color:rgba(217,138,40,.5);
    background:rgba(217,138,40,.1);
    transform:translateY(-2px);
}

.footer-social svg{
    width:20px;
    height:20px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:12px;

    padding-top:26px;
    border-top:1px solid var(--line);

    color:var(--muted);
    font-size:12.5px;
}

@media(max-width:900px){

    footer{
        padding:64px 0 28px;
    }

    .footer-top{
        flex-direction:column;
        align-items:flex-start;
        gap:28px;
        padding-bottom:40px;
    }

}

@media(max-width:520px){

    .footer-logo-img{width:40px;height:40px}

    .footer-logo-title{ font-size:22px }
    .footer-logo-sub{ font-size:9.5px }

    .footer-description{
        font-size:14px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:6px;
    }

}

/* FIELD / CONSTRUCTION DETAIL */

.section-dark{ position:relative; overflow:hidden }
.section-dark::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:180px;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--orange));
    opacity:.55;
}

::selection{background:rgba(216,137,37,.35);color:#fff}

/* PAGE TRANSITION */

body{
    animation:page-enter .4s ease-out backwards;
}

@keyframes page-enter{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

body.page-leaving{opacity:0;transition:opacity .26s ease-in}

/* MOBILE */

@media(max-width:900px){

    .container,
    .hero-content{
        width:min(100% - 40px,var(--max));
    }

    .nav{height:72px}

    .nav-links,
    .phone{
        display:none;
    }

    .nav-button{display:none}

    .menu-toggle{
        display:flex;
    }

    .mobile-menu{display:block}

    .section{
        padding:85px 0;
    }

    .page-hero{
        padding:120px 0 44px;
    }
    .page-hero h1{
        font-size:clamp(32px,8vw,50px);
    }

    .page-hero p{
        margin-top:16px;
        font-size:14.5px;
    }

    .hero{
        min-height:850px;
        padding-bottom:45px;

        background-position:60% center;
    }

    .hero h1{
        font-size:clamp(45px,12vw,72px);
    }

    .hero-description{
        font-size:15px;
    }

    .hero-why{
        margin-top:50px;
        padding-top:22px;
    }

    .about-grid,
    .contact,
    .regions-compact{
        grid-template-columns:1fr;
        gap:34px;
    }

    .why-grid{ grid-template-columns:1fr 1fr; gap:26px 20px }

    .region-map-small{
        aspect-ratio:875/524;
    }

    .regions-compact-section{ padding:70px 0 }

    .section-head{ display:block }

    .section-head p{
        margin-top:18px;
    }

    .services{
        grid-template-columns:1fr;
        gap:12px;
        border-top:0;
    }

    .service{
        min-height:auto;
        padding:24px 22px;

        background:var(--surface);
        border:1px solid var(--line);
        border-radius:var(--radius);
        box-shadow:0 10px 26px rgba(0,0,0,.22);
    }

    .service:nth-child(odd){
        border-right:1px solid var(--line);
    }

    .service h3{margin-top:18px;font-size:18px}
    .service p{
        font-size:13px;
    }

    .cta-inner{border-radius:var(--radius)}

    .form{border-radius:var(--radius)}

    .cta-inner{display:block;padding:38px 28px}

    .cta .btn{ margin-top:25px }

    .cta-full{
        padding:60px 0;
    }

    .cta-flex{display:block}

    .cta-actions{ flex-direction:column; margin-top:25px }

    .cta-actions .btn{ width:100%; margin-top:0 }

    .btn{ min-height:40px; padding:0 15px; font-size:12px }

    .nav-button{padding:8px 13px;font-size:12px}

    .logo-img{width:32px;height:32px}

    .logo-title{ font-size:18px }
    .logo-sub{ font-size:8.5px }

}

@media(max-width:520px){

    .container,
    .hero-content{
        width:calc(100% - 32px);
    }

    .section{
        padding:64px 0;
    }

    .page-hero{
        padding:100px 0 36px;
    }
    .page-hero h1{
        font-size:clamp(28px,9vw,40px);
    }

    .nav{height:64px}

    .logo-img{width:30px;height:30px}

    .logo-title{ font-size:16px }
    .logo-sub{ font-size:7.5px; letter-spacing:.18em }

    .hero{
        min-height:780px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .why-grid{ grid-template-columns:1fr; gap:22px }

    .hero-actions .btn{
        width:100%;
        min-height:44px;
    }

    .eyebrow{
        font-size:10.5px;
        letter-spacing:.1em;
        gap:9px;
    }
    .eyebrow::before{width:20px}

    .hero-why{
        margin-top:38px;
        padding-top:18px;
    }

    .contact-row{grid-template-columns:95px 1fr}

    .form{padding:23px}

}

/* REVEAL */

.reveal{
    opacity:0;
    transform:translate3d(0,18px,0);
    transition:
        opacity .7s cubic-bezier(.16,1,.3,1),
        transform .7s cubic-bezier(.16,1,.3,1);
    will-change:opacity,transform;
}

.reveal.visible{ opacity:1; transform:none }

/* İLETİŞİM HERO */

.contact-hero{
    position:relative;
    overflow:hidden;

    min-height:100svh;
    display:flex;
    align-items:center;

    padding:170px 0 100px;

    background:
        linear-gradient(
            90deg,
            rgba(7,8,9,.8) 0%,
            rgba(7,8,9,.62) 42%,
            rgba(7,8,9,.32) 72%,
            rgba(7,8,9,.52) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7,8,9,.78) 0%,
            transparent 48%
        ),
        url("images/iletisim-bg.webp") center/cover no-repeat;

    border-bottom:1px solid var(--line);
}

.contact-hero-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:60px;
    align-items:start;
}

.contact-hero-copy h1{
    margin-top:18px;
    max-width:560px;

    font-size:clamp(36px,4.6vw,54px);
    line-height:1.06;
}

.contact-hero-copy > p{
    margin-top:20px;
    max-width:520px;

    color:var(--text-soft);
    font-size:15px;
    line-height:1.75;
}

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

.contact-card{
    padding:20px 18px;

    background:rgba(13,15,16,.62);
    border:1px solid var(--line-strong);
    border-radius:var(--radius);
    backdrop-filter:blur(6px);
}

.contact-card-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:34px;
    height:34px;
    margin-bottom:14px;

    border:1px solid rgba(216,137,37,.4);
    border-radius:9px;

    color:var(--orange-light);
}
.contact-card-icon svg{ width:16px; height:16px }

.contact-card-title{
    font-family:"Manrope",sans-serif;
    font-weight:700;
    font-size:14.5px;
    margin-bottom:6px;
}

.contact-card-value{
    font-size:13px;
    color:#ddd;
    word-break:break-word;
}

.contact-card-sub{ margin-top:5px; color:var(--muted); font-size:11px }

/* MESAJ FORMU KARTI */

.contact-form-card{
    position:relative;
    z-index:2;

    padding:30px;

    background:rgba(11,13,14,.82);
    border:1px solid var(--line-strong);
    border-radius:var(--radius);
}

.contact-form-head{
    display:flex;
    gap:14px;
    align-items:flex-start;
    margin-bottom:26px;
}

.contact-form-icon{
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    width:38px;
    height:38px;

    border:1px solid rgba(216,137,37,.4);
    border-radius:10px;

    color:var(--orange-light);
}

.contact-form-icon svg{
    width:18px;
    height:18px;
}

.contact-form-head h3{
    font-family:"Manrope",sans-serif;
    font-size:18.5px;
    font-weight:800;
    margin-bottom:6px;
}
.contact-form-head p{
    color:var(--text-soft);
    font-size:12.8px;
    line-height:1.6;
}

.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}

.form-field{
    position:relative;
    margin-bottom:14px;
}

.field-icon{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);

    display:flex;
    color:var(--muted);
    pointer-events:none;
}
.field-icon svg{
    width:15px;
    height:15px;
}

.form-field input,
.form-field select{
    width:100%;
    padding:13px 14px 13px 40px;

    border:1px solid var(--line);
    border-radius:9px;

    background:#0c0e0f;
    color:white;
    font-size:13px;
    outline:none;
    appearance:none;
}
.form-field select{ cursor:pointer; color:var(--text-soft) }
.form-field input:focus,
.form-field select:focus{
    border-color:rgba(216,137,37,.6);
}

.form-field-textarea textarea{
    width:100%;
    padding:13px 14px;

    border:1px solid var(--line);
    border-radius:9px;

    background:#0c0e0f;
    color:white;
    font-size:13px;
    outline:none;
    resize:vertical;
    min-height:100px;
}

.form-field-textarea textarea:focus{
    border-color:rgba(216,137,37,.6);
}

.char-count{
    position:absolute;
    right:13px;
    bottom:10px;

    color:var(--muted);
    font-size:11px;
}

.contact-form-submit{ width:100%; margin-top:16px; gap:9px }

.contact-form-submit svg{
    width:16px;
    height:16px;
}

@media(max-width:1000px){

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

    .contact-cards{grid-template-columns:repeat(2,1fr)}

}

@media(max-width:560px){

    .contact-hero{
        padding:135px 0 60px;
    }

    .form-row{grid-template-columns:1fr}

    .contact-cards{grid-template-columns:1fr}

}

/* HİZMETLER SAYFASI */

.sv-hero{
    position:relative;
    overflow:hidden;
    padding:150px 0 64px;
}
.sv-hero .container{ position:relative; z-index:1 }
.sv-hero h1{ margin-top:20px; font-size:clamp(36px,5vw,64px); line-height:1.04 }
.sv-hero h1 span{ color:var(--orange-light) }

.sv-hero-bottom{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:48px;
    align-items:start;
    margin-top:36px;
}

.sv-hero-bottom p{
    max-width:500px;
    font-size:15px;
    line-height:1.75;
}

.sv-chips{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:10px}

.sv-chips .pill{ padding:9px 16px; font-size:13px }

.sv-main{
    padding:16px 0 110px;
}

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

.sv-card:nth-child(1){ grid-column:span 7; }

.sv-card:nth-child(2){ grid-column:span 5; }

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

.sv-card:nth-child(5),
.sv-card:nth-child(6){ grid-column:span 6; }
.sv-card{
    position:relative;
    isolation:isolate;
    display:flex;
    min-height:430px;
    overflow:hidden;
    scroll-margin-top:110px;

    background:var(--surface);
    border-radius:22px;
}

.sv-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;

    border:1px solid var(--line);
    border-radius:inherit;

    transition:border-color .3s ease;
}

.sv-card:hover::before{
    border-color:rgba(217,138,40,.45);
}
.sv-card::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;

    background:linear-gradient(
        to top,
        rgba(9,10,11,.9) 0%,
        rgba(9,10,11,.72) 24%,
        rgba(9,10,11,.3) 48%,
        rgba(9,10,11,0) 72%
    );
}

.sv-card-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform .9s cubic-bezier(.22,.75,.28,1);
}

.sv-card:hover .sv-card-img{ transform:scale(1.05) }

.sv-card-body{
    position:relative;
    z-index:2;

    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:40px;

    padding:28px;
}

.sv-card-top{display:flex;align-items:flex-start;justify-content:space-between}

.sv-card-number{
    display:inline-flex;
    align-items:center;
    height:32px;
    padding:0 14px;

    background:rgba(9,10,11,.5);
    border:1px solid var(--line-strong);
    border-radius:999px;

    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);

    color:var(--orange-light);
    font-size:12px;
    font-weight:700;
    letter-spacing:.12em;
}

.sv-card-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;

    background:rgba(9,10,11,.5);
    border:1px solid rgba(217,138,40,.35);
    border-radius:14px;

    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);

    color:var(--orange-light);
}
.sv-card-icon svg{
    width:24px;
    height:24px;
}

.sv-card-bottom h3{
    font-size:clamp(24px,2.3vw,32px);
    line-height:1.1;
    text-shadow:0 2px 16px rgba(0,0,0,.55);
}

.sv-card-subtitle{
    margin-top:8px;
    color:var(--orange-light);
    font-size:14px;
    font-weight:600;
    text-shadow:0 1px 12px rgba(0,0,0,.6);
}

.sv-card-desc{
    max-width:480px;
    margin-top:14px;
    color:rgba(243,242,238,.88);
    font-size:14.5px;
    line-height:1.65;
    text-shadow:0 1px 12px rgba(0,0,0,.6);
}

.sv-process{padding:110px 0 100px;border-top:1px solid var(--line)}

.sv-process-head{ max-width:640px }

.sv-process-head h2{
    margin-top:18px;
}

.sv-process-head h2 span{
    color:var(--orange-light);
}
.sv-process-head p{
    margin-top:16px;
    font-size:15px;
    line-height:1.75;
}

.sv-steps{
    position:relative;
    list-style:none;

    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:32px;
    margin-top:64px;
}

.sv-steps::before{
    content:"";
    position:absolute;
    top:32px;
    left:32px;
    right:calc((100% - 96px) / 4 - 32px);
    height:1px;

    background:linear-gradient(
        90deg,
        var(--orange),
        rgba(217,138,40,.15)
    );
}

.sv-step-node{
    position:relative;
    z-index:1;

    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;

    background:var(--bg);
    border:1px solid rgba(217,138,40,.45);
    border-radius:50%;
    box-shadow:0 0 0 8px var(--bg);

    color:var(--orange-light);
}
.sv-step-node svg{ width:26px; height:26px }

.sv-step-number{
    display:block;
    margin-top:26px;

    color:var(--orange-light);
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
}

.sv-step h4{margin-top:8px;font-size:20px;line-height:1.2}

.sv-step p{margin-top:10px;font-size:14.5px;line-height:1.7}

@media(max-width:1000px){

    .sv-hero-bottom{
        grid-template-columns:1fr;
        gap:26px;
    }

    .sv-chips{justify-content:flex-start}

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

    .sv-card:nth-child(n){grid-column:auto}

    .sv-steps{
        grid-template-columns:1fr;
        gap:0;
        margin-top:44px;
    }

    .sv-steps::before{ display:none }

    .sv-step{
        position:relative;
        display:grid;
        grid-template-columns:64px minmax(0,1fr);
        column-gap:22px;
        padding-bottom:36px;
    }

    .sv-step:not(:last-child)::after{
        content:"";
        position:absolute;
        top:64px;
        bottom:0;
        left:32px;
        width:1px;
        background:rgba(217,138,40,.4);
    }

    .sv-step:last-child{
        padding-bottom:0;
    }

    .sv-step-node{
        grid-row:1 / span 3;
    }

    .sv-step-number{margin-top:6px}

}

.form-field input,
.form-field select,
.form-field-textarea textarea{
    transition:border-color .25s ease, background-color .25s ease;
}

/* KVKK */

.footer-legal{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:6px 18px;
}

.footer-legal a{ transition:color .2s ease }
.footer-legal a:hover{color:var(--text-soft)}

.form-kvkk{
    margin-top:8px;

    color:var(--muted);
    font-size:11.5px;
    line-height:1.6;
    text-align:center;
}

.form-kvkk a{
    color:var(--text-soft);
    text-decoration:underline;
    text-underline-offset:2px;
}

.legal-hero{padding:150px 0 40px}

.legal-hero h1{margin-top:16px;font-size:clamp(30px,5vw,52px);line-height:1.06}

.legal-hero p{max-width:640px;margin-top:16px;font-size:15px;line-height:1.75}

.legal-main{
    padding:0 0 100px;
}

.legal-card{
    max-width:860px;
    padding:44px 48px;

    background:linear-gradient(
        145deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.012)
    );
    border:1px solid var(--line);
    border-radius:22px;
}

.legal-section + .legal-section{
    margin-top:30px;
    padding-top:30px;
    border-top:1px solid var(--line);
}

.legal-card h2{font-size:20px;line-height:1.25}

.legal-card p,
.legal-card li{
    font-size:14.5px;
    line-height:1.8;
    color:var(--text-soft);
}

.legal-card p{ margin-top:12px }

.legal-card ul{
    margin-top:12px;
    padding-left:20px;
}

.legal-card li + li{
    margin-top:6px;
}
.legal-card strong{ color:var(--text); font-weight:600 }

.legal-card a{
    color:var(--orange-light);
    text-decoration:underline;
    text-underline-offset:3px;
}

.legal-meta{
    margin-top:30px !important;
    color:var(--muted) !important;
    font-size:12.5px !important;
}

/* telefon */

@media(max-width:700px){

    /* genel */

    .container,
    .hero-content{
        width:calc(100% - 40px);
    }

    .section{
        padding:60px 0;
    }

    h2{font-size:26px;line-height:1.12}

    .eyebrow{
        gap:10px;
        font-size:10.5px;
        letter-spacing:.12em;
    }
    .eyebrow::before{width:22px}

    .btn{ min-height:46px; padding:0 16px; font-size:13px; border-radius:9px }

    .breadcrumb{
        margin-bottom:16px;
        font-size:11.5px;
    }

    /* hero */

    .hero{
        min-height:0;
        padding:108px 0 34px;
    }

    .hero h1{
        margin-top:16px;
        font-size:clamp(33px,9.6vw,40px);
        line-height:1.04;
    }

    .hero-description{
        max-width:none;
        margin-top:16px;
        font-size:15px;
        line-height:1.65;
    }

    .hero-actions{
        flex-direction:row;
        gap:10px;
        margin-top:24px;
    }
    .hero-actions .btn{
        flex:1 1 0;
        width:auto;
        min-width:0;
        padding:0 10px;
        min-height:46px;
        white-space:nowrap;
    }

    .hero-why{
        margin-top:30px;
        padding-top:20px;
    }

    .why-grid{ grid-template-columns:1fr 1fr; gap:18px 14px; margin-top:16px !important }

    .why-item{ flex-direction:column; gap:8px }

    .why-icon{
        width:28px;
        height:28px;
    }

    .why-item h3{
        font-size:14px;
    }

    .why-item p{ margin-top:3px; font-size:12.5px; line-height:1.5 }

    /* tanıtım, rakamlar */

    .about-grid{
        gap:26px;
    }

    .about-copy h2{
        margin-top:14px;
    }

    .about-copy p{
        margin-top:14px;
        font-size:14.5px;
        line-height:1.7;
    }

    /* Hakkımızda metni: mobilde kısaltılmış, "Devamını Oku" ile açılır */
    .about-copy-text{
        position:relative;
        max-height:112px;
        overflow:hidden;
        transition:max-height .35s ease;
    }

    .about-copy-text::after{
        content:"";
        position:absolute;
        left:0; right:0; bottom:0;
        height:44px;
        background:linear-gradient(to bottom, transparent, var(--bg));
        pointer-events:none;
        transition:opacity .25s ease;
    }

    .about-toggle-checkbox:checked ~ .about-copy-text{
        max-height:600px;
    }

    .about-toggle-checkbox:checked ~ .about-copy-text::after{
        opacity:0;
    }

    .about-toggle-label{
        display:inline-flex;
        align-items:center;
        gap:5px;
        margin-top:14px;
        font-family:"DM Sans",sans-serif;
        font-size:13px;
        font-weight:600;
        color:var(--orange-light);
        cursor:pointer;
        -webkit-tap-highlight-color:transparent;
    }

    .about-toggle-arrow{
        transition:transform .3s ease;
        flex-shrink:0;
    }

    .about-toggle-label .show-less{ display:none }

    .about-toggle-checkbox:checked ~ .about-toggle-label .show-more{ display:none }
    .about-toggle-checkbox:checked ~ .about-toggle-label .show-less{ display:inline }
    .about-toggle-checkbox:checked ~ .about-toggle-label .about-toggle-arrow{ transform:rotate(180deg) }

    /* 4 ikon kartı: mobilde de tek satırda yan yana */
    .about-stats{
        grid-template-columns:repeat(4,1fr);
        gap:6px;
    }

    .about-stat{
        padding:10px 6px 12px;
        border-radius:12px;
        align-items:center;
        text-align:center;
    }

    .about-stat-icon{
        width:28px;
        height:28px;
        border-radius:9px;
    }
    .about-stat-icon svg{width:16px;height:16px}

    .about-stat strong{
        margin-top:8px;
        font-size:15px;
    }

    .about-stat p{
        margin-top:2px;
        font-size:9.5px;
        line-height:1.25;
    }

    /* bölgeler */

    .regions-compact-section{ padding:56px 0 }

    .regions-compact{ gap:22px }

    .regions-heading{margin-top:14px;font-size:24px}

    .region-pills{ gap:7px; margin-top:18px }

    .pill{
        gap:7px;
        padding:7px 12px;
        font-size:12px;
    }
    .pill::before{ width:5px; height:5px }

    .region-map-small{
        border-radius:16px;
    }

    .map-badge{
        left:10px;
        bottom:10px;
        padding:6px 11px;
        font-size:11px;
    }

    /* cta */

    .cta-full{
        padding:52px 0;
    }

    .cta h2{margin-top:14px;font-size:26px}
    .cta p{
        margin-top:10px;
        font-size:14px;
    }

    .cta-actions{ flex-direction:row; flex-wrap:wrap; gap:10px; margin-top:22px }

    .cta-actions .btn{
        flex:1 1 calc(50% - 5px);
        width:auto;
        min-width:0;
        margin-top:0;
        padding:0 10px;
        white-space:nowrap;
    }

    .cta-actions .btn-primary{flex-basis:100%}

    /* footer */

    footer{
        padding:44px 0 22px;
    }

    .footer-top{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
        padding-bottom:26px;
    }

    .footer-logo-img{width:34px;height:34px}

    .footer-logo-title{ font-size:20px }
    .footer-logo-sub{ font-size:8.5px }

    .footer-description{
        margin-top:12px;
        font-size:14px;
        line-height:1.6;
    }

    .footer-social{width:40px;height:40px;border-radius:11px}

    .footer-social svg{
        width:18px;
        height:18px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:6px;
        padding-top:18px;
        font-size:12px;
    }

    /* hizmetler */

    .sv-hero{
        padding:108px 0 24px;
    }
    .sv-hero h1{ margin-top:14px; font-size:clamp(28px,8.4vw,34px); line-height:1.08 }

    .sv-hero-bottom{
        gap:16px;
        margin-top:18px;
    }

    .sv-hero-bottom p{
        font-size:14.5px;
        line-height:1.65;
    }

    .sv-chips{
        flex-wrap:nowrap;
        gap:8px;
        margin:0 -20px;
        padding:2px 20px 4px;
        overflow-x:auto;
        scrollbar-width:none;
        -webkit-overflow-scrolling:touch;
    }
    .sv-chips::-webkit-scrollbar{
        display:none;
    }

    .sv-chips .pill{ flex-shrink:0; padding:7px 13px; font-size:12px; white-space:nowrap }

    .sv-main{
        padding:10px 0 56px;
    }

    .sv-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .sv-card{display:block;min-height:0;border-radius:18px}
    .sv-card::after{display:none}

    .sv-card-img{
        position:relative;
        inset:auto;
        display:block;
        width:100%;
        height:190px;
    }

    .sv-card-body{ position:static; display:block; padding:0 }

    .sv-card-top{
        position:absolute;
        top:12px;
        left:12px;
        right:12px;
        z-index:2;
    }

    .sv-card-number{
        height:28px;
        padding:0 11px;
        font-size:11px;
    }

    .sv-card-icon{
        width:40px;
        height:40px;
        border-radius:12px;
    }
    .sv-card-icon svg{
        width:20px;
        height:20px;
    }

    .sv-card-bottom{padding:16px 16px 18px}
    .sv-card-bottom h3{
        font-size:21px;
        text-shadow:none;
    }

    .sv-card-subtitle{
        margin-top:5px;
        font-size:13px;
        text-shadow:none;
    }

    .sv-card-desc{
        max-width:none;
        margin-top:10px;
        color:var(--text-soft);
        font-size:13.5px;
        line-height:1.6;
        text-shadow:none;
    }

    .sv-process{padding:52px 0 56px}

    .sv-process-head h2{
        margin-top:14px;
    }
    .sv-process-head p{
        margin-top:10px;
        font-size:14px;
        line-height:1.65;
    }

    .sv-steps{
        margin-top:28px;
    }

    .sv-step{grid-template-columns:44px minmax(0,1fr);column-gap:16px;padding-bottom:22px}

    .sv-step-node{
        width:44px;
        height:44px;
        box-shadow:0 0 0 6px var(--bg);
    }
    .sv-step-node svg{ width:20px; height:20px }

    .sv-step:not(:last-child)::after{ top:44px; left:22px }

    .sv-step-number{margin-top:0}

    .sv-step h4{margin-top:4px;font-size:16.5px}

    .sv-step p{margin-top:6px;font-size:13.5px;line-height:1.6}

    /* iletişim */

    .contact-hero{
        display:block;
        min-height:0;
        padding:104px 0 44px;
    }

    .contact-hero-grid{
        gap:26px;
    }

    .contact-hero-copy h1{ margin-top:14px; font-size:clamp(28px,8.4vw,34px); line-height:1.08 }

    .contact-hero-copy > p{
        margin-top:14px;
        font-size:14.5px;
        line-height:1.65;
    }

    .contact-cards{gap:10px;margin-top:22px}

    .contact-card{
        display:grid;
        grid-template-columns:40px minmax(0,1fr);
        column-gap:14px;
        align-items:center;
        padding:12px 14px;
        border-radius:14px;
    }

    .contact-card-icon{ grid-row:1 / span 3; width:40px; height:40px; margin:0 }

    .contact-card-title,
    .contact-card-value,
    .contact-card-sub{
        grid-column:2;
    }
    .contact-card-title{
        margin:0;
        color:var(--muted);
        font-family:"DM Sans",sans-serif;
        font-size:10.5px;
        letter-spacing:.12em;
        text-transform:uppercase;
    }

    .contact-card-value{
        color:var(--text);
        font-size:14.5px;
        font-weight:600;
    }

    .contact-card-sub{ margin-top:1px; font-size:11.5px }

    .contact-form-card{
        padding:20px 18px;
        border-radius:16px;
    }

    .contact-form-head{
        gap:12px;
        margin-bottom:18px;
    }

    .contact-form-icon{width:34px;height:34px}

    .contact-form-head h3{ margin-bottom:4px; font-size:17px }
    .contact-form-head p{
        font-size:12.5px;
        line-height:1.55;
    }

    .form-row{grid-template-columns:1fr;row-gap:0}

    .form-field{
        margin-bottom:10px;
    }

    /* 16px olmazsa iphone zoom yapıyor */

    .form-field input,
    .form-field select{
        min-height:48px;
        padding:12px 14px 12px 40px;
        font-size:16px;
    }

    .form-field-textarea textarea{ min-height:110px; font-size:16px }

    .contact-form-submit{ min-height:48px; margin-top:10px }

    /* kvkk */

    .legal-hero{padding:104px 0 24px}

    .legal-hero h1{margin-top:14px;font-size:clamp(28px,8.4vw,34px)}

    .legal-hero p{margin-top:14px;font-size:14.5px;line-height:1.65}

    .legal-main{
        padding-bottom:56px;
    }

    .legal-card{
        padding:22px 18px;
        border-radius:16px;
    }

    .legal-section + .legal-section{margin-top:22px;padding-top:22px}

    .legal-card h2{font-size:17px}
    .legal-card p,
    .legal-card li{
        font-size:14px;
        line-height:1.7;
    }

    .legal-card ul{
        padding-left:18px;
    }

}

@media(max-width:380px){

    .hero h1{
        font-size:31px;
    }

    .sv-hero h1,
    .contact-hero-copy h1,
    .legal-hero h1{
        font-size:27px;
    }

    .cta-actions .btn{ flex-basis:100% }

    .why-grid{ gap:16px 10px }

    .about-stats{ gap:5px }

    .about-stat{ padding:8px 4px 10px }

    .about-stat-icon{ width:24px; height:24px; border-radius:8px }
    .about-stat-icon svg{ width:14px; height:14px }

    .about-stat strong{ font-size:13px; margin-top:6px }

    .about-stat p{ font-size:8.5px }

}

@media(prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        scroll-behavior:auto!important;
        animation:none!important;
        transition:none!important;
    }

    .reveal{
        opacity:1;
        transform:none;
    }

    body{
        animation:none!important;
        opacity:1!important;
        transform:none!important;
    }

}