/* =========================================================
   Denge Beslenme ve Diyet — Fresh Wellness Design System v2
   Vibrant, borderless, energetic — built to convert.
   Palette: fresh green + warm coral + sunny cream
   Type: Fraunces (display serif) + Manrope (sans)
   ========================================================= */

:root {
  /* Greens — fresh & hopeful */
  --green:        #2E7D4F;
  --green-bright: #43A567;
  --green-deep:   #1C4F35;
  --green-soft:   #86C79B;
  --green-tint:   #E4F1E6;
  --green-tint-2: #D2E9D8;
  /* Warm accents — energy & appetite */
  --coral:        #F26D3D;
  --coral-deep:   #DE5426;
  --coral-soft:   #F9A579;
  --coral-tint:   #FCE7DB;
  --amber:        #F5A623;
  /* Neutrals — warm, sunny */
  --cream:        #FBF6EC;
  --cream-deep:   #F4ECDB;
  --paper:        #FFFFFF;
  --ink:          #1E2A1C;
  --ink-soft:     #465141;
  --muted:        #79826F;

  --bg: var(--cream);

  /* Soft, colored elevation instead of borders */
  --shadow-sm:   0 2px 10px rgba(28,79,53,.06);
  --shadow-md:   0 12px 34px rgba(28,79,53,.10), 0 3px 10px rgba(28,79,53,.05);
  --shadow-lg:   0 30px 70px rgba(28,79,53,.16), 0 10px 28px rgba(28,79,53,.08);
  --shadow-coral:0 14px 34px rgba(242,109,61,.36);
  --shadow-green:0 14px 34px rgba(46,125,79,.30);

  --radius-sm: 14px;
  --radius:    20px;
  --radius-lg: 30px;
  --radius-xl: 44px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(.22,.61,.36,1);
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--green); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.12; letter-spacing: -.015em; color: var(--ink); }
.display {
  font-size: clamp(2.5rem, 5.2vw, 4.1rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.025em;
}
h2.section-title { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
.serif-italic { font-style: italic; font-family: var(--font-serif); }
.lede { font-size: clamp(1.06rem, 1.6vw, 1.28rem); color: var(--ink-soft); line-height: 1.7; }
.hl { color: var(--green); font-style: italic; }
.hl-coral { color: var(--coral-deep); font-style: italic; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 820px; }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 10vw, 130px); }
.center { text-align: center; }
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }

/* Eyebrow label — pill style (no stray lines) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green);
  background: var(--green-tint);
  padding: 8px 16px; border-radius: 100px;
}
.eyebrow::before { content: "●"; font-size: .5rem; color: var(--coral); }
.eyebrow.center-eyebrow { }

.section-head { max-width: 740px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-weight: 800; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
/* Primary conversion action = warm coral, made to pop */
.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(242,109,61,.46); background: var(--coral-deep); }
.btn-clay { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn-clay:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(242,109,61,.46); background: var(--coral-deep); }
/* Secondary = fresh green */
.btn-green { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(46,125,79,.4); background: var(--green-deep); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--green-deep); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-white { background: #fff; color: var(--green-deep); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 17px 38px; font-size: 1rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--green); font-size: .95rem;
  transition: gap .3s var(--ease), color .3s;
}
.text-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.text-link:hover { gap: 12px; color: var(--coral-deep); }
.text-link:hover svg { transform: translateX(3px); }

