/* ============================================================
   YILDIRIM BİLİŞİM — Modern (2026)
   Temiz & ferah · cesur tipografi · sıcak/güven veren.
   Yeşil-lime palet. Güvenlik & bilişim odaklı; güneş yeni hizmet.
   ============================================================ */

:root {
  /* Surfaces — warm off-white */
  --bg:        #FAFBF4;
  --surface:   #FFFFFF;
  --surface-2: #F1F4E6;
  --cream:     #F5F2E6;
  --ink-bg:    #16190E;   /* dark sections */

  /* Ink */
  --ink:       #181C0E;
  --ink-2:     #3A4128;
  --muted:     #5C6347;
  --faint:     #8C9272;

  /* Brand — yeşil + lime-sarı */
  --green:     #4D6A12;
  --green-d:   #33480B;
  --green-l:   #6E9220;
  --green-wash:#E8F0CE;
  --lime:      #C4DB2E;
  --lime-d:    #A7BE1B;
  --lime-wash: #F0F6CE;

  --line:      #E6E9D6;
  --line-2:    #D7DCBF;

  /* Type */
  --display: "Sora", system-ui, -apple-system, sans-serif;
  --body:    "Figtree", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --r:   18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-sm: 0 1px 2px rgba(24,28,14,.04), 0 4px 12px rgba(24,28,14,.05);
  --shadow:    0 14px 34px -14px rgba(24,28,14,.18);
  --shadow-lg: 0 40px 80px -32px rgba(24,28,14,.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--lime); color: var(--green-d); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -0.025em; color: var(--ink); }
.h-xxl { font-size: clamp(2.8rem, 7.5vw, 6rem); line-height: 0.98; letter-spacing: -0.035em; text-wrap: balance; }
.h-xl  { font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -0.03em; text-wrap: balance; }
.h-lg  { font-size: clamp(1.8rem, 3.4vw, 2.9rem); line-height: 1.05; letter-spacing: -0.025em; text-wrap: balance; }
.h-md  { font-size: clamp(1.3rem, 2.1vw, 1.7rem); line-height: 1.12; letter-spacing: -0.02em; }
.lead  { font-size: clamp(1.05rem, 1.5vw, 1.27rem); color: var(--muted); line-height: 1.62; text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--green);
  padding: 7px 14px 7px 11px; border-radius: 100px;
  background: var(--green-wash); white-space: nowrap;
}
.eyebrow::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime-d); }
.eyebrow.on-dark { background: rgba(196,219,46,.14); color: var(--lime); }
.eyebrow.on-dark::before { background: var(--lime); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .lead { margin-top: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  padding: 15px 26px; border-radius: 100px; border: 2px solid transparent;
  background: var(--green); color: #fff;
  transition: background .22s, transform .22s, box-shadow .22s, color .22s, border-color .22s;
  box-shadow: 0 10px 22px -10px rgba(77,106,18,.55);
}
.btn:hover { background: var(--green-d); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(77,106,18,.6); }
.btn .arr { transition: transform .22s; }
.btn:hover .arr { transform: translateX(4px); }
.btn.lime { background: var(--lime); color: var(--green-d); box-shadow: 0 10px 22px -10px rgba(167,190,27,.7); }
.btn.lime:hover { background: var(--lime-d); color: #25300A; }
.btn.ghost { background: transparent; color: var(--green-d); border-color: var(--line-2); box-shadow: none; }
.btn.ghost:hover { border-color: var(--green); background: var(--green-wash); transform: translateY(-2px); }
.btn.on-dark.ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.btn.on-dark.ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn.lg { padding: 17px 32px; font-size: 16px; }
.btn.sm { padding: 11px 20px; font-size: 14px; }

.tlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green); transition: gap .22s; }
.tlink:hover { gap: 12px; }

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

