/* =========================================================
   ARVESSA — Villa Yönetimi & Yaşam Hizmetleri
   ========================================================= */

:root{
  --navy-deep:   #0d1b2a;
  --navy:        #142c42;
  --navy-soft:   #1c3b57;
  --gold:        #c69a56;
  --gold-light:  #dcb877;
  --cream:       #f6f2ea;
  --cream-dark:  #ece4d4;
  --ink:         #16222e;
  --ink-soft:    #4a5a68;
  --white:       #ffffff;
  --line:        rgba(198,154,86,.35);

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 4px;
  --transition: .25s ease;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:600; margin:0; color:var(--ink); }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-bottom:12px;
}

.section-head{ margin-bottom:44px; }
.section-head.center{ text-align:center; margin-left:auto; margin-right:auto; max-width:640px; }
.section-title{ font-size:clamp(28px,3.4vw,40px); line-height:1.15; }
.section-desc{ margin-top:16px; color:var(--ink-soft); font-size:16px; max-width:520px; }
.section-head.center .section-desc{ margin-left:auto; margin-right:auto; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  border-radius:var(--radius);
  border:1px solid transparent;
  transition:var(--transition);
  white-space:nowrap;
}
.btn-gold{ background:var(--gold); color:var(--navy-deep); border-color:var(--gold); }
.btn-gold:hover{ background:var(--gold-light); border-color:var(--gold-light); }
.btn-outline-light{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.55); }
.btn-outline-light:hover{ background:rgba(255,255,255,.1); border-color:var(--white); }
.btn-outline-gold{ background:transparent; color:var(--gold); border-color:var(--gold); }
.btn-outline-gold:hover{ background:var(--gold); color:var(--navy-deep); }
.btn-sm{ padding:11px 20px; font-size:12px; }

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(13,27,42,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(198,154,86,.2);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 32px;
  max-width:var(--container); margin:0 auto;
}
.logo{ display:flex; flex-direction:column; align-items:flex-start; color:var(--white); }
.logo-mark{ display:flex; align-items:center; gap:8px; }
.logo-mark svg{ width:20px; height:20px; }
.logo-word{
  font-family:var(--font-display);
  font-size:24px; letter-spacing:.08em; font-weight:600; color:var(--white);
}
.logo-tag{
  font-size:9px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-light);
  margin-top:2px; margin-left:2px;
}
.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{
  font-size:13px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  color:var(--white); opacity:.85; transition:var(--transition); position:relative;
}
.nav-links a:hover{ opacity:1; color:var(--gold-light); }
.nav-links a.is-active{ opacity:1; color:var(--gold-light); }
.nav-cta{ display:flex; align-items:center; gap:20px; }
.nav-toggle{ display:none; background:none; border:none; padding:6px; }
.nav-toggle span,.nav-toggle::before,.nav-toggle::after{ content:""; display:block; width:24px; height:2px; background:var(--white); margin:5px 0; transition:var(--transition); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:640px;
  display:flex; align-items:center;
  color:var(--white);
  background:
    linear-gradient(100deg, rgba(10,20,32,.92) 0%, rgba(10,20,32,.55) 42%, rgba(10,20,32,.22) 68%),
    url('../images/hero.jpg') center/cover no-repeat;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(0deg, rgba(10,18,28,.55), transparent 35%);
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:2; max-width:640px; padding:80px 0; }
.hero-eyebrow{
  font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-light); font-weight:700; margin-bottom:20px;
}
.hero h1{ font-size:clamp(38px,5.4vw,58px); line-height:1.08; color:var(--white); }
.hero p.lead{ margin-top:22px; font-size:17px; color:rgba(255,255,255,.82); max-width:460px; line-height:1.7; }
.hero-actions{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; }