/* Rating pill (social proof) */
.rating-pill { display: inline-flex; align-items: center; gap: 12px; background: #fff; padding: 8px 8px 8px 16px; border-radius: 100px; box-shadow: var(--shadow-md); }
.rating-pill .stars { display: flex; gap: 2px; color: var(--amber); }
.rating-pill .stars svg { width: 16px; height: 16px; }
.rating-pill b { font-weight: 800; font-size: .9rem; }
.rating-pill .avatars { display: flex; }
.rating-pill .avatars span { width: 30px; height: 30px; border-radius: 50%; margin-left: -10px; border: 2px solid #fff; display: grid; place-items: center; color: #fff; font-size: .72rem; font-weight: 800; font-family: var(--font-serif); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 18px;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled {
  background: rgba(251,246,236,.9);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 10px 34px rgba(28,79,53,.07);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 48px; height: 48px; transition: transform .4s var(--ease); }
.brand:hover img { transform: rotate(-8deg) scale(1.05); }
.brand-text { line-height: 1.1; }
.brand-name { display: block; font-family: var(--font-serif); font-size: 1.18rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.brand-sub { display: block; font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; padding: 9px 14px; border-radius: 100px; white-space: nowrap;
  font-size: .92rem; font-weight: 700; color: var(--ink-soft);
  transition: color .3s, background .3s;
}
.nav a:hover { color: var(--green); background: var(--green-tint); }
.nav a.active { color: #fff; background: var(--green); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: .92rem; color: var(--ink); white-space: nowrap; }
.header-phone svg { width: 16px; height: 16px; color: var(--coral); }

.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 14px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: #fff; box-shadow: var(--shadow-sm); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; padding-top: 150px; padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, var(--green-tint) 0%, transparent 55%),
    radial-gradient(90% 80% at -5% 110%, var(--coral-tint) 0%, transparent 50%),
    linear-gradient(180deg, #FCF8EF 0%, var(--cream) 100%);
}
.hero-bg-blob { position: absolute; z-index: 0; border-radius: 50%; filter: blur(14px); pointer-events: none; }
.hero-bg-blob.b1 { width: 460px; height: 460px; background: radial-gradient(circle at 40% 40%, rgba(67,165,103,.22), transparent 68%); top: -120px; right: 0; }
.hero-bg-blob.b2 { width: 360px; height: 360px; background: radial-gradient(circle at 50% 50%, rgba(242,109,61,.16), transparent 68%); bottom: -120px; left: 0; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy .display { margin-bottom: 22px; }
.hero-copy .lede { max-width: 500px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-proof { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof .proof-text { font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.hero-proof .proof-text b { color: var(--ink); }

.hero-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 30px; }
.hero-trust .stat b { display: block; font-family: var(--font-serif); font-size: 2.1rem; font-weight: 600; color: var(--green); line-height: 1; margin-bottom: 4px; }
.hero-trust .stat.coral b { color: var(--coral-deep); }
.hero-trust .stat span { font-size: .82rem; color: var(--muted); font-weight: 700; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo-frame {
  position: relative; border-radius: 250px 250px 32px 32px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--green-tint);
}
.hero-photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(28,79,53,.16)); }
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .leaf-ring { position: absolute; inset: -16px; border-radius: 260px 260px 44px 44px; z-index: -1; background: linear-gradient(160deg, var(--green-soft), transparent 60%); opacity: .5; }

.float-card {
  position: absolute; background: #fff;
  border-radius: 20px; padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; z-index: 3;
}
.float-card .fc-ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; }
.float-card .fc-ico svg { width: 22px; height: 22px; }
.float-card b { display: block; font-family: var(--font-serif); font-size: 1.08rem; color: var(--ink); line-height: 1.1; }
.float-card span { font-size: .76rem; color: var(--muted); font-weight: 700; }
.float-card.fc-1 { top: 6%; left: -7%; animation: floaty 5s ease-in-out infinite; }
.float-card.fc-2 { bottom: 9%; right: -8%; animation: floaty 6s ease-in-out infinite .8s; }
.fc-ico.ico-green { background: var(--green-tint); color: var(--green); }
.fc-ico.ico-coral { background: var(--coral-tint); color: var(--coral-deep); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* Trust strip — vibrant green band, no border lines */
.trust-strip { background: var(--green-deep); color: #fff; }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px clamp(20px, 4vw, 48px); padding-block: 22px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .92rem; color: rgba(255,255,255,.92); }
.trust-item svg { width: 20px; height: 20px; color: var(--green-soft); flex-shrink: 0; }

/* =========================================================
   SERVICES / CARDS — borderless, elevated, colorful
   ========================================================= */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.card .text-link { margin-top: auto; }
.card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease); }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleY(1); }
.card .card-ico {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 24px;
  background: var(--green-tint); color: var(--green); transition: transform .45s var(--ease);
}
.card:hover .card-ico { transform: rotate(-6deg) scale(1.08); }
.card .card-ico svg { width: 30px; height: 30px; }
.card.accent::before { background: var(--coral); }
.card.accent .card-ico { background: var(--coral-tint); color: var(--coral-deep); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 20px; }
.card .card-num { position: absolute; top: 22px; right: 26px; font-family: var(--font-serif); font-size: 3.4rem; color: var(--green-tint); font-weight: 600; z-index: 0; line-height: 1; }
.card.accent .card-num { color: var(--coral-tint); }

/* =========================================================
   ABOUT (split)
   ========================================================= */
.about-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-visual { position: relative; }
.about-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-visual .exp-badge {
  position: absolute; right: -18px; bottom: 34px; background: var(--coral); color: #fff;
  border-radius: 24px; padding: 22px 26px; box-shadow: var(--shadow-coral); text-align: center;
}
.about-visual .exp-badge b { font-family: var(--font-serif); font-size: 2.6rem; display: block; line-height: 1; }
.about-visual .exp-badge span { font-size: .78rem; font-weight: 700; letter-spacing: .04em; opacity: .95; }
.about-visual .dots { position: absolute; left: -22px; top: -22px; width: 120px; height: 120px; z-index: -1;
  background-image: radial-gradient(var(--green-soft) 2px, transparent 2px); background-size: 17px 17px; opacity: .55; }

.about-copy .lede { margin-bottom: 22px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.about-signature { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--green); margin-top: 6px; }
.about-mini-stats { display: flex; gap: 14px; margin: 28px 0 32px; flex-wrap: wrap; }
.about-mini-stats .m { background: var(--green-tint); border-radius: 16px; padding: 16px 20px; }
.about-mini-stats .m b { font-family: var(--font-serif); font-size: 1.7rem; color: var(--green-deep); display: block; line-height: 1; }
.about-mini-stats .m span { font-size: .82rem; color: var(--ink-soft); font-weight: 700; }

/* Feature list with checks */
.check-list { display: grid; gap: 14px; margin: 24px 0; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-soft); font-weight: 500; }
.check-list .chk { flex-shrink: 0; width: 26px; height: 26px; border-radius: 9px; background: var(--green); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.check-list .chk svg { width: 14px; height: 14px; }

/* =========================================================
   PROCESS / STEPS — rich green panel
   ========================================================= */
.process-wrap {
  background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 76px); position: relative; overflow: hidden;
}
.process-wrap .eyebrow { color: #fff; background: rgba(255,255,255,.14); }
.process-wrap .eyebrow::before { color: var(--coral-soft); }
.process-wrap h2 { color: #fff; }
.process-wrap .section-head p { color: rgba(255,255,255,.82); }
.process-leaf { position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.09), transparent 70%); }
.process-leaf.two { left: -100px; bottom: -120px; top: auto; right: auto; background: radial-gradient(circle, rgba(242,109,61,.18), transparent 70%); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.step { padding-top: 8px; }
.step .step-num { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 20px; background: rgba(255,255,255,.12); color: #fff; }
.step:nth-child(even) .step-num { background: var(--coral); }
.step h3 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,.78); font-size: .92rem; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.post {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease); display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.post-img { aspect-ratio: 16/10; overflow: hidden; background: var(--green-tint); }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post:hover .post-img img { transform: scale(1.07); }
.post-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: .76rem; font-weight: 800; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.post-tag { color: var(--coral-deep); }
.post h3 { font-size: 1.24rem; margin-bottom: 12px; line-height: 1.25; }
.post p { color: var(--ink-soft); font-size: .93rem; margin-bottom: 18px; flex: 1; }
.post .text-link { margin-top: auto; }

/* =========================================================
   TESTIMONIALS — warm section, borderless cards
   ========================================================= */
.testi-section { background: linear-gradient(180deg, var(--cream) 0%, #FBEEE4 100%); }
.testi-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.testi {
  background: var(--paper); border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); position: relative;
  display: flex; flex-direction: column;
}
.testi .author { margin-top: auto; }
.testi:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testi .quote-mark { font-family: var(--font-serif); font-size: 3.8rem; color: var(--green-soft); line-height: .6; height: 32px; }
.testi .stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--amber); }
.testi .stars svg { width: 18px; height: 18px; }
.testi p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 22px; line-height: 1.7; }
.testi .author { display: flex; align-items: center; gap: 13px; }
.testi .avatar { width: 48px; height: 48px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; flex-shrink: 0; }
.testi .author b { display: block; font-family: var(--font-sans); font-weight: 800; font-size: .95rem; color: var(--ink); }
.testi .author span { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* Avatar color rotation */
.av-1 { background: var(--green); } .av-2 { background: var(--coral); }
.av-3 { background: var(--green-bright); } .av-4 { background: var(--coral-deep); }
.av-5 { background: var(--green-deep); } .av-6 { background: var(--amber); }

/* =========================================================
   CTA BANNER — bold, urgent
   ========================================================= */
.cta-banner .inner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: var(--radius-xl); padding: clamp(46px, 7vw, 84px); text-align: center; position: relative; overflow: hidden;
}
.cta-banner .inner::before, .cta-banner .inner::after {
  content: ""; position: absolute; border-radius: 50%;
}
.cta-banner .inner::before { width: 420px; height: 420px; top: -150px; left: -110px; background: radial-gradient(circle, rgba(255,255,255,.1), transparent 70%); }
.cta-banner .inner::after { width: 340px; height: 340px; bottom: -140px; right: -90px; background: radial-gradient(circle, rgba(242,109,61,.28), transparent 70%); }
.cta-banner .cta-inner-content { position: relative; z-index: 2; }
.cta-banner .eyebrow { color: #fff; background: rgba(255,255,255,.14); }
.cta-banner .eyebrow::before { color: var(--coral-soft); }
.cta-banner h2 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,.86); max-width: 580px; margin: 0 auto 20px; }
.cta-banner .urgency { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: .9rem; background: rgba(242,109,61,.9); padding: 8px 18px; border-radius: 100px; margin-bottom: 30px; }
.cta-banner .urgency svg { width: 16px; height: 16px; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   PAGE HERO (interior)
   ========================================================= */
.page-hero {
  padding-top: 150px; padding-bottom: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(100% 80% at 80% -20%, var(--green-tint) 0%, transparent 55%),
    radial-gradient(90% 80% at 0% 120%, var(--coral-tint) 0%, transparent 50%),
    var(--cream);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); margin: 20px 0; }
