/* =========================================================
   Pilates Academy Arjan — single page site
   Brand:  #009999 (teal)   Accent: #DDBF70 (gold)
   Text:   #4D4D4D           Ink:    #1c2b2b
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "MarselisPro";
  src: url("../fonts/MarselisPro-Light.ttf") format("truetype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "MarselisPro";
  src: url("../fonts/MarselisPro.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "MarselisPro";
  src: url("../fonts/MarselisPro-Italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "MarselisPro";
  src: url("../fonts/MarselisPro-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "MarselisPro";
  src: url("../fonts/MarselisPro-Black.ttf") format("truetype");
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --teal: #009999;
  --teal-d: #007a7a;
  --teal-dd: #0d3b3b;
  --gold: #ddbf70;
  --gold-d: #c9a94f;
  --ink: #1c2b2b;
  --text: #4d4d4d;
  --muted: #7d8a8a;
  --line: #e7ecec;
  --bg: #ffffff;
  --bg-soft: #f5f9f9;
  --bg-cream: #faf6ec;
  --radius: 18px;
  --radius-s: 12px;
  --shadow: 0 18px 50px -20px rgba(0, 60, 60, 0.28);
  --shadow-s: 0 8px 24px -12px rgba(0, 60, 60, 0.25);
  --maxw: 1180px;
  --font: "MarselisPro", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.01em; }
section { position: relative; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sec { padding: 96px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sec-head .eyebrow { display: inline-flex; }
.sec-head h2 { font-size: clamp(30px, 4.2vw, 46px); }
.sec-head p { margin-top: 16px; font-size: 18px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 16px; cursor: pointer;
  padding: 15px 28px; border-radius: 100px; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-s); }
.btn-primary:hover { background: var(--teal-d); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--teal-dd); }
.btn-gold:hover { background: var(--gold-d); transform: translateY(-3px); box-shadow: var(--shadow-s); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1eb655; transform: translateY(-3px); box-shadow: var(--shadow-s); }
.btn-lg { padding: 17px 34px; font-size: 17px; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 16px 0;
}
.header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: 0 2px 20px -10px rgba(0,60,60,.3); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; transition: height .3s; }
.header.scrolled .brand img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15.5px; font-weight: 700; color: var(--ink); transition: color .2s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--gold); transition: width .25s var(--ease); }
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--ink); transition: color .2s; }
.nav-phone svg { width: 18px; height: 18px; color: var(--teal); }
.nav-phone:hover { color: var(--teal); }
.burger { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.burger span { display: block; height: 2.5px; width: 24px; background: var(--ink); border-radius: 2px; transition: .3s; margin: 0 auto; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 150px 0 90px; overflow: hidden;
  background:
    radial-gradient(1100px 640px at 78% -8%, rgba(0,153,153,.13), transparent 60%),
    radial-gradient(760px 520px at 8% 108%, rgba(221,191,112,.20), transparent 60%),
    var(--bg-soft);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 100px; font-size: 13.5px; font-weight: 700; color: var(--teal-dd);
  box-shadow: var(--shadow-s); margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 4px rgba(37,211,102,.18); }
.hero-tagline { font-size: 13.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-d); margin-bottom: 14px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 64px); line-height: 1.04; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--teal); font-style: italic; }
.hero .lead { margin: 22px 0 30px; font-size: 19px; max-width: 560px; color: var(--text); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.trust-item svg { width: 20px; height: 20px; color: var(--teal); flex: none; }

/* hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dd) 100%);
  border-radius: 28px; padding: 34px; color: #fff; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.hero-card::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(221,191,112,.35), transparent 68%); border-radius: 50%;
}
.hero-card .k { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.hero-card h3 { color: #fff; font-size: 27px; margin: 6px 0 4px; }
.hero-card .price { display: inline-flex; align-items: baseline; gap: 8px; margin: 14px 0 2px; padding: 8px 16px; background: rgba(255,255,255,.12); border: 1px solid rgba(221,191,112,.5); border-radius: 100px; }
.hero-card .price .cur { font-size: 20px; font-weight: 900; color: #fff; line-height: 1; }
.hero-card .price .per { font-size: 14px; color: var(--gold); font-weight: 700; }
.hero-card ul { margin: 20px 0 24px; display: grid; gap: 11px; }
.hero-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: rgba(255,255,255,.92); }
.hero-card li svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 1px; }
.hero-card .btn { width: 100%; }
.hero-card .fine { text-align: center; margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,.6); }
.hero-float {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: 16px;
  padding: 14px 18px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.hero-float .avs { display: flex; }
.hero-float .avs span {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -10px; border: 2px solid #fff;
  background: var(--gold); display: grid; place-items: center; font-size: 13px; font-weight: 900; color: var(--teal-dd);
}
.hero-float .avs span:first-child { margin-left: 0; }
.hero-float .avs span:nth-child(2) { background: var(--teal); color: #fff; }
.hero-float .avs span:nth-child(3) { background: var(--teal-dd); color: var(--gold); }
.hero-float b { color: var(--ink); font-size: 14px; }
.hero-float small { display: block; color: var(--muted); font-size: 12.5px; }

/* ---------- Marquee / logos strip ---------- */
.strip { background: var(--teal-dd); padding: 20px 0; overflow: hidden; }
.strip-track { display: flex; gap: 56px; white-space: nowrap; animation: scroll 26s linear infinite; width: max-content; }
.strip-track span { color: rgba(255,255,255,.82); font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 12px; letter-spacing: .02em; }
.strip-track span::before { content: "✦"; color: var(--gold); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Feature cards (why us) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 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 .ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(150deg, rgba(0,153,153,.12), rgba(221,191,112,.18));
}
.card .ic svg { width: 28px; height: 28px; color: var(--teal); }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--text); }

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); position: relative;
  background: linear-gradient(150deg, var(--bg-cream), #fff);
  aspect-ratio: 4/3.4; display: grid; place-items: center; padding: 40px; border: 1px solid var(--line);
}
.about-visual .mark { width: 68%; opacity: .96; }
.about-visual .tag {
  position: absolute; bottom: 22px; left: 22px; right: 22px; background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center;
  gap: 12px; box-shadow: var(--shadow-s);
}
.about-visual .tag svg { width: 26px; height: 26px; color: var(--teal); flex: none; }
.about-visual .tag b { color: var(--ink); font-size: 15px; }
.about-visual .tag small { display: block; color: var(--muted); font-size: 13px; }
.about h2 { font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 18px; }
.about p { margin-bottom: 16px; }
.about .checks { display: grid; gap: 14px; margin: 24px 0 30px; }
.about .checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink); font-weight: 600; }
.about .checks svg { width: 24px; height: 24px; color: var(--teal); flex: none; margin-top: 1px; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 16px; border-radius: var(--radius-s); background: var(--bg-soft); border: 1px solid var(--line); }
.stat b { display: block; font-size: 38px; font-weight: 900; color: var(--teal); line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: 14px; color: var(--muted); font-weight: 700; letter-spacing: .02em; }