/* ---------- Feature strip ---------- */
.feature-strip{ background:var(--navy-deep); padding:56px 0; }
.feature-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:32px;
}
.feature-item{ text-align:center; padding:0 12px; }
.feature-icon{
  width:56px; height:56px; margin:0 auto 18px; border:1px solid var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.feature-icon svg{ width:24px; height:24px; stroke:var(--gold); }
.feature-item h3{
  color:var(--white); font-size:14px; letter-spacing:.06em; text-transform:uppercase; font-family:var(--font-body); font-weight:700; margin-bottom:10px;
}
.feature-item p{ color:rgba(255,255,255,.62); font-size:14px; line-height:1.65; }

/* ---------- Services ---------- */
.services{ padding:100px 0; background:var(--cream); }
.services-top{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:48px; flex-wrap:wrap; }
.services-copy .section-title{ max-width:420px; }
.services-copy .section-desc{ max-width:440px; }

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.service-grid .row-2{ grid-column:1 / -1; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

.service-card{
  position:relative;
  display:block;
  text-decoration:none;
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:4/3;
  background:linear-gradient(155deg,#2c4258,#0d1b2a 70%);
  background-size:cover;
  background-position:center;
  isolation:isolate;
  transition:transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:0 16px 32px rgba(0,0,0,.28); }
.service-grid .row-2 .service-card{ aspect-ratio:1/1; }
.service-card.sc-villa{ background-image:url('../images/services/villa-hazirlik.jpg'); }
.service-card.sc-temizlik{ background-image:url('../images/services/detayli-temizlik.jpg'); }
.service-card.sc-havuz{ background-image:url('../images/services/havuz-hazirligi.jpg'); }
.service-card.sc-bahce{ background-image:url('../images/services/bahce-peyzaj.jpg'); }
.service-card.sc-tamirat{ background-image:url('../images/services/mini-tamiratlar.jpg'); }
.service-card.sc-tekstil{ background-image:url('../images/services/tekstil-hizmetleri.jpg'); }
.service-card.sc-ardiye{ background-image:url('../images/services/ardiye-organizasyonu.jpg'); }
.service-card::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(10,18,28,.86) 0%, rgba(10,18,28,.25) 55%, rgba(10,18,28,.08) 100%);
  z-index:1;
}
.service-card .texture{
  position:absolute; inset:0;
  background-image:radial-gradient(circle at 30% 20%, rgba(198,154,86,.18), transparent 55%);
}
.service-label{
  position:relative; z-index:2;
  display:flex; align-items:center; gap:12px;
  padding:18px;
  position:absolute; left:0; right:0; bottom:0;
}
.service-label .ic{
  width:34px; height:34px; flex:0 0 auto; border:1px solid var(--gold); border-radius:6px;
  display:flex; align-items:center; justify-content:center; background:rgba(13,27,42,.5);
}
.service-label .ic svg{ width:16px; height:16px; stroke:var(--gold); }
.service-label span{
  color:var(--white); font-size:13px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; line-height:1.3;
}

/* ---------- Process ---------- */
.process{ background:var(--navy-deep); padding:100px 0; color:var(--white); }
.process .section-head{ margin-bottom:64px; }
.process .eyebrow{ color:var(--gold-light); }
.process .section-title{ color:var(--white); }

.process-track{ position:relative; }
.process-track::before{
  content:"";
  position:absolute; top:29px; left:0; right:0; height:1px;
  background-image:linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 14px);
  background-size:14px 1px; background-repeat:repeat-x;
  opacity:.55;
}
.process-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:20px; position:relative; }
.process-step{ text-align:left; }
.step-num{
  width:58px; height:58px; border-radius:50%;
  background:radial-gradient(circle at 32% 28%, rgba(198,154,86,.22), var(--navy-soft) 72%);
  border:1px solid var(--gold);
  box-shadow:0 0 0 4px rgba(198,154,86,.08), 0 8px 18px rgba(0,0,0,.25);
  display:flex; align-items:center; justify-content:center; position:relative; z-index:2; margin-bottom:24px;
  transition:var(--transition);
}
.step-num svg{ width:23px; height:23px; stroke:var(--gold-light); }
.step-index{ font-size:11px; color:var(--gold-light); font-weight:700; letter-spacing:.08em; margin-bottom:6px; }
.process-step h3{ color:var(--white); font-size:16px; font-family:var(--font-body); font-weight:700; margin-bottom:8px; line-height:1.3; }
.process-step p{ color:rgba(255,255,255,.6); font-size:13.5px; line-height:1.6; }