.page-hero .lede { max-width: 640px; margin-inline: auto; }
.breadcrumb { display: inline-flex; gap: 8px; font-size: .84rem; font-weight: 700; color: var(--muted); }
.breadcrumb a { color: var(--green); }
.breadcrumb span { color: var(--green-soft); }

/* =========================================================
   ABOUT PAGE — credentials
   ========================================================= */
.creds-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cred {
  background: var(--paper); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm);
  display: flex; gap: 16px; align-items: flex-start; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cred:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cred .cred-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--green-tint); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.cred:nth-child(even) .cred-ico { background: var(--coral-tint); color: var(--coral-deep); }
.cred .cred-ico svg { width: 22px; height: 22px; }
.cred h4 { font-size: 1.05rem; margin-bottom: 4px; }
.cred p { font-size: .88rem; color: var(--muted); }

/* Education list — dot markers, no divider lines */
.edu-list { display: grid; gap: 12px; }
.edu-item { display: flex; gap: 16px; padding: 20px 24px; align-items: flex-start; background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.edu-item:hover { transform: translateX(6px); }
.edu-item .edu-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--coral); margin-top: 7px; flex-shrink: 0; box-shadow: 0 0 0 5px var(--coral-tint); }
.edu-item p { color: var(--ink-soft); font-size: .98rem; font-weight: 500; }