/* ---------- About pull quote ---------- */
.about .pull {
  margin: 26px 0 4px; padding: 16px 22px; border-left: 3px solid var(--gold);
  font-style: italic; font-size: 17px; color: var(--teal-dd); background: var(--bg-cream);
  border-radius: 0 12px 12px 0;
}

/* ---------- Franchise network ---------- */
.network { background: var(--bg-cream); }
.net-band {
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-dd) 100%); color: #fff;
  border-radius: 24px; padding: 34px 38px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.net-band::after { content: ""; position: absolute; right: -50px; top: -50px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(221,191,112,.3), transparent 68%); border-radius: 50%; }
.net-badge { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.net-badge img { width: 62px; height: 62px; background: #fff; border-radius: 16px; padding: 8px; flex: none; }
.net-badge b { display: block; color: #fff; font-size: 21px; }
.net-badge small { color: var(--gold); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.net-points { display: grid; gap: 12px; position: relative; z-index: 1; }
.net-point { display: flex; align-items: center; gap: 11px; font-size: 15px; color: rgba(255,255,255,.94); font-weight: 600; }
.net-point svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.net-label { text-align: center; margin: 40px 0 18px; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.net-locations { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.net-locations .loc {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  padding: 12px 20px; border-radius: 100px; font-weight: 700; color: var(--ink); font-size: 15.5px;
  transition: transform .25s var(--ease), border-color .25s;
}
.net-locations .loc:hover { transform: translateY(-3px); border-color: var(--gold); }
.net-locations .loc small { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--bg-soft); padding: 2px 8px; border-radius: 100px; }
.net-locations .loc.current { background: var(--teal); color: #fff; border-color: var(--teal); }
.net-locations .loc.current small { background: rgba(255,255,255,.2); color: var(--gold); }

/* ---------- Equipment / classes grid ---------- */
.eq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.eq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-s); padding: 22px 20px;
  transition: transform .25s var(--ease), border-color .25s, background .25s; display: flex; gap: 14px; align-items: center;
}
.eq:hover { transform: translateY(-4px); border-color: var(--gold); background: var(--bg-cream); }
.eq .d { width: 42px; height: 42px; border-radius: 11px; background: rgba(0,153,153,.1); display: grid; place-items: center; flex: none; }
.eq .d svg { width: 22px; height: 22px; color: var(--teal); }
.eq b { color: var(--ink); font-size: 16px; display: block; }
.eq small { color: var(--muted); font-size: 12.5px; }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-soft); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.featured { border: 2px solid var(--teal); box-shadow: var(--shadow); position: relative; }
.plan.featured::before {
  content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--teal-dd); font-size: 12px; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px; white-space: nowrap;
}
.plan .name { font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
.plan .desc { font-size: 14.5px; color: var(--muted); margin: 8px 0 18px; min-height: 42px; }
.plan .offer-line {
  display: inline-flex; align-items: center; gap: 9px; font-size: 15.5px; font-weight: 700;
  color: var(--teal-dd); background: var(--bg-cream); border: 1px solid rgba(221,191,112,.55);
  padding: 10px 16px; border-radius: 100px;
}
.plan .offer-line svg { width: 19px; height: 19px; color: var(--gold-d); flex: none; }
.plan.featured .offer-line { background: rgba(0,153,153,.08); border-color: rgba(0,153,153,.3); color: var(--teal-d); }
.plan.featured .offer-line svg { color: var(--teal); }
.plan ul { margin: 22px 0 26px; display: grid; gap: 12px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.plan li svg { width: 19px; height: 19px; color: var(--teal); flex: none; margin-top: 2px; }
.plan .btn { width: 100%; margin-top: auto; }
.price-note { text-align: center; margin-top: 34px; font-size: 14.5px; color: var(--muted); }
.price-note a { color: var(--teal); font-weight: 700; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-s); }
.quote .stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 15.5px; color: var(--text); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote .who .a { width: 42px; height: 42px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 16px; flex: none; }
.quote .who b { color: var(--ink); font-size: 15px; display: block; }
.quote .who small { color: var(--muted); font-size: 13px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq {
  border: 1px solid var(--line); border-radius: var(--radius-s); margin-bottom: 14px; overflow: hidden;
  background: #fff; transition: border-color .25s, box-shadow .25s;
}
.faq.open { border-color: var(--teal); box-shadow: var(--shadow-s); }
.faq button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font);
  font-size: 17.5px; font-weight: 700; color: var(--ink);
}
.faq .ic { width: 26px; height: 26px; flex: none; position: relative; transition: transform .3s; }
.faq .ic::before, .faq .ic::after { content: ""; position: absolute; background: var(--teal); border-radius: 2px; }
.faq .ic::before { top: 50%; left: 4px; right: 4px; height: 2.5px; transform: translateY(-50%); }
.faq .ic::after { left: 50%; top: 4px; bottom: 4px; width: 2.5px; transform: translateX(-50%); transition: opacity .3s; }
.faq.open .ic::after { opacity: 0; }
.faq .ans { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq .ans p { padding: 0 24px 22px; font-size: 15.5px; color: var(--text); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-dd) 100%);
  border-radius: 28px; padding: 60px; text-align: center; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-band::before { content: ""; position: absolute; top: -80px; right: -40px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(221,191,112,.3), transparent 65%); }
.cta-band::after { content: ""; position: absolute; bottom: -100px; left: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%); }
.cta-band .in { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.cta-band p { color: rgba(255,255,255,.85); font-size: 18px; margin: 16px auto 30px; max-width: 560px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info .item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info .item .ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(0,153,153,.1); display: grid; place-items: center; flex: none; }
.contact-info .item .ic svg { width: 24px; height: 24px; color: var(--teal); }
.contact-info .item b { display: block; color: var(--ink); font-size: 16px; margin-bottom: 2px; }
.contact-info .item a, .contact-info .item span { color: var(--text); font-size: 15.5px; }
.contact-info .item a:hover { color: var(--teal); }
.map-embed { border: 0; width: 100%; height: 100%; min-height: 260px; border-radius: var(--radius); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-s); }
.contact-form h3 { font-size: 24px; margin-bottom: 6px; }
.contact-form .fine { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 15.5px; color: var(--ink); padding: 13px 15px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,153,153,.14); background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; }