/* ---------- Before / After ---------- */
.compare{ padding:100px 0; background:var(--cream); }
.compare-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center; }
.compare-slider{
  position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:16/11;
  background:#111; user-select:none;
}
.compare-slider .img-before,.compare-slider .img-after{
  position:absolute; inset:0; background-size:cover; background-position:center;
}
.compare-slider .img-before{ background-image:url('../images/before.jpg'); }
.compare-slider .img-after{ background-image:url('../images/after.jpg'); }
.compare-slider .img-after{ clip-path:inset(0 0 0 50%); }
.compare-tag{ position:absolute; top:16px; z-index:3; font-size:11px; letter-spacing:.1em; font-weight:700; color:var(--white); background:rgba(13,27,42,.7); padding:6px 12px; border-radius:3px; text-transform:uppercase; }
.compare-tag.before{ left:16px; }
.compare-tag.after{ right:16px; }
.compare-handle{
  position:absolute; top:0; bottom:0; left:50%; width:2px; background:var(--white); z-index:4; cursor:ew-resize;
  transform:translateX(-1px);
}
.compare-handle::before{
  content:"⟷"; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:38px; height:38px; border-radius:50%; background:var(--white); color:var(--navy-deep);
  display:flex; align-items:center; justify-content:center; font-size:14px; box-shadow:0 4px 14px rgba(0,0,0,.25);
}

.compare-copy .section-head{ margin-bottom:26px; }
.compare-list{ display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }
.compare-list li{ display:flex; align-items:center; gap:12px; font-size:15px; color:var(--ink); }
.compare-list li svg{ width:18px; height:18px; stroke:var(--gold); flex:0 0 auto; }

/* ---------- Stats ---------- */
.stats{ background:var(--navy-deep); color:var(--white); padding:64px 0; }
.stats .eyebrow{ color:var(--gold-light); display:block; text-align:center; margin-bottom:36px; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat-num{ font-family:var(--font-display); font-size:44px; color:var(--gold-light); line-height:1; }
.stat-num sup{ font-size:16px; vertical-align:middle; }
.stat-label{ margin-top:12px; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.6); font-weight:600; }
.stat-desc{ margin-top:8px; font-size:13px; color:rgba(255,255,255,.5); line-height:1.6; max-width:220px; margin-left:auto; margin-right:auto; }

