/* =========================================================
   BOYACINIZ GELSİN — Dark Edition
   Display: Bricolage Grotesque · Body: Hanken Grotesk · Data: JetBrains Mono
   Signature: paint fan-deck swatch strip
   ========================================================= */

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

:root {
  /* warm stone background system (lifted, less heavy) */
  --bg:      #211E18;
  --bg-2:    #2A2620;
  --bg-3:    #332E26;
  --line:    #403A30;
  --line-2:  #524A3C;

  /* warm chalk text */
  --text:    #F6F0E4;
  --muted:   #B6AB97;
  --faint:   #837A69;

  /* primary accent — raw ochre */
  --amber:   #E0A43B;
  --amber-2: #F2C065;

  /* whatsapp brand */
  --wa:      #25D366;
  --wa-2:    #1FB457;

  /* fan-deck chip palette */
  --c-terra: #C45A3B;
  --c-ochre: #D99A3E;
  --c-olive: #7C8F5A;
  --c-teal:  #4E7A86;
  --c-plum:  #6B5B8A;
  --c-brick: #B5503F;

  --r:   16px;
  --r-s: 10px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* solid warm ink — no gradient */

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

.section { padding: 110px 0; position: relative; z-index: 1; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: var(--amber); opacity: .6;
}

.display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.02;
  color: var(--text);
}

.h-section {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -.02em;
  line-height: 1.05;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 52ch;
}

.section-head { max-width: 640px; margin-bottom: 60px; }
.section-head .lead { margin-top: 16px; }
.section-head-row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600; font-size: 1rem;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: #06210F; }
.btn-wa:hover { background: var(--wa-2); }

.btn-amber { background: var(--amber); color: #2A1C03; }
.btn-amber:hover { background: var(--amber-2); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(16,14,11,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; border-radius: 9px; overflow: hidden; }
.brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em;
  line-height: 1; color: var(--text);
}
.brand-name small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400; font-size: .58rem; letter-spacing: .22em;
  color: var(--faint); margin-top: 4px; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--muted);
  transition: color .2s; position: relative;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-search {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-2);
  color: var(--muted); cursor: pointer;
  transition: color .2s, border-color .2s, transform .2s;
}
.nav-search svg { width: 18px; height: 18px; }
.nav-search:hover { color: var(--amber); border-color: var(--amber); transform: translateY(-1px); }
.nav-call {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-2);
  color: var(--muted); cursor: pointer;
  transition: color .2s, border-color .2s, transform .2s;
}
.nav-call svg { width: 18px; height: 18px; }
.nav-call:hover { color: var(--amber); border-color: var(--amber); transform: translateY(-1px); }

.nav-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: #06210F;
  font-weight: 600; font-size: .9rem;
  padding: 10px 18px; border-radius: 100px;
  transition: background .2s, transform .2s;
}
.nav-wa svg { width: 17px; height: 17px; }
.nav-wa:hover { background: var(--wa-2); transform: translateY(-1px); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: var(--bg-2); border: 1px solid var(--line);
  margin: 12px 28px 0; border-radius: var(--r); padding: 14px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: var(--r-s);
  font-weight: 500; color: var(--muted); transition: .15s;
}
.mobile-menu a:hover { background: var(--bg-3); color: var(--text); }
.mobile-menu .nav-wa { justify-content: center; margin-top: 6px; }

.mobile-search-item {
  display: flex; align-items: center; gap: 10px;
  background: none; border: 1px solid var(--line-2);
  padding: 12px 16px; border-radius: var(--r-s);
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500; font-size: .95rem; color: var(--muted);
  cursor: pointer; width: 100%; text-align: left;
  transition: .15s;
}
.mobile-search-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.mobile-search-item:hover { background: var(--bg-3); color: var(--amber); border-color: var(--amber); }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: 168px 0 90px; position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6.2vw, 5rem);
  letter-spacing: -.035em; line-height: .98;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic; font-weight: 700;
  color: var(--amber);
}
.hero .lead { margin-bottom: 34px; font-size: 1.13rem; }

/* search */
.search { position: relative; max-width: 520px; margin-bottom: 26px; }
.search-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 7px 7px 7px 22px;
  transition: border-color .25s, box-shadow .25s;
}
.search-bar:focus-within {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(224,164,59,.12);
}
.search-bar > svg { width: 20px; height: 20px; color: var(--faint); flex-shrink: 0; }
.search-input {
  flex: 1; background: none; border: none; outline: none;
  font-family: 'Hanken Grotesk', sans-serif; font-size: 1rem; color: var(--text);
}
.search-input::placeholder { color: var(--faint); }
.search-go {
  background: var(--amber); color: #2A1C03;
  border: none; border-radius: 100px;
  padding: 11px 22px; font-family: 'Hanken Grotesk',sans-serif;
  font-weight: 600; font-size: .92rem; cursor: pointer;
  transition: background .2s; white-space: nowrap;
}
.search-go:hover { background: var(--amber-2); }