/* =========================================================
   FORMS — filled fields, no border lines
   ========================================================= */
.form-card { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 800; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .96rem; color: var(--ink);
  padding: 14px 16px; border: 2px solid transparent; border-radius: 14px; background: var(--cream-deep);
  transition: border-color .3s, box-shadow .3s, background .3s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px var(--green-tint);
}
.radio-row { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill label { padding: 10px 22px; background: var(--cream-deep); border-radius: 100px; font-weight: 700; font-size: .9rem; cursor: pointer; transition: all .25s; color: var(--ink-soft); display: inline-block; }
.radio-pill input:checked + label { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; background: var(--paper); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card .cc-ico { width: 54px; height: 54px; border-radius: 15px; background: var(--green-tint); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.contact-card:nth-child(even) .cc-ico { background: var(--coral-tint); color: var(--coral-deep); }
.contact-card .cc-ico svg { width: 24px; height: 24px; }
.contact-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--ink-soft); font-size: .96rem; font-weight: 600; }
.contact-card a:hover { color: var(--green); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 24px; }
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; }

/* =========================================================
   FAQ — filled, borderless
   ========================================================= */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 14px; }
.faq { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.faq[open] { box-shadow: var(--shadow-md); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-serif); font-size: 1.14rem; color: var(--ink); font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq-plus { width: 32px; height: 32px; border-radius: 50%; background: var(--green-tint); color: var(--green); display: grid; place-items: center; flex-shrink: 0; transition: transform .35s var(--ease), background .3s, color .3s; font-size: 1.4rem; line-height: 1; }
.faq[open] summary .faq-plus { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq .faq-body { padding: 0 26px 24px; color: var(--ink-soft); font-size: .96rem; line-height: 1.7; }

/* =========================================================
   FOOTER — no divider lines
   ========================================================= */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,.75); padding-top: clamp(56px, 8vw, 92px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin: 18px 0 22px; font-size: .94rem; max-width: 300px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,.09); display: grid; place-items: center; color: #fff; transition: background .3s, transform .3s; }
.footer-social a:hover { background: var(--coral); transform: translateY(-4px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h5 { color: #fff; font-family: var(--font-sans); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { font-size: .94rem; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .92rem; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--green-soft); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 26px; font-size: .84rem; background: rgba(0,0,0,.15); margin-top: 10px; border-radius: 16px 16px 0 0; padding-inline: 24px; }
.footer-bottom a { color: var(--green-soft); }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.float-stack {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.float-btn {
  width: 58px; height: 58px; border-radius: 50%; color: #fff;
  display: grid; place-items: center; transition: transform .35s var(--ease);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 30px; height: 30px; }
.wa-float { background: #25D366; box-shadow: 0 12px 30px rgba(37,211,102,.45); animation: wa-pulse 2.6s infinite; }
.ig-float {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 12px 30px rgba(214,36,159,.42);
}
.ig-float svg { width: 28px; height: 28px; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45), 0 12px 30px rgba(37,211,102,.4); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 12px 30px rgba(37,211,102,.4); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 12px 30px rgba(37,211,102,.4); } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card, .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: min(440px, 100%); margin-inline: auto; order: -1; }
  .services-grid, .blog-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .about-split, .contact-split { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Hide header phone on tighter desktops so the nav breathes */
@media (max-width: 1200px) {
  .header-phone { display: none; }
  .nav a { padding: 9px 12px; }
  .site-header .container { gap: 16px; }
}

@media (max-width: 1024px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  /* backdrop-filter on the header turns it into the containing block for the
     fixed mobile panel inside it — use an opaque background instead on mobile */
  .site-header.scrolled {
    -webkit-backdrop-filter: none; backdrop-filter: none;
    background: rgba(251,246,236,.97);
  }
  .nav.mobile-nav {
    display: flex; position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    flex-direction: column; align-items: stretch; gap: 4px; justify-content: flex-start;
    background: var(--cream); padding: 100px 24px 40px; z-index: 99; overflow-y: auto;
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav-open .nav.mobile-nav { transform: translateX(0); }
  .nav.mobile-nav a { padding: 14px 18px; font-size: 1.05rem; border-radius: 14px; }
  .nav.mobile-nav a:hover, .nav.mobile-nav a.active { background: var(--green-tint); color: var(--green); }
  .nav.mobile-nav a.active { background: var(--green); color: #fff; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(28,42,28,.45); backdrop-filter: blur(2px); z-index: 98; opacity: 0; pointer-events: none; transition: opacity .4s; }
  .nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .services-grid, .blog-grid, .testi-grid, .creds-grid, .form-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .float-card.fc-1 { left: 0; top: 2%; }
  .float-card.fc-2 { right: 0; bottom: 4%; }
  .about-visual .exp-badge { right: 10px; padding: 16px 20px; }
  .about-visual .exp-badge b { font-size: 2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner .btn-row .btn { flex: 1; }
  .grid[style*="repeat(4"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 540px) {
  .header-cta .btn-clay { display: none; }
  .hero { padding-top: 120px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust .stat b { font-size: 1.8rem; }
  .cta-banner .btn-row { flex-direction: column; }
  .cta-banner .btn-row .btn { width: 100%; }
}