/* ---------- CTA ---------- */
.cta{
  position:relative; padding:90px 0; text-align:center; color:var(--white);
  background:
    linear-gradient(180deg, rgba(10,20,32,.87), rgba(10,20,32,.87)),
    url('../images/after.jpg') center 35%/cover no-repeat;
}
.cta h2{ font-size:clamp(28px,3.6vw,38px); color:var(--white); }
.cta p{ margin-top:14px; color:rgba(255,255,255,.75); font-size:16px; }
.cta-actions{ display:flex; gap:16px; justify-content:center; margin-top:32px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy-deep); color:rgba(255,255,255,.7); padding:72px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand .logo-word{ color:var(--white); }
.footer-brand p{ margin-top:16px; font-size:14px; line-height:1.7; max-width:260px; color:rgba(255,255,255,.55); }
.footer-col h4{ color:var(--white); font-size:13px; letter-spacing:.06em; text-transform:uppercase; font-family:var(--font-body); font-weight:700; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,.6); transition:var(--transition); }
.footer-col a:hover{ color:var(--gold-light); }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(255,255,255,.65); }
.footer-contact svg{ width:16px; height:16px; stroke:var(--gold); margin-top:2px; flex:0 0 auto; }
.footer-social{ display:flex; gap:12px; margin-top:20px; }
.footer-social a{ width:34px; height:34px; border:1px solid rgba(255,255,255,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:15px; height:15px; stroke:var(--white); }
.footer-social a:hover{ border-color:var(--gold); }
.footer-social a:hover svg{ stroke:var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:13px; color:rgba(255,255,255,.45); flex-wrap:wrap; gap:12px; }
.footer-bottom .legal{ display:flex; gap:20px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb{ background:var(--cream-dark); padding:14px 0; }
.breadcrumb ol{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:13px; color:var(--ink-soft); }
.breadcrumb a{ color:var(--ink-soft); transition:var(--transition); }
.breadcrumb a:hover{ color:var(--gold); }
.breadcrumb li{ display:flex; align-items:center; gap:8px; }
.breadcrumb li:not(:last-child)::after{ content:"/"; color:#c9bfa8; }
.breadcrumb li[aria-current]{ color:var(--ink); font-weight:600; }

/* ---------- Service detail page ---------- */
.service-hero{
  position:relative; min-height:340px; display:flex; align-items:flex-end;
  background-size:cover; background-position:center;
  color:var(--white);
}
.service-hero::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(10,18,28,.9) 0%, rgba(10,18,28,.35) 60%, rgba(10,18,28,.15) 100%);
}
.service-hero-inner{ position:relative; z-index:2; padding:56px 0; }
.service-hero .eyebrow{ color:var(--gold-light); }
.service-hero h1{ font-size:clamp(30px,4vw,44px); color:var(--white); max-width:640px; }
.service-hero p{ margin-top:14px; color:rgba(255,255,255,.82); max-width:560px; font-size:16px; line-height:1.7; }

.service-body{ padding:80px 0; background:var(--cream); }
.service-body-grid{ display:grid; grid-template-columns:1.6fr 1fr; gap:64px; align-items:start; }
.service-content h2{ font-size:26px; margin:36px 0 14px; }
.service-content h2:first-child{ margin-top:0; }
.service-content p{ color:var(--ink-soft); font-size:15.5px; line-height:1.85; margin-bottom:14px; }
.service-feature-list{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:20px 0 8px; }
.service-feature-list li{ display:flex; align-items:flex-start; gap:10px; font-size:14.5px; color:var(--ink); line-height:1.5; }
.service-feature-list li svg{ width:18px; height:18px; stroke:var(--gold); flex:0 0 auto; margin-top:2px; }

.service-sidebar{ position:sticky; top:96px; display:flex; flex-direction:column; gap:24px; }
.sidebar-card{ background:var(--white); border:1px solid var(--cream-dark); border-radius:6px; padding:28px; }
.sidebar-card h3{ font-size:18px; margin-bottom:8px; }
.sidebar-card p{ color:var(--ink-soft); font-size:14px; line-height:1.7; margin-bottom:18px; }
.sidebar-card .btn{ width:100%; margin-bottom:10px; }
.sidebar-contact{ display:flex; flex-direction:column; gap:12px; margin-top:16px; padding-top:16px; border-top:1px solid var(--cream-dark); }
.sidebar-contact a{ display:flex; align-items:center; gap:10px; font-size:14px; color:var(--ink); }
.sidebar-contact a svg{ width:16px; height:16px; stroke:var(--gold); }

.related-services{ background:var(--navy-deep); padding:72px 0; }
.related-services .section-head{ margin-bottom:36px; }
.related-services .eyebrow{ color:var(--gold-light); }
.related-services .section-title{ color:var(--white); font-size:26px; }
.related-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.related-card{
  display:block; text-decoration:none; position:relative; border-radius:4px; overflow:hidden; aspect-ratio:1/1;
  background-size:cover; background-position:center; transition:transform .25s ease;
}
.related-card:hover{ transform:translateY(-3px); }
.related-card::before{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(10,18,28,.88), rgba(10,18,28,.2) 60%); }
.related-card span{ position:absolute; left:14px; right:14px; bottom:12px; z-index:2; color:var(--white); font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.03em; line-height:1.3; }

/* ---------- Hizmetler hub page ---------- */
.hub-hero{ background:var(--navy-deep); color:var(--white); padding:64px 0 48px; text-align:center; }
.hub-hero .eyebrow{ color:var(--gold-light); }
.hub-hero h1{ color:var(--white); font-size:clamp(30px,4vw,42px); }
.hub-hero p{ margin:16px auto 0; max-width:560px; color:rgba(255,255,255,.75); font-size:16px; line-height:1.7; }
.hub-grid{ padding:72px 0; background:var(--cream); }
.hub-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.hub-card{
  display:block; text-decoration:none; background:var(--white); border-radius:6px; overflow:hidden;
  border:1px solid var(--cream-dark); transition:var(--transition);
}
.hub-card:hover{ transform:translateY(-4px); box-shadow:0 16px 32px rgba(0,0,0,.1); }
.hub-card-img{ aspect-ratio:4/3; background-size:cover; background-position:center; position:relative; }
.hub-card-img::before{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(10,18,28,.55), transparent 55%); }
.hub-card-body{ padding:20px 22px 24px; }
.hub-card-body h3{ font-size:17px; margin-bottom:8px; }
.hub-card-body p{ color:var(--ink-soft); font-size:13.5px; line-height:1.6; margin-bottom:14px; }
.hub-card-link{ font-size:12.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--gold); display:inline-flex; align-items:center; gap:6px; }