/* ---------- Footer ---------- */
.footer { background: var(--teal-dd); color: rgba(255,255,255,.72); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 42px; }
.footer .f-brand img { height: 54px; margin-bottom: 18px; }
.footer .f-brand p { font-size: 14.5px; max-width: 280px; }
.footer h4 { color: #fff; font-size: 15px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { display: grid; gap: 11px; }
.footer a { color: rgba(255,255,255,.72); font-size: 14.5px; transition: color .2s; }
.footer a:hover { color: var(--gold); }
.footer .socials { display: flex; gap: 12px; margin-top: 6px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer .socials a:hover { background: var(--gold); transform: translateY(-3px); }
.footer .socials svg { width: 19px; height: 19px; color: #fff; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ---------- Floating actions ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab a {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow);
  transition: transform .25s var(--ease); position: relative;
}
.fab a:hover { transform: scale(1.08); }
.fab .wa { background: #25d366; }
.fab .call { background: var(--teal); }
.fab svg { width: 26px; height: 26px; color: #fff; }
.fab .wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1;
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards, .quotes, .price-grid { grid-template-columns: 1fr 1fr; }
  .eq-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-visual { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .sec { padding: 68px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-cta .btn-primary { padding: 11px 18px; font-size: 15px; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px 24px 24px; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0;
    pointer-events: none; transition: .3s;
  }
  .nav-links.open { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-links a::after { display: none; }
  .burger { display: flex; }
  .cards, .quotes, .price-grid, .stats { grid-template-columns: 1fr; }
  .eq-grid { grid-template-columns: 1fr 1fr; }
  .plan.featured { order: -1; }
  .cta-band { padding: 44px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-float { position: static; margin-top: 16px; }
  .fab a { width: 52px; height: 52px; }
  .net-band { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 24px; }
  .net-points { width: 100%; }
}
@media (max-width: 440px) {
  .eq-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-band .btns .btn { width: 100%; }
}