.search-results {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--r); overflow: hidden; z-index: 40;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  display: none;
}
.search-results.open { display: block; }
.sr-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px; cursor: pointer; transition: background .15s;
  border-bottom: 1px solid var(--line);
}
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: var(--bg-3); }
.sr-name { font-size: .95rem; font-weight: 500; }
.sr-price { font-family: 'JetBrains Mono', monospace; font-size: .9rem; color: var(--amber); }
.sr-empty { padding: 18px 20px; color: var(--muted); font-size: .9rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

/* fan-deck swatch strip — the signature */
.fandeck { display: flex; gap: 8px; }
.chip {
  flex: 1; height: 88px; border-radius: var(--r-s);
  background: var(--c);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 10px;
  transition: transform .3s var(--ease), flex .35s var(--ease);
  cursor: default;
}
.chip:hover { transform: translateY(-8px); }
.chip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .58rem; letter-spacing: .04em;
  color: rgba(0,0,0,.62); font-weight: 500;
  line-height: 1.3;
}
.chip-label strong { display: block; font-weight: 700; font-size: .68rem; color: rgba(0,0,0,.82); }

/* hero media */
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
  aspect-ratio: 4 / 5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.media-chip {
  position: absolute; left: -22px; bottom: 36px;
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}
.media-chip .dot { width: 38px; height: 38px; border-radius: 10px; background: var(--amber); flex-shrink: 0; }
.media-chip .mc-label { font-family:'JetBrains Mono',monospace; font-size:.62rem; letter-spacing:.14em; color: var(--faint); text-transform: uppercase; }
.media-chip .mc-val { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:1.05rem; }

/* =========================================================
   TRUST BAND
   ========================================================= */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust .wrap {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px;
  padding-top: 26px; padding-bottom: 26px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; }
.trust-num { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:1.15rem; line-height:1; }
.trust-lbl { font-size: .82rem; color: var(--muted); }

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.svc {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 30px;
  display: flex; gap: 22px; align-items: flex-start;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.svc:hover { border-color: var(--line-2); transform: translateY(-4px); background: var(--bg-3); }
.svc-ic {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 13px; border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); background: rgba(224,164,59,.06);
}
.svc-ic svg { width: 24px; height: 24px; }
.svc h3 { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:1.18rem; margin-bottom: 7px; }
.svc p { color: var(--muted); font-size: .94rem; margin-bottom: 14px; }
.svc-price {
  font-family:'JetBrains Mono',monospace; font-size:.8rem;
  color: var(--amber); letter-spacing: .03em;
  border: 1px solid var(--line-2); border-radius: 100px;
  padding: 5px 13px; display: inline-block;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery .section-head { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 30px; flex-wrap: wrap; }
.gallery .section-head > div { max-width: 600px; }

.gal-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px; gap: 14px;
}
.gal-item {
  position: relative; overflow: hidden; border-radius: 14px;
  border: 1px solid var(--line);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family:'JetBrains Mono',monospace; font-size:.72rem;
  letter-spacing:.04em; color: var(--text);
  background: rgba(20,17,13,.7);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 8px 12px; border-radius: 9px;
}
.gal-cap span { display: block; color: var(--amber); font-size: .62rem; letter-spacing:.1em; text-transform: uppercase; margin-top: 3px; }

/* span helpers */
.gi-a { grid-column: span 2; grid-row: span 2; }
.gi-b { grid-column: span 2; }
.gi-c { grid-column: span 2; }
.gi-d { grid-column: span 2; }
.gi-e { grid-column: span 2; }
.gi-f { grid-column: span 2; }

/* =========================================================
   PRICES
   ========================================================= */
.prices {
  background: var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  /* bölüme özel yeşil vurgu — amber yerine zümrüt */
  --amber: #4FB07A;
  --amber-2: #67C390;
}
.prices .pr-amt { color: var(--amber); }
.prices .pr-amt span { color: var(--muted); }
.price-shell {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start;
}

.toggle {
  display: inline-flex; background: var(--bg); border: 1px solid var(--line-2);
  border-radius: 100px; padding: 5px; margin-top: 28px; gap: 4px;
}
.toggle button {
  font-family:'Hanken Grotesk',sans-serif; font-weight:600; font-size:.88rem;
  padding: 10px 20px; border: none; border-radius: 100px;
  background: transparent; color: var(--muted); cursor: pointer; transition: .25s;
}
.toggle button.active { background: var(--amber); color: #2A1C03; }

.price-note { margin-top: 24px; color: var(--muted); font-size: .9rem; max-width: 36ch; }
.price-note a { color: var(--amber); font-weight: 600; }
.price-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.price-cta-icon { display: none; }
.price-cta-icon { width: 50px; height: 50px; padding: 0; justify-content: center; border-radius: 50%; }
.price-cta-icon svg { width: 20px; height: 20px; }

.price-filter {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: var(--r) var(--r) 0 0;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
}
.price-filter svg { width: 16px; height: 16px; color: var(--faint); flex-shrink: 0; }
.price-filter input {
  flex: 1; background: none; border: none; outline: none;
  font-family: 'Hanken Grotesk', sans-serif; font-size: .92rem; color: var(--text);
}
.price-filter input::placeholder { color: var(--faint); }
.price-filter:focus-within { border-color: var(--amber); }

.price-table { border: 1px solid var(--line-2); border-top: none; border-radius: 0 0 var(--r) var(--r); overflow: hidden; background: var(--bg); }
.price-row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px;
  padding: 22px 26px; border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg-3); }
