/* ===================================================================
   ForLogicx Solutions — Global Stylesheet  (LIGHT / WHITE THEME)
   Animated 3D, fully responsive, multipage
   =================================================================== */

:root {
  /* Brand colors pulled from the logo */
  --green: #1faf4f;
  --yellow: #f5b316;
  --red: #e8443a;
  --blue: #2f6fd1;

  /* Light theme tokens */
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-2: #0f1830;          /* footer (dark for contrast) */
  --surface: #ffffff;
  --surface-2: #f3f6fb;
  --border: #e6ebf3;
  --ink: #16203a;
  --text: #1b2640;
  --text-soft: #5d6b86;

  --radius: 18px;
  --maxw: 1200px;
  --nav-h: 78px;
  --grad: linear-gradient(135deg, var(--green), var(--blue) 55%, var(--red));
  --shadow-sm: 0 6px 18px -10px rgba(20, 35, 80, 0.18);
  --shadow: 0 24px 50px -26px rgba(20, 35, 80, 0.30);
  --shadow-lg: 0 40px 80px -40px rgba(20, 35, 80, 0.40);
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Soft decorative gradient blobs */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
  z-index: -2;
  pointer-events: none;
  animation: floatBlob 18s ease-in-out infinite;
}
body::before {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  top: -140px; right: -120px;
}
body::after {
  width: 540px; height: 540px;
  background: radial-gradient(circle, var(--green), transparent 70%);
  bottom: -180px; left: -160px;
  animation-delay: -9s;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.12); }
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }
.bg-soft { background: var(--bg-soft); }

/* ---------- Typography ---------- */
h1, h2, h3 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; color: var(--ink); }
.section-sub { color: var(--text-soft); max-width: 640px; font-size: 1.06rem; }
.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.center-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.center-head .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.98rem; cursor: pointer; border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--grad); background-size: 200% 200%;
  color: #fff; box-shadow: 0 14px 30px -10px rgba(47, 111, 209, 0.55);
  animation: gradShift 6s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); }
.btn-ghost {
  background: #fff; color: var(--ink);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-3px); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  display: flex; align-items: center; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s;
}
.nav.scrolled {
  box-shadow: 0 10px 30px -18px rgba(20, 35, 80, 0.35);
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 16px; border-radius: 30px;
  font-size: 0.95rem; font-weight: 500; color: var(--text-soft);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--blue); background: var(--surface-2); }
