/* ============================================================
   Uzm. Kl. Psk. Berrak Öcel — Design System
   Palette derived from the logo: deep navy + soft blue
============================================================ */

:root {
  --navy:        #14224e;
  --navy-2:      #1d3163;
  --blue:        #5f7fc4;
  --blue-soft:   #93aadd;
  --blue-050:    #eef2fb;
  --blue-100:    #dde6f6;
  --ink:         #1f2637;
  --muted:       #5b6478;
  --line:        #e4e8f2;
  --bg:          #ffffff;
  --bg-soft:     #f6f8fd;
  --bg-tint:     #eef2fb;
  --white:       #ffffff;
  --gold:        #b99a5b;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Manrope", "Inter", system-ui, -apple-system, sans-serif;

  --radius:      18px;
  --radius-sm:   12px;
  --shadow-sm:   0 6px 20px rgba(20, 34, 78, .06);
  --shadow:      0 20px 50px rgba(20, 34, 78, .12);
  --maxw:        1180px;
  --ease:        cubic-bezier(.16, .84, .44, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .4em;
  letter-spacing: .2px;
}

p { margin: 0 0 1.1em; }

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

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 18px;
  display: inline-block;
}

.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--navy { background: var(--navy); color: #dfe6f6; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head--left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 12px 26px rgba(20,34,78,.22); }
.btn--primary:hover { background: var(--navy-2); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--light { background: #fff; color: var(--navy); }
.btn--wa { background: #25d366; color: #fff; box-shadow: 0 12px 26px rgba(37,211,102,.28); }
.btn--wa:hover { background: #1eb857; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 104px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 90px; width: auto; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: .5px; }
.brand-sub { font-family: var(--sans); font-size: 10.5px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--blue); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav a.nav-link:hover, .nav a.nav-link.active { color: var(--navy); background: var(--blue-050); }

.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.dropdown-toggle svg { transition: transform .25s; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: background .18s, color .18s;
}
.dropdown a:hover { background: var(--blue-050); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* Language switch (TR | EN) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.lang-switch .lang-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 7px;
  line-height: 1;
  transition: color .18s, background .18s;
}
.lang-switch .lang-opt::before {
  content: "";
  width: 20px;
  height: 14px;
  border-radius: 2px;
  background: center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(0,0,0,.10);
  flex: none;
}
.lang-switch .lang-opt[hreflang="tr"]::before { background-image: url("/assets/img/flag-tr.svg"); }
.lang-switch .lang-opt[hreflang="en"]::before { background-image: url("/assets/img/flag-gb.svg"); }
.lang-switch .lang-opt:hover { color: var(--navy); background: var(--blue-050); }
.lang-switch .lang-opt.active { color: #fff; background: var(--navy); }
/* Mobile language switch (inside mobile nav) */
.mobile-nav .lang-switch { align-self: flex-start; margin: 6px 0 2px; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: 104px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px 24px 28px;
  transform: translateY(-120%);
  transition: transform .4s var(--ease);
  z-index: 99;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { display: block; padding: 13px 6px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav .sub a { padding-left: 22px; font-weight: 500; color: var(--muted); font-size: 15px; }
.mobile-nav .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 96px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 55vw; height: 120%;
  background: radial-gradient(closest-side, rgba(147,170,221,.28), transparent 70%);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-tags { color: var(--blue); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-size: 13px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.05; margin-bottom: 22px; }
.hero h1 .accent { color: var(--blue); font-style: italic; }
.hero p.lead { font-size: 1.14rem; color: var(--muted); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: var(--blue-050);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-badge {
  position: absolute;
  left: -26px; bottom: 34px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero-badge .dot { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color:#fff; display:grid; place-items:center; font-family: var(--serif); font-size: 1.4rem; flex-shrink: 0; }
.hero-badge strong { display:block; font-family: var(--serif); color: var(--navy); font-size: 1.05rem; }
.hero-badge span { font-size: 13px; color: var(--muted); }

/* ---------- Hero slider (girizgah) ---------- */
.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 90px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; position: relative; z-index: 2; }
.hero-slide-media { position: absolute; inset: 0; z-index: 0; }
.hero-slide-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% 25%;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-slide.is-active .hero-slide-media img { transform: scale(1); }
.hero-slide-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,34,78,.92) 0%, rgba(20,34,78,.78) 42%, rgba(20,34,78,.25) 100%);
}
.hero-slide-inner { position: relative; z-index: 1; }

.hero-role { color: var(--blue); font-weight: 700; letter-spacing: 1.2px; font-size: .95rem; margin-bottom: 20px; }

/* ---- Hero entrance: a random variant is picked (JS) on each load ---- */
.hero [data-anim] {
  animation-duration: 1s;
  animation-timing-function: var(--ease);
  animation-fill-mode: both;
  animation-delay: var(--anim-delay, 0ms);
}
@keyframes vFade  { from { opacity: 0; }                                   to { opacity: 1; transform: none; filter: none; } }
@keyframes vBlur  { from { opacity: 0; filter: blur(14px); }               to { opacity: 1; filter: blur(0); } }
@keyframes vRight { from { opacity: 0; transform: translateX(48px); }      to { opacity: 1; transform: none; } }
@keyframes vLeft  { from { opacity: 0; transform: translateX(-48px); }     to { opacity: 1; transform: none; } }
@keyframes vTop   { from { opacity: 0; transform: translateY(-42px); }     to { opacity: 1; transform: none; } }
@keyframes vUp    { from { opacity: 0; transform: translateY(42px); }      to { opacity: 1; transform: none; } }
@keyframes vZoom  { from { opacity: 0; transform: scale(.9); }             to { opacity: 1; transform: none; } }

.hero.a-fade  [data-anim] { animation-name: vFade;  }
.hero.a-blur  [data-anim] { animation-name: vBlur;  }
.hero.a-right [data-anim] { animation-name: vRight; }
.hero.a-left  [data-anim] { animation-name: vLeft;  }
.hero.a-top   [data-anim] { animation-name: vTop;   }
.hero.a-up    [data-anim] { animation-name: vUp;    }
.hero.a-zoom  [data-anim] { animation-name: vZoom;  }

@media (prefers-reduced-motion: reduce) {
  .hero [data-anim] { animation: none !important; }
}

.hero-banner-panel { max-width: 620px; }
.hero-banner-eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px; font-weight: 700;
  color: var(--blue-soft); margin-bottom: 20px;
}
.hero-slider h1 { color: #fff; font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: 1.02; margin-bottom: 18px; }
.hero-slider h1 .accent { color: var(--blue-soft); font-style: italic; }
.hero-banner-role { color: #cdd7ef; font-weight: 600; letter-spacing: .4px; font-size: 1rem; margin-bottom: 16px; }
.hero-slider .lead { color: #dfe6f6; font-size: 1.14rem; max-width: 540px; margin-bottom: 32px; }
.hero-slider .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero-slider .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Category strip ---------- */
.hero-cats { margin-top: -56px; position: relative; z-index: 5; padding-bottom: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.cat-card .ico {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--blue-050); color: var(--navy);
  display: grid; place-items: center; margin-bottom: 6px;
}
.cat-card .ico svg { width: 26px; height: 26px; }
.cat-card h3 { font-size: 1.2rem; margin: 0; }
.cat-card .cat-more { color: var(--blue); font-weight: 700; font-size: 14px; margin-top: auto; }
.cat-card:hover .cat-more { color: var(--navy); }

/* ---------- Lead quote (about) ---------- */
.lead-quote {
  margin: 0 0 22px; padding: 0 0 0 20px;
  border-left: 3px solid var(--blue);
  font-family: var(--serif); font-style: italic;
  font-size: 1.4rem; line-height: 1.4; color: var(--navy);
}

/* ---------- Testimonial cards ---------- */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.quote-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.quote-card blockquote {
  margin: 0; font-family: var(--serif); font-style: italic;
  font-size: 1.18rem; line-height: 1.5; color: var(--ink);
}
.quote-card figcaption { font-size: 13.5px; font-weight: 700; letter-spacing: .5px; color: var(--blue); text-transform: uppercase; }

/* ---------- Trust strip ---------- */
.strip { background: var(--navy); color: #cdd7ef; }
.strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-top: 36px; padding-bottom: 36px; }
.strip .stat { text-align: center; }
.strip .stat b { display: block; font-family: var(--serif); font-size: 2.2rem; color: #fff; line-height: 1; margin-bottom: 6px; }
.strip .stat span { font-size: 13.5px; letter-spacing: .3px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-050); color: var(--navy);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.split--rev { grid-template-columns: 1.05fr .95fr; }
.split-photo { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-photo::after { content:""; position:absolute; inset:0; border-radius:24px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.split-body h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 20px; }
.split-body p { color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 20px; padding-left: 30px; }
.timeline::before { content:""; position:absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 30px; }
.tl-item::before { content:""; position:absolute; left: -30px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); }
.tl-item .yr { font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--blue); text-transform: uppercase; }
.tl-item h4 { font-size: 1.2rem; margin: 4px 0 4px; }
.tl-item .place { font-weight: 600; color: var(--ink); font-size: .96rem; }
.tl-item p { color: var(--muted); font-size: .95rem; margin: 6px 0 0; }

/* ---------- Chip list ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-size: 14.5px; font-weight: 600; color: var(--navy);
  display: inline-flex; gap: 8px; align-items: center;
}
.chip svg { width: 16px; height: 16px; color: var(--blue); }

/* ---------- List with checks ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check-list li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--blue); margin-top: 2px; }
.check-list li b { color: var(--ink); }

/* ---------- Service detail block ---------- */
.svc { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.svc:last-child { border-bottom: none; }
.svc .num { font-family: var(--serif); font-size: 1.6rem; color: var(--blue); border: 1.5px solid var(--blue-100); border-radius: 14px; width: 64px; height: 64px; display: grid; place-items: center; }
.svc h3 { font-size: 1.5rem; margin-bottom: 10px; }
.svc p { color: var(--muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 1; text-align: center; padding-top: 84px; padding-bottom: 84px; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 16px; }
.cta-band p { color: #c6d1ee; max-width: 620px; margin: 0 auto 30px; }
.cta-band .hero-actions { justify-content: center; }
.cta-band::after { content:""; position:absolute; top:-40%; left:-10%; width:60%; height:180%; background: radial-gradient(closest-side, rgba(95,127,196,.5), transparent 70%); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-row { display:flex; gap:16px; align-items:flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ico { width:46px;height:46px;border-radius:12px;background:var(--blue-050);color:var(--navy);display:grid;place-items:center;flex-shrink:0; }
.contact-row .ico svg { width:22px;height:22px; }
.contact-row .lbl { font-size:13px;text-transform:uppercase;letter-spacing:1.5px;color:var(--blue);font-weight:700; }
.contact-row a, .contact-row span.val { font-size:1.05rem; font-weight:600; color:var(--navy); }

.form-field { margin-bottom: 18px; }
.form-field label { display:block; font-size:14px; font-weight:600; margin-bottom:7px; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border:1.5px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 15px; color: var(--ink); background:#fff; transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline:none; border-color: var(--blue); }
.form-field textarea { min-height: 130px; resize: vertical; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--bg-tint); padding: 64px 0 60px; text-align: center; position: relative; }
.page-hero .eyebrow { color: var(--blue); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero p { color: var(--muted); max-width: 640px; margin: 10px auto 0; }
.breadcrumb { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--blue); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b9c4e2; padding: 72px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer .brand-name { color:#fff; }
.footer .brand-sub { color: var(--blue-soft); }
.footer p { color:#98a6cc; font-size: 15px; }
.footer h4 { color:#fff; font-family: var(--sans); font-size: 14px; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:18px; }
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.footer ul a { color:#98a6cc; font-size:15px; transition: color .2s; }
.footer ul a:hover { color:#fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13.5px; color:#7f8dba; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background:#25d366;
  display:grid; place-items:center; box-shadow: 0 14px 30px rgba(37,211,102,.4);
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height:30px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.blog-card__img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--blue-050); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { display: flex; flex-direction: column; flex: 1; padding: 28px 30px 30px; }
.blog-card .post-meta { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.blog-card .post-tag { background: var(--blue-050); color: var(--navy); border-radius: 999px; padding: 5px 13px; font-weight: 600; letter-spacing: .2px; }
.blog-card h2 { font-size: 1.5rem; line-height: 1.25; margin-bottom: 12px; }
.blog-card p { color: var(--muted); font-size: .98rem; margin: 0 0 20px; }
.blog-card .read-more { margin-top: auto; color: var(--blue); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; }
.blog-card:hover .read-more { color: var(--navy); }

/* ---------- Blog article ---------- */
.post-wrap { max-width: 760px; margin: 0 auto; }
.post-cover { max-width: 980px; margin: -32px auto 0; padding: 0 24px; }
.post-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.post-body { font-size: 1.08rem; line-height: 1.8; color: #33405c; }
.post-body > * { margin: 0 0 22px; }
.post-body h2 { font-family: var(--serif); font-size: 1.85rem; color: var(--navy); line-height: 1.25; margin: 46px 0 16px; }
.post-body h3 { font-size: 1.25rem; color: var(--navy); margin: 34px 0 12px; }
.post-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.post-body ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.post-body ul li { position: relative; padding-left: 30px; color: var(--muted); }
.post-body ul li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.post-body .lead { font-size: 1.22rem; line-height: 1.6; color: var(--ink); font-weight: 500; }
.post-callout {
  background: var(--bg-tint); border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px; font-family: var(--serif); font-size: 1.4rem;
  color: var(--navy); line-height: 1.4; font-style: italic;
}
.cbt-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.cbt-box .cbt-row { display: flex; gap: 12px; padding: 9px 0; }
.cbt-box .cbt-row:not(:last-child) { border-bottom: 1px solid var(--line); }
.cbt-box .cbt-row b { flex: 0 0 118px; color: var(--navy); }
.cbt-box .cbt-row span { color: var(--muted); }
.post-foot { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 30px; }
.post-disclaimer { font-size: 14px; color: var(--muted); background: var(--bg-soft); border-radius: var(--radius-sm); padding: 18px 22px; margin-top: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .split, .split--rev { grid-template-columns: 1fr; gap: 36px; }
  .split-photo { max-width: 460px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .hero-slider { min-height: 520px; }
  .hero-slide { padding: 70px 0; }
  .hero-slide-media::after { background: linear-gradient(120deg, rgba(20,34,78,.94) 0%, rgba(20,34,78,.82) 60%, rgba(20,34,78,.55) 100%); }
  .hero-cats { margin-top: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav, .header-cta .btn--ghost, .header-cta .lang-switch { display: none; }
  .burger { display: block; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .grid--3, .grid--4, .grid--2, .blog-grid { grid-template-columns: 1fr; }
  .hero-slider h1 { font-size: clamp(2.3rem, 9vw, 3rem); }
  .strip .container { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 12px; }
  .svc { grid-template-columns: 1fr; gap: 12px; }
  .brand-text { display: none; }
  .footer-bottom { flex-direction: column; }
  .cbt-box .cbt-row { flex-direction: column; gap: 2px; }
  .cbt-box .cbt-row b { flex-basis: auto; }
}