.form-toast{
  position:fixed; bottom:24px; right:24px; z-index:999;
  background:var(--navy-deep); color:var(--white); border-left:4px solid var(--gold);
  padding:16px 20px; border-radius:4px; font-size:14px; max-width:320px;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
  transform:translateY(20px); opacity:0; pointer-events:none; transition:.3s ease;
}
.form-toast.show{ transform:translateY(0); opacity:1; }

/* ---------- Modal (Ücretsiz Keşif form) ---------- */
.modal-overlay{
  position:fixed; inset:0; background:rgba(10,18,28,.72); z-index:200;
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal-box{
  background:var(--cream); border-radius:6px; width:100%; max-width:460px; padding:40px 36px;
  position:relative; transform:translateY(16px); transition:transform .25s ease;
}
.modal-overlay.open .modal-box{ transform:translateY(0); }
.modal-close{ position:absolute; top:16px; right:16px; background:none; border:none; font-size:20px; color:var(--ink-soft); line-height:1; padding:6px; }
.modal-box h3{ font-size:26px; margin-bottom:6px; }
.modal-box p.sub{ color:var(--ink-soft); font-size:14px; margin-bottom:24px; }
.form-field{ margin-bottom:16px; }
.form-field label{ display:block; font-size:12px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:8px; }
.form-field input,.form-field textarea{
  width:100%; padding:12px 14px; border:1px solid #d8cfba; border-radius:4px; background:var(--white);
  font-family:inherit; font-size:14px; color:var(--ink); resize:vertical;
}
.form-field input:focus,.form-field textarea:focus{ border-color:var(--gold); outline:none; }
.form-submit{ width:100%; margin-top:8px; }
.form-note{ font-size:12px; color:var(--ink-soft); margin-top:12px; text-align:center; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .service-grid .row-2{ display:contents; }
  .service-grid .service-card{ aspect-ratio:1/1; }
  .process-grid{ grid-template-columns:repeat(3,1fr); row-gap:40px; }
  .process-track::before{ display:none; }
  .compare-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .service-body-grid{ grid-template-columns:1fr; gap:40px; }
  .service-sidebar{ position:static; }
  .related-grid{ grid-template-columns:repeat(2,1fr); }
  .hub-cards{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:860px){
  .nav-links{
    position:fixed; top:69px; left:0; right:0; bottom:0; background:var(--navy-deep);
    flex-direction:column; align-items:flex-start; padding:32px; gap:0;
    transform:translateX(-100%); transition:transform .3s ease; overflow-y:auto;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ width:100%; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.08); opacity:1; }
  .nav-cta .btn-outline-gold{ display:none; }
  .nav-toggle{ display:block; }
  .feature-grid{ grid-template-columns:repeat(2,1fr); gap:28px; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:36px; }
  .services-top{ flex-direction:column; align-items:flex-start; }
}

@media (max-width:640px){
  .container{ padding:0 20px; }
  .hero{ min-height:auto; padding-top:20px; }
  .hero-inner{ padding:52px 0 60px; }
  .hero-actions .btn,.cta-actions .btn{ width:100%; }
  .hero-actions,.cta-actions{ flex-direction:column; }
  .feature-grid{ grid-template-columns:repeat(2,1fr); gap:20px; }
  .service-grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
  .service-grid .row-2{ display:contents; }
  .process-grid{ grid-template-columns:1fr; gap:28px; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .services,.process,.compare{ padding:64px 0; }
  .service-feature-list{ grid-template-columns:1fr; }
  .related-grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .hub-cards{ grid-template-columns:1fr; }
  .service-body{ padding:56px 0; }
  .related-services{ padding:56px 0; }
  .hub-hero{ padding:48px 0 36px; }
  .hub-grid{ padding:48px 0; }
}