/* ---------- Reveal ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1{transition-delay:.07s}.reveal.d2{transition-delay:.14s}.reveal.d3{transition-delay:.21s}
.reveal.d4{transition-delay:.28s}.reveal.d5{transition-delay:.35s}.reveal.d6{transition-delay:.42s}
@media (prefers-reduced-motion: reduce){ .js .reveal { opacity:1!important; transform:none!important; } }

/* ---------- Photos ---------- */
.photo { position: relative; overflow: hidden; background: var(--surface-2); border-radius: var(--r-lg); }
.photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo .cap { position: absolute; left: 12px; bottom: 12px; z-index: 3; font-family: ui-monospace, Menlo, monospace; font-size: 10.5px; color: #fff; background: rgba(22,25,14,.55); padding: 4px 9px; border-radius: 7px; backdrop-filter: blur(4px); }

/* ============================================================ NAV */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 14px var(--pad); transition: background .35s, box-shadow .35s, padding .35s, border-color .35s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(250,251,244,.85); backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); padding-block: 10px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand .bt { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; line-height: 1; color: var(--ink); display: flex; flex-direction: column; gap: 3px; }
.brand .bt small { font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-2); position: relative; transition: color .22s; }
.nav-links a::after { content:""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0; background: var(--lime-d); border-radius: 2px; transition: width .28s; }
.nav-links a:hover { color: var(--green); } .nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-burger { display: none; width: 44px; height: 44px; border: 0; background: none; color: var(--ink); place-items: center; }
@media (max-width: 980px){ .nav-links, .nav .nav-cta { display: none; } .nav-burger { display: grid; } }