.pr-type { font-family:'JetBrains Mono',monospace; font-size: 1.1rem; color: var(--amber); font-weight: 500; }
.pr-desc { color: var(--muted); font-size: .92rem; }
.pr-amt { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size: 1.5rem; white-space: nowrap; }
.pr-amt span { font-size: .85rem; color: var(--muted); font-family:'Hanken Grotesk',sans-serif; font-weight:500; }
.price-row.extra { background: rgba(79,176,122,.09); }
.price-row.extra .pr-type { color: var(--amber); }

/* =========================================================
   PROCESS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  border-top: 2px solid var(--line-2); padding-top: 26px;
  transition: border-color .3s;
}
.step:hover { border-top-color: var(--amber); }
.step-no {
  font-family:'JetBrains Mono',monospace; font-size:.8rem;
  color: var(--amber); letter-spacing:.1em; margin-bottom: 16px;
}
.step h3 { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:1.35rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px;
  display: flex; flex-direction: column;
}
.testi .stars { color: var(--amber); letter-spacing: 3px; font-size: .85rem; margin-bottom: 16px; }
.testi p { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 22px; flex: 1; }
.testi-by { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:.9rem;
  color: #1a1206; background: var(--amber);
}
.testi-name { font-weight: 600; font-size: .92rem; }
.testi-loc { font-family:'JetBrains Mono',monospace; font-size: .68rem; color: var(--faint); letter-spacing: .06em; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact .panel {
  position: relative; overflow: hidden;
  border-radius: 26px; border: 1px solid var(--line-2);
  padding: 70px 56px;
  background: var(--bg-3);
}
.contact-inner { position: relative; z-index: 2; max-width: 620px; }
.contact h2 { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size: clamp(2rem,4.4vw,3.2rem); letter-spacing:-.02em; line-height:1.04; margin-bottom: 18px; }
.contact .lead { margin-bottom: 34px; }
.contact-meta { display: flex; flex-wrap: wrap; gap: 36px; margin-bottom: 36px; }
.cm-label { font-family:'JetBrains Mono',monospace; font-size:.66rem; letter-spacing:.16em; color: var(--faint); text-transform: uppercase; margin-bottom: 6px; }
.cm-val { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size: 1.2rem; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 64px 0 36px; }
.foot-deck { display: flex; height: 6px; border-radius: 4px; overflow: hidden; margin-bottom: 48px; }
.foot-deck span { flex: 1; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-tag { color: var(--muted); font-size: .92rem; max-width: 30ch; margin-top: 16px; }
.foot-col h4 { font-family:'JetBrains Mono',monospace; font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color: var(--faint); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.foot-col a:hover { color: var(--amber); }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--faint); font-size: .82rem;
}
.foot-bottom .brand-name { font-size: 1rem; }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.float-wa {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0;
  background: var(--wa); color: #06210F;
  border-radius: 100px; padding: 0;
  width: 60px; height: 60px;
  justify-content: center; overflow: hidden;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: width .35s var(--ease), background .25s;
}
.float-wa svg { width: 28px; height: 28px; flex-shrink: 0; }
.float-wa span {
  font-weight: 700; font-size: .92rem; white-space: nowrap;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: max-width .35s var(--ease), opacity .25s, margin .35s var(--ease);
}
.float-wa:hover { width: auto; padding: 0 22px 0 18px; background: var(--wa-2); }
.float-wa:hover span { max-width: 160px; opacity: 1; margin-left: 10px; }
.float-wa::after {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .nav-wa { display: none; }
  .nav-cta .nav-call { display: inline-flex; }
  .burger { display: flex; }
  .price-cta-full { display: none; }
  .price-cta-icon { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .price-shell { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gi-a, .gi-b, .gi-c, .gi-d, .gi-e, .gi-f { grid-column: span 1; grid-row: span 1; }
  .gi-a { grid-column: span 2; grid-row: span 1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 70px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .search-go { padding: 11px 16px; }
  .chip { height: 64px; }
  .chip-label { display: none; }
  .media-chip { left: 12px; }
  .contact .panel { padding: 44px 26px; }
  .foot-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr auto; }
  .pr-desc { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