.nav-cta { margin-left: 10px; padding: 11px 22px !important; font-size: 0.92rem; color:#fff !important; }
/* CTA must always keep its gradient, even if it points to the current page */
.nav-links a.nav-cta.active { background: var(--grad); color: #fff; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 80% -5%, rgba(47,111,209,0.10), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(31,175,79,0.10), transparent 55%),
    var(--bg);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 22px; }
.hero p.lead { font-size: 1.16rem; color: var(--text-soft); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 30px; margin-top: 46px; flex-wrap: wrap; }
.hero-badge { display: flex; flex-direction: column; }
.hero-badge b { font-size: 2.6rem; font-weight: 800; line-height: 1.1; color: var(--ink); }
.hero-badge small { color: var(--text-soft); font-size: 0.85rem; }
.hero-visual { display: flex; justify-content: center; }
.float-card {
  background: #fff; border: 1px solid var(--border); border-radius: 28px;
  padding: 44px; box-shadow: var(--shadow-lg);
  animation: floatY 5s ease-in-out infinite; transform-style: preserve-3d;
}
.float-card img { filter: drop-shadow(0 14px 24px rgba(20,35,80,0.12)); }
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

/* ---------- Marquee (trust strip) ---------- */
.marquee {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-soft); overflow: hidden; padding: 22px 0;
}
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: scrollX 22s linear infinite; }
.marquee-track span { font-weight: 600; color: var(--text-soft); font-size: 1.05rem; display: inline-flex; align-items: center; gap: 10px; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Vector icons ---------- */
.ic { color: #fff; }
.ic svg { width: 30px; height: 30px; display: block; }
.card .ic { animation: icoFloat 4s ease-in-out infinite; }
.card:hover .ic { transform: translateY(-4px) rotate(-6deg); }
.card .ic { transition: transform 0.35s ease; }
@keyframes icoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.ic-inline {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.15em; height: 1.15em; vertical-align: -0.2em; flex: 0 0 auto;
}
.ic-inline svg { width: 100%; height: 100%; }
.info-card .ic svg { width: 24px; height: 24px; }
.socials a svg { width: 18px; height: 18px; }
.fab svg { width: 26px; height: 26px; }
.btn .ic-inline { width: 1.1em; height: 1.1em; }

/* Animated SVG section decoration */
.deco-orbit { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.deco-orbit svg { position: absolute; opacity: 0.5; }
.deco-orbit .o1 { top: 8%; left: 4%; width: 120px; animation: spin 26s linear infinite; }
.deco-orbit .o2 { bottom: 10%; right: 6%; width: 90px; animation: spin 34s linear infinite reverse; }
.deco-orbit .dot { animation: floatDot 6s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatDot { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
section > .container { position: relative; z-index: 1; }

/* ---------- Animated SVG illustrations / infographics ---------- */
.illus { width: 100%; }
.illus svg { width: 100%; height: auto; display: block; overflow: visible; }
.illus [class^="il-"] { transform-box: fill-box; }

.il-float  { animation: ilFloat 3.6s ease-in-out infinite; transform-origin: center; }
.il-float2 { animation: ilFloat 4.4s ease-in-out infinite; animation-delay: -1.2s; transform-origin: center; }
.il-pulse  { animation: ilPulse 2.6s ease-in-out infinite; transform-origin: center; }
.il-dash   { stroke-dasharray: 6 8; animation: ilDash 1.1s linear infinite; }
.il-type   { transform-origin: left center; animation: ilType 3s ease-in-out infinite; }
.il-bar    { transform-origin: bottom; animation: ilBar 3.2s ease-in-out infinite alternate; }
.il-bar.b2 { animation-delay: -0.5s; }
.il-bar.b3 { animation-delay: -1.0s; }
.il-bar.b4 { animation-delay: -1.5s; }
.il-bar.b5 { animation-delay: -2.0s; }
.il-draw   { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: ilDraw 3.4s ease-in-out infinite alternate; }
.il-draw2  { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: ilDraw 3.4s ease-in-out infinite alternate; animation-delay: -0.5s; }
.il-dot    { animation: ilDot 2.6s ease-in infinite; }
.il-dot.d2 { animation-delay: -0.9s; }
.il-dot.d3 { animation-delay: -1.7s; }

@keyframes ilFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ilPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.82; } }
@keyframes ilDash  { to { stroke-dashoffset: -28; } }
@keyframes ilType  { 0%,100% { transform: scaleX(0.45); } 50% { transform: scaleX(1); } }
@keyframes ilBar   { from { transform: scaleY(0.4); } to { transform: scaleY(1); } }
@keyframes ilDraw  { from { stroke-dashoffset: 1000; } to { stroke-dashoffset: 0; } }
@keyframes ilDot   { 0% { transform: translateY(0); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { transform: translateY(210px); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .il-float, .il-float2, .il-pulse, .il-dash, .il-type, .il-bar, .il-draw, .il-draw2, .il-dot { animation: none; }
  .il-draw, .il-draw2 { stroke-dashoffset: 0; }
  .il-bar { transform: none; }
}

/* ---------- Interactive 3D canvases ---------- */
.mini3d { width: 100%; height: 340px; display: block; touch-action: none; }
.mini-hint { text-align: center; color: var(--text-soft); font-size: 0.82rem; margin-top: 10px; }
.mini-hint::before { content: "🖱️ "; }

.showcase {
  background:
    radial-gradient(700px 380px at 15% 20%, rgba(31,175,79,0.10), transparent 60%),
    radial-gradient(700px 380px at 85% 80%, rgba(47,111,209,0.12), transparent 60%),
    var(--bg-soft);
}
.showcase .split { gap: 40px; }
.showcase-stage {
  border-radius: 26px; border: 1px solid var(--border); background: #fff;
  box-shadow: var(--shadow); padding: 10px; position: relative; overflow: hidden;
}
.showcase-stage::before {
  content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0.04;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ---------- Grid + cards ---------- */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--card-accent, var(--grad)); opacity: 0.9; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #dfe6f1; }
.card .ic {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 20px; color: #fff;
  background: var(--card-accent, var(--grad)); box-shadow: 0 12px 24px -12px rgba(20,35,80,0.4);
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.96rem; }
.card .more { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-size: 0.9rem; }

.a-green { --card-accent: linear-gradient(135deg, var(--green), #0c7a36); }
.a-blue  { --card-accent: linear-gradient(135deg, var(--blue), #1c4ea0); }
.a-red   { --card-accent: linear-gradient(135deg, var(--red), #b32f27); }
.a-yellow{ --card-accent: linear-gradient(135deg, var(--yellow), #c98a0d); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split ul.checks { margin-top: 22px; display: grid; gap: 14px; }
.split ul.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); }
.split ul.checks li::before {
  content: "✓"; color: #fff; font-weight: 800; background: var(--green);
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  flex: 0 0 24px; font-size: 0.8rem;
}
.media-frame {
  border-radius: 24px; border: 1px solid var(--border); background: var(--bg-soft);
  padding: 50px; display: grid; place-items: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.media-frame::after { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0.05; }

/* ---------- Stats band ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: var(--grad); border-radius: 24px; padding: 46px; box-shadow: var(--shadow);
}
.stat { text-align: center; color: #fff; }
.stat b { font-size: 3.2rem; font-weight: 800; line-height: 1.1; display: block; }
.stat span { color: rgba(255,255,255,0.9); font-size: 0.9rem; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; position: relative; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-size: 2.4rem; font-weight: 800; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative;
}
.quote .stars { color: var(--yellow); margin-bottom: 12px; font-size: 1.05rem; letter-spacing: 2px; }
.quote p { color: var(--text); font-size: 0.98rem; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-weight: 700; }
.quote .who b { display: block; font-size: 0.95rem; color: var(--ink); }
.quote .who small { color: var(--text-soft); font-size: 0.82rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 4px 22px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; padding: 18px 0; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--blue); transition: transform 0.25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-soft); padding: 0 0 20px; font-size: 0.96rem; }

/* ---------- Pricing ---------- */
.price { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-sm); position: relative; transition: transform .3s, box-shadow .3s; }
.price:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.price .tag { position: absolute; top: 18px; right: 18px; background: var(--grad); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.price h3 { font-size: 1.25rem; }
.price .amt { font-size: 2.2rem; font-weight: 800; color: var(--ink); margin: 8px 0 4px; }
.price .amt small { font-size: 0.85rem; font-weight: 500; color: var(--text-soft); }
.price ul { margin: 20px 0 26px; display: grid; gap: 12px; }
.price ul li { color: var(--text-soft); font-size: 0.94rem; display: flex; gap: 10px; }
.price ul li::before { content: "✓"; color: var(--green); font-weight: 800; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad); background-size: 200% 200%; animation: gradShift 8s ease infinite;
  border-radius: 28px; padding: 58px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.92); margin-bottom: 28px; }
.cta-band .btn-ghost { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); color: #fff; box-shadow: none; }
.cta-band .btn-light { background: #fff; color: var(--ink); }
.cta-band .btn-light:hover { transform: translateY(-3px); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: center; box-shadow: var(--shadow-sm);
  transition: transform 0.3s, border-color 0.3s;
}
.info-card:hover { transform: translateY(-5px); border-color: var(--blue); }
.info-card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; font-size: 1.4rem; flex: 0 0 52px; color:#fff; }
.info-card small { color: var(--text-soft); display: block; font-size: 0.8rem; }
.info-card b { font-size: 1.02rem; color: var(--ink); }
.info-list { display: grid; gap: 18px; }

form.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; display: grid; gap: 18px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 6px; display: block; }
input, textarea, select {
  width: 100%; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 16px; color: var(--ink); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
input::placeholder, textarea::placeholder { color: #9aa6bd; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(47,111,209,0.12); }
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--text-soft); text-align: center; }
.form-note.ok { color: var(--green); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 70px; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -20%, rgba(47,111,209,0.10), transparent 60%),
    radial-gradient(800px 460px at 0% 120%, rgba(31,175,79,0.10), transparent 55%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.page-hero p { color: var(--text-soft); max-width: 660px; margin: 0 auto; font-size: 1.1rem; }
.crumbs { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 18px; }
.crumbs a { color: var(--blue); }

/* ---------- Footer (dark) ---------- */
.footer { background: var(--bg-2); color: #c3cee0; padding: 70px 0 30px; margin-top: 40px; }
.footer h4 { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 36px; }
.footer .brand { margin-bottom: 16px; }
.footer .brand img { background:#fff; padding:8px 12px; border-radius:12px; }
.footer p.about { color: #9fabc4; font-size: 0.92rem; max-width: 320px; }
.footer h4 { font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: #9fabc4; font-size: 0.92rem; transition: color 0.2s; }
.footer ul li a:hover { color: #fff; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color:#fff; transition: transform 0.25s, background 0.25s; }
.socials a:hover { transform: translateY(-4px); background: rgba(255,255,255,0.16); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #8794ae; font-size: 0.86rem; }

/* Floating WhatsApp button */
.fab {
  position: fixed; bottom: 26px; right: 26px; width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #0c7a36); display: grid; place-items: center;
  font-size: 1.6rem; color:#fff; z-index: 90; box-shadow: 0 14px 30px -8px rgba(31,175,79,0.55);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,175,79,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(31,175,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,175,79,0); }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-visual { order: -1; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(16px);
    padding: 16px 24px 28px; gap: 4px; border-bottom: 1px solid var(--border);
    transform: translateY(-130%); transition: transform 0.35s ease; z-index: 99;
    box-shadow: 0 20px 40px -20px rgba(20,35,80,0.25);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; }
  .nav-cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .burger { display: flex; }
  section { padding: 72px 0; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 540px) {
  .grid.cols-4, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .steps, .stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 18px; }
  .container { padding: 0 18px; }
  .fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