.mmenu { position: fixed; inset: 0; z-index: 99; background: var(--bg); transform: translateY(-100%); transition: transform .4s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: var(--pad); }
.mmenu.open { transform: none; }
.mmenu a { font-family: var(--display); font-weight: 700; font-size: 2rem; color: var(--ink); padding: 9px 0; border-bottom: 1px solid var(--line); }
.mmenu a.btn { font-size: 1rem; margin-top: 18px; border: 0; color: #fff; justify-content: center; }

/* ============================================================ HERO */
.hero { padding: clamp(116px, 15vh, 172px) 0 clamp(48px,7vw,84px); position: relative; }
.hero::before { content:""; position: absolute; top: -10%; right: -5%; width: 50vw; height: 50vw; max-width: 760px; max-height: 760px; background: radial-gradient(circle, var(--lime-wash), transparent 68%); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(30px,4vw,60px); align-items: center; }
@media (max-width: 920px){ .hero-grid { grid-template-columns: 1fr; gap: 38px; } }
.hero h1 { margin: 22px 0; }
.hero h1 .hl { position: relative; white-space: nowrap; color: var(--green); }
.hero h1 .hl::after { content:""; position: absolute; left: -2px; right: -2px; bottom: 6%; height: 28%; background: var(--lime); z-index: -1; border-radius: 4px; opacity: .85; }
.hero .lead { max-width: 52ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.hero-trust .ht svg { width: 20px; height: 20px; color: var(--green); flex: 0 0 auto; }

.hero-visual { position: relative; }
.hero-photo { aspect-ratio: 4/4.5; box-shadow: var(--shadow-lg); border-radius: var(--r-xl); }
@media (max-width: 920px){ .hero-photo { aspect-ratio: 16/12; } }
.hero-card { position: absolute; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 13px; }
.hero-card.c1 { left: -24px; top: 36px; }
.hero-card.c2 { right: -20px; bottom: 44px; }
@media (max-width: 920px){ .hero-card.c1{left:8px} .hero-card.c2{right:8px} }
@media (max-width: 460px){ .hero-card{ display:none; } }
.hero-card .hc-ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; }
.hero-card.c1 .hc-ic { background: var(--green-wash); color: var(--green); }
.hero-card.c2 .hc-ic { background: var(--lime-wash); color: var(--lime-d); }
.hero-card b { font-family: var(--display); font-size: 1.15rem; color: var(--ink); display: block; line-height: 1; }
.hero-card span { font-size: 12px; color: var(--muted); }

/* ============================================================ MARQUEE / strip */
.marquee { border-block: 1px solid var(--line); background: var(--surface); overflow: hidden; padding: 18px 0; }
.marquee .track { display: flex; gap: 48px; align-items: center; white-space: nowrap; width: max-content; animation: scroll 28s linear infinite; }
@media (prefers-reduced-motion: reduce){ .marquee .track { animation: none; flex-wrap: wrap; justify-content: center; } }
.marquee .mq { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--faint); }
.marquee .mq svg { width: 20px; height: 20px; color: var(--lime-d); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================ STATS */
.stats { background: var(--ink-bg); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
@media (max-width: 760px){ .stats-grid { grid-template-columns: 1fr 1fr; } }
.stat { background: var(--ink-bg); padding: clamp(28px,3.4vw,44px) clamp(20px,2.4vw,30px); text-align: center; }
.stat b { font-family: var(--display); font-weight: 800; font-size: clamp(2.9rem,5.5vw,4.2rem); color: var(--lime); line-height: 1; display: flex; justify-content: center; align-items: baseline; gap: 3px; font-variant-numeric: tabular-nums; }
.stat b .u { font-size: 0.42em; color: #fff; font-weight: 700; }
.stat span { display: block; margin-top: 14px; font-size: 14.5px; color: #C5CBB4; }

/* ============================================================ SERVICES */
.services { background: var(--bg); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(36px,5vw,56px); }
.svc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s, border-color .32s; position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 250px; }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-wash); }
.svc .svc-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--green-wash); color: var(--green); display: grid; place-items: center; margin-bottom: 20px; transition: background .32s, color .32s; }
.svc:hover .svc-ic { background: var(--green); color: #fff; }
.svc h3 { font-size: 1.32rem; margin-bottom: 9px; }
.svc p { font-size: 14.5px; color: var(--muted); }
.svc .more { margin-top: auto; padding-top: 18px; font-weight: 700; font-size: 14px; color: var(--green); display: inline-flex; align-items: center; gap: 7px; }
.svc:hover .more .arr { transform: translateX(4px); }
.svc .more .arr { transition: transform .22s; }
@media (max-width: 920px){ .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .svc-grid { grid-template-columns: 1fr; } .svc { min-height: 0; } }

/* feature service (security) — same size, dark accent */
.svc.feat { background: var(--ink-bg); border-color: var(--ink-bg); color: #fff; }
.svc.feat h3 { color: #fff; }
.svc.feat p { color: #C5CBB4; }
.svc.feat .svc-ic { background: rgba(196,219,46,.16); color: var(--lime); }
.svc.feat:hover { box-shadow: var(--shadow-lg); }
.svc.feat:hover .svc-ic { background: var(--lime); color: var(--green-d); }
.svc.feat .svc-tag { position: absolute; right: 20px; top: 22px; font-family: var(--body); font-weight: 700; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--green-d); background: var(--lime); padding: 5px 11px; border-radius: 100px; }
.svc.feat .more { color: var(--lime); }

/* ============================================================ SOLAR (new service highlight) */
.solar { background: linear-gradient(180deg, var(--bg), var(--cream)); }
.solar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
@media (max-width: 920px){ .solar-grid { grid-template-columns: 1fr; } }
.solar-photo { aspect-ratio: 5/4.6; box-shadow: var(--shadow); border-radius: var(--r-xl); }
.solar-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--lime); color: var(--green-d); font-weight: 800; font-family: var(--display); font-size: 13px; letter-spacing: .02em; padding: 8px 16px; border-radius: 100px; margin-bottom: 20px; }
.solar-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0 30px; }
@media (max-width: 520px){ .solar-feats { grid-template-columns: 1fr; } }
.solar-feats li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.solar-feats .ck { width: 26px; height: 26px; flex: 0 0 auto; border-radius: 8px; background: var(--green-wash); color: var(--green); display: grid; place-items: center; }
.solar-feats .ck svg { width: 15px; height: 15px; }

/* ============================================================ PROCESS */
.process { background: var(--surface); }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: clamp(36px,5vw,56px); }
@media (max-width: 880px){ .proc-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px){ .proc-grid { grid-template-columns: 1fr; } }
.proc { position: relative; padding-top: 24px; border-top: 2px solid var(--line); }
.proc .pn { font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--green); background: var(--green-wash); width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px; }
.proc.lime-step .pn { background: var(--lime-wash); color: var(--lime-d); }
.proc h3 { font-size: 1.2rem; margin-bottom: 8px; }
.proc p { font-size: 14px; color: var(--muted); }

/* ============================================================ ABOUT */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,64px); align-items: center; }
@media (max-width: 920px){ .about-grid { grid-template-columns: 1fr; } }
.about-photo { aspect-ratio: 5/4.4; box-shadow: var(--shadow); border-radius: var(--r-xl); }
.about-photo.stack { position: relative; }
.about-mini { position: absolute; right: -18px; bottom: -22px; width: 44%; aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; border: 5px solid var(--bg); box-shadow: var(--shadow); }
.about-mini img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
@media (max-width: 520px){ .about-mini { display: none; } }
.about-stats { display: flex; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.about-stats .as b { font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: var(--green-d); display: block; line-height: 1; }
.about-stats .as span { font-size: 13px; color: var(--muted); white-space: nowrap; }
.about-list { display: grid; gap: 16px; margin-top: 26px; }
.about-list .it { display: flex; gap: 13px; align-items: flex-start; }
.about-list .ic { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 11px; background: var(--lime-wash); color: var(--lime-d); display: grid; place-items: center; }
.about-list b { font-family: var(--display); font-size: 1.05rem; display: block; }
.about-list p { font-size: 14px; color: var(--muted); margin-top: 2px; }

/* ============================================================ PROJECTS */
.projects { background: var(--bg); }
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: clamp(36px,5vw,52px); }
@media (max-width: 880px){ .proj-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .proj-grid { grid-template-columns: 1fr; } }
.proj { border-radius: var(--r-lg); overflow: hidden; position: relative; aspect-ratio: 4/4.2; box-shadow: var(--shadow-sm); transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s; }
.proj:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.proj img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.proj:hover img { transform: scale(1.05); }
.proj .grad { position: absolute; inset: 0; background: linear-gradient(transparent 38%, rgba(22,25,14,.86)); }
.proj .meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; }
.proj .meta .cat { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--lime); }
.proj .meta h3 { color: #fff; font-size: 1.22rem; margin-top: 6px; }
.proj .meta p { color: #D7DCC4; font-size: 13px; margin-top: 5px; }
.proj.wide { grid-column: span 1; }
@media (min-width: 881px){ .proj.tall { grid-row: span 1; } }

/* ============================================================ TESTIMONIALS */
.tst-section { background: var(--ink-bg); color: #fff; }
.tst-section .section-head h2, .tst-section .lead { color: #fff; }
.tst-section .lead { color: #C5CBB4; }
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: clamp(36px,5vw,52px); }
@media (max-width: 880px){ .tst-grid { grid-template-columns: 1fr; } }
.tst { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 30px 28px; display: flex; flex-direction: column; }
.tst .stars { color: var(--lime); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.tst p { font-size: 15.5px; color: #E4E8D6; line-height: 1.62; flex: 1; }
.tst .by { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.tst .by .av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: rgba(255,255,255,.1); }
.tst .by .av img { width: 100%; height: 100%; object-fit: cover; }
.tst .by b { font-family: var(--display); font-size: 1rem; display: block; color: #fff; }
.tst .by span { font-size: 12.5px; color: #AEB596; }

/* ============================================================ BLOG */
.blog { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: clamp(36px,5vw,52px); }
@media (max-width: 880px){ .blog-grid { grid-template-columns: 1fr; } }
.post { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s, border-color .32s; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-wash); }
.post .thumb { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.post .thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .6s; }
.post:hover .thumb img { transform: scale(1.05); }
.post .pcat { position: absolute; left: 14px; top: 14px; z-index: 2; font-family: var(--body); font-weight: 700; font-size: 11.5px; letter-spacing: .03em; text-transform: uppercase; color: var(--green-d); background: var(--lime); padding: 5px 11px; border-radius: 100px; }
.post .pb { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.post h3 { font-size: 1.2rem; line-height: 1.2; }
.post p { font-size: 14px; color: var(--muted); margin-top: 9px; }
.post .meta { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; }
.post .meta .date { font-size: 12.5px; color: var(--faint); }
.post .meta .go { font-weight: 700; font-size: 13px; color: var(--green); display: inline-flex; gap: 6px; align-items: center; }
.post:hover .meta .go .arr { transform: translateX(4px); }
.post .meta .go .arr { transition: transform .22s; }

/* ============================================================ FAQ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px,5vw,56px); align-items: start; }
@media (max-width: 880px){ .faq-grid { grid-template-columns: 1fr; } }
.faq-list { display: grid; }
.faq { border-bottom: 1px solid var(--line); }
.faq button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; background: none; border: 0; text-align: left; font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem,1.6vw,1.22rem); color: var(--ink); cursor: pointer; }
.faq button:hover { color: var(--green); }
.faq .ico { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; border: 2px solid var(--line-2); display: grid; place-items: center; color: var(--green); transition: transform .3s, background .3s, color .3s, border-color .3s; }
.faq.open .ico { background: var(--green); border-color: var(--green); color: #fff; transform: rotate(45deg); }
.faq .ans { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq .ans p { padding: 0 4px 24px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 60ch; }

/* ============================================================ CTA */
.cta { background: var(--ink-bg); color: #fff; border-radius: var(--r-xl); padding: clamp(44px,6vw,80px); text-align: center; position: relative; overflow: hidden; }
.cta::before { content:""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(196,219,46,.26), transparent 68%); top: -180px; right: -120px; }
.cta::after { content:""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(110,146,32,.3), transparent 70%); bottom: -180px; left: -100px; }
.cta h2 { color: #fff; position: relative; }
.cta p { color: #C5CBB4; max-width: 56ch; margin: 18px auto 32px; position: relative; }
.cta .cta-btns { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ CONTACT */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,4vw,52px); }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-meta { display: grid; gap: 16px; margin-top: 30px; }
.contact-meta .it { display: flex; gap: 14px; align-items: center; }
.contact-meta .ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 13px; background: var(--green-wash); color: var(--green); display: grid; place-items: center; }
.contact-meta b { font-family: var(--display); display: block; font-size: 1.02rem; }
.contact-meta span { font-size: 14px; color: var(--muted); }
.map { margin-top: 24px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/7; box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.9); }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3vw,40px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px){ .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 7px; }
.inp { width: 100%; padding: 14px 15px; border-radius: 12px; border: 2px solid var(--line-2); background: var(--bg); font-family: var(--body); font-size: 15px; color: var(--ink); transition: border-color .22s, box-shadow .22s, background .22s; }
.inp::placeholder { color: var(--faint); }
.inp:focus { outline: none; border-color: var(--green-l); background: #fff; box-shadow: 0 0 0 3px var(--green-wash); }
textarea.inp { resize: vertical; min-height: 110px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-ok { display: none; margin-top: 14px; padding: 13px 16px; border-radius: 12px; background: var(--green-wash); color: var(--green-d); font-size: 14px; font-weight: 600; }
.form-ok.show { display: block; }
.form .note { font-size: 12px; color: var(--faint); margin-top: 12px; text-align: center; }

/* ============================================================ FOOTER */
.footer { background: var(--ink-bg); color: #C5CBB4; padding: clamp(56px,7vw,88px) 0 30px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 820px){ .foot-top { grid-template-columns: 1fr 1fr; gap: 34px 20px; } }
.foot-brand .brand .bt { color: #fff; }
.foot-brand p { font-size: 14px; color: #9DA487; max-width: 32ch; margin-top: 16px; }
.foot-col h5 { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8E9573; margin-bottom: 16px; }
.foot-col a, .foot-col span { display: block; font-size: 14.5px; color: #C5CBB4; margin-bottom: 11px; transition: color .22s; }
.foot-col a:hover { color: var(--lime); }
.foot-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.foot-bot p { font-size: 13px; color: #8E9573; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #C5CBB4; transition: all .22s; }
.socials a:hover { border-color: var(--lime); color: var(--lime); }
.footer .brand .bt small { color: var(--lime); }

/* ---------- WhatsApp FAB ---------- */
.wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px 13px 15px; border-radius: 100px; background: #25D366; color: #fff; font-weight: 700; font-size: 14.5px; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .22s, box-shadow .22s; }
.wa-fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 38px -10px rgba(37,211,102,.7); }
.wa-fab svg { width: 24px; height: 24px; flex: 0 0 auto; }
@media (max-width: 560px){ .wa-fab .wa-txt { display: none; } .wa-fab { padding: 14px; } }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; background: var(--bg); z-index: 9999; display: grid; place-items: center; transition: opacity .6s, visibility .6s; }
.loader.gone { opacity: 0; visibility: hidden; }
.loader svg { width: 54px; height: 54px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
