/* =========================================================
   360 Campaigneer — Global Stylesheet
   Palette: Dark Poppy Purple
   ========================================================= */

:root {
  /* Backgrounds */
  --bg-deep:    #0a0414;   /* near-black poppy purple */
  --bg-dark:    #120726;
  --bg-mid:     #1c0c44;

  /* Poppy purple — main brand color */
  --poppy:        #9b2cf0;  /* vivid poppy purple */
  --poppy-bright: #b347ff;
  --poppy-deep:   #6d18b8;
  --poppy-light:  #c89bff;

  /* Accents */
  --magenta:    #e0408a;
  --gold:       #f5a623;
  --gold-light: #fcd34d;
  --cyan:       #38e0d0;

  /* Text */
  --white:      #ffffff;
  --text:       rgba(255,255,255,0.86);
  --text-muted: rgba(255,255,255,0.56);
  --text-dim:   rgba(255,255,255,0.38);

  /* Surfaces */
  --card-bg:     rgba(255,255,255,0.038);
  --card-bg-2:   rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.085);
  --card-hover:  rgba(155,44,240,0.30);

  /* Gradients */
  --grad-poppy: linear-gradient(135deg, #9b2cf0, #e0408a);
  --grad-soft:  linear-gradient(135deg, #b347ff, #6366f1);
  --grad-gold:  linear-gradient(135deg, #f5a623, #e0408a);
  --grad-cyan:  linear-gradient(135deg, #9b2cf0, #38e0d0);

  --radius:    18px;
  --radius-lg: 28px;
  --maxw:      1240px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
}

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

/* ───────────── Interactive background ───────────── */
.bg-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 12% 8%,  rgba(155,44,240,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 92%, rgba(224,64,138,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 60% 45%, rgba(56,224,208,0.05) 0%, transparent 70%);
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000 35%, transparent 90%);
}
/* floating orbs */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; animation: float 18s var(--ease) infinite; }
.orb.o1 { width: 460px; height: 460px; background: var(--poppy);   top: -120px; left: -80px; }
.orb.o2 { width: 380px; height: 380px; background: var(--magenta); bottom: -120px; right: -60px; animation-delay: -6s; }
.orb.o3 { width: 300px; height: 300px; background: var(--poppy-deep); top: 40%; left: 55%; animation-delay: -11s; opacity: 0.35; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-50px) scale(1.12); }
  66%     { transform: translate(-30px,30px) scale(0.94); }
}
/* cursor glow */
.cursor-glow {
  position: fixed; width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,44,240,0.16) 0%, transparent 65%);
  transform: translate(-50%,-50%); pointer-events: none; z-index: 1;
  transition: opacity 0.4s; opacity: 0;
}
#bg-particles { position: absolute; inset: 0; }

/* ───────────── Layout ───────────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 6%; position: relative; z-index: 2; }
section { position: relative; z-index: 2; padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ───────────── Nav ───────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(10,4,20,0.72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
nav.site-nav.scrolled { background: rgba(10,4,20,0.96); }
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 0.4rem; }
.nav-logo .accent { color: var(--poppy-light); }

.nav-links { display: flex; gap: 1.9rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  color: var(--text-muted); font-size: 0.86rem; font-weight: 500;
  transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0;
}
.nav-links a.nav-link:hover, .nav-links a.nav-link.active { color: var(--white); }
.nav-links a.nav-link.active { position: relative; }
.nav-links a.nav-link.active::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--grad-poppy); border-radius: 2px;
}
.caret { width: 9px; height: 9px; transition: transform 0.25s; }

/* dropdown */
.has-drop > .dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; background: rgba(18,7,38,0.97); backdrop-filter: blur(20px);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 0.6rem; opacity: 0; visibility: hidden; transition: all 0.25s var(--ease);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5); z-index: 50;
}
.has-drop:hover > .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-drop:hover .caret { transform: rotate(180deg); }
.dropdown a {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.7rem 0.9rem; border-radius: 12px; transition: background 0.2s;
}
.dropdown a:hover { background: rgba(155,44,240,0.14); }
.dropdown a strong { color: var(--white); font-size: 0.92rem; font-weight: 600; }
.dropdown a span { color: var(--text-muted); font-size: 0.76rem; }

.nav-cta {
  background: var(--grad-poppy); color: var(--white); font-weight: 600; font-size: 0.84rem;
  padding: 0.6rem 1.3rem; border-radius: 12px; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(155,44,240,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(155,44,240,0.5); }

.nav-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 250; background: rgba(10,4,20,0.98); backdrop-filter: blur(20px);
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column; padding: 5rem 8% 2rem;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a { color: var(--text); font-size: 1.1rem; font-weight: 600; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-drawer a.sub { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); padding-left: 1rem; }
.mobile-close { position: absolute; top: 1.4rem; right: 6%; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }

/* ───────────── Buttons ───────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.92rem; padding: 0.85rem 1.7rem; border-radius: 14px; border: none; cursor: pointer; transition: all 0.25s var(--ease); }
.btn-primary { background: var(--grad-poppy); color: var(--white); box-shadow: 0 10px 30px rgba(155,44,240,0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(155,44,240,0.5); }
.btn-gold { background: var(--grad-gold); color: #1a0a02; box-shadow: 0 10px 30px rgba(245,166,35,0.3); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(245,166,35,0.45); }
.btn-ghost { background: var(--card-bg); color: var(--white); border: 1px solid var(--card-border); }
.btn-ghost:hover { background: var(--card-bg-2); border-color: var(--card-hover); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #062b14; }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37,211,102,0.4); }

/* ───────────── Section headers ───────────── */
.sec-hd { max-width: 720px; margin-bottom: 3rem; }
.sec-hd.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-label { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--poppy-light); padding: 0.35rem 0.85rem; border: 1px solid rgba(155,44,240,0.3); border-radius: 100px; background: rgba(155,44,240,0.08); margin-bottom: 1.1rem; }
.sec-title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.sec-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.grad-text { background: var(--grad-poppy); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.grad-gold-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ───────────── Hero ───────────── */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 70px; }
.hero-inner { max-width: 880px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 600; color: var(--poppy-light); background: rgba(155,44,240,0.1); border: 1px solid rgba(155,44,240,0.28); padding: 0.45rem 1rem; border-radius: 100px; margin-bottom: 1.6rem; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: 1.5rem; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-muted); max-width: 620px; margin-bottom: 1.4rem; }
.hero-quote { font-style: italic; color: var(--poppy-light); border-left: 3px solid var(--poppy); padding-left: 1rem; max-width: 560px; margin-bottom: 2rem; font-size: 1rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; background: var(--grad-poppy); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat .lbl { font-size: 0.82rem; color: var(--text-muted); }

/* ───────────── Generic cards / grids ───────────── */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg);
  padding: 2rem; transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); border-color: var(--card-hover); background: var(--card-bg-2); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(155,44,240,0.15); }
.card-ico { font-size: 2rem; margin-bottom: 1rem; display: inline-flex; width: 58px; height: 58px; align-items: center; justify-content: center; border-radius: 16px; background: rgba(155,44,240,0.12); border: 1px solid rgba(155,44,240,0.22); }
.card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card-link { color: var(--poppy-light); font-weight: 600; font-size: 0.88rem; margin-top: 1rem; display: inline-block; }
.card-link:hover { color: var(--white); }

/* metric cards */
.metric-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.8rem; text-align: center; transition: all 0.3s var(--ease); }
.metric-card:hover { border-color: var(--card-hover); transform: translateY(-4px); }
.metric-val { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; background: var(--grad-poppy); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.metric-lbl { color: var(--text-muted); font-size: 0.86rem; margin-top: 0.4rem; }

/* ───────────── Pricing ───────────── */
.price-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; transition: all 0.35s var(--ease); position: relative; }
.price-card:hover { transform: translateY(-6px); border-color: var(--card-hover); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.price-card.hot { border-color: rgba(155,44,240,0.5); background: linear-gradient(180deg, rgba(155,44,240,0.12), var(--card-bg)); box-shadow: 0 0 0 1px rgba(155,44,240,0.3), 0 20px 50px rgba(155,44,240,0.18); }
.hot-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-poppy); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 100px; white-space: nowrap; }
.plan-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--white); margin-bottom: 0.6rem; }
.plan-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--white); }
.plan-per { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 0.8rem; }
.plan-target { color: var(--poppy-light); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.3rem; }
.plan-roas { display: inline-block; font-size: 0.78rem; font-weight: 600; color: var(--gold-light); background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.25); padding: 0.2rem 0.7rem; border-radius: 100px; margin-bottom: 1.2rem; }
.plan-feats { list-style: none; margin-bottom: 1.5rem; flex-grow: 1; }
.plan-feats li { font-size: 0.88rem; color: var(--text-muted); padding: 0.45rem 0 0.45rem 1.6rem; position: relative; border-bottom: 1px solid rgba(255,255,255,0.04); }
.plan-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--poppy-light); font-weight: 700; }
.plan-btn { text-align: center; background: var(--card-bg-2); border: 1px solid var(--card-border); color: var(--white); font-weight: 600; padding: 0.8rem; border-radius: 12px; transition: all 0.25s; }
.plan-btn:hover { background: var(--grad-poppy); border-color: transparent; }
.price-card.hot .plan-btn { background: var(--grad-poppy); border-color: transparent; }

/* ───────────── Rate table ───────────── */
.rate-table-wrap { overflow-x: auto; border: 1px solid var(--card-border); border-radius: var(--radius); }
table.rate { width: 100%; border-collapse: collapse; min-width: 640px; }
table.rate th, table.rate td { text-align: left; padding: 0.85rem 1.1rem; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
table.rate th { background: rgba(155,44,240,0.1); color: var(--white); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
table.rate td { color: var(--text-muted); }
table.rate td.price { color: var(--poppy-light); font-weight: 600; white-space: nowrap; }
table.rate tr:hover td { background: rgba(255,255,255,0.02); }

/* ───────────── Steps / process ───────────── */
.step-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s var(--ease); }
.step-card:hover { border-color: var(--card-hover); transform: translateY(-5px); }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; background: var(--grad-poppy); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.8rem; }
.step-title { font-size: 1.15rem; color: var(--white); font-weight: 600; margin-bottom: 0.5rem; }
.step-desc { color: var(--text-muted); font-size: 0.92rem; }

/* ───────────── Testimonials ───────────── */
.testi-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem; }
.testi-stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { color: var(--text); font-size: 0.98rem; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-poppy); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }
.testi-name { font-weight: 600; color: var(--white); font-size: 0.92rem; }
.testi-role { color: var(--text-dim); font-size: 0.8rem; }

/* ───────────── Accordion ───────────── */
.accordion-item { border: 1px solid var(--card-border); border-radius: 14px; margin-bottom: 0.8rem; overflow: hidden; background: var(--card-bg); }
.accordion-head { width: 100%; text-align: left; background: none; border: none; color: var(--white); font-weight: 600; font-size: 0.95rem; padding: 1.1rem 1.3rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-head .plus { color: var(--poppy-light); transition: transform 0.3s; font-size: 1.2rem; }
.accordion-item.open .plus { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.accordion-body .inner { padding: 0 1.3rem 1.2rem; color: var(--text-muted); font-size: 0.9rem; }

/* ───────────── Feature list ───────────── */
.feat-list { list-style: none; }
.feat-list li { position: relative; padding: 0.55rem 0 0.55rem 1.9rem; color: var(--text-muted); font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.feat-list li::before { content: '→'; position: absolute; left: 0; color: var(--poppy-light); font-weight: 700; }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.pill { font-size: 0.78rem; color: var(--text-muted); background: var(--card-bg-2); border: 1px solid var(--card-border); padding: 0.3rem 0.8rem; border-radius: 100px; }

/* ───────────── Forms ───────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.8rem; }
.c-detail { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: center; }
.c-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(155,44,240,0.12); border: 1px solid rgba(155,44,240,0.22); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.c-txt strong { display: block; color: var(--white); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.15rem; }
.c-txt { color: var(--text-muted); font-size: 0.92rem; }
.contact-form { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fi { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--card-border); border-radius: 12px; padding: 0.85rem 1rem; color: var(--white); font-family: inherit; font-size: 0.92rem; margin-bottom: 1rem; transition: border 0.2s; }
.fi:focus { outline: none; border-color: var(--poppy); }
.fi::placeholder { color: var(--text-dim); }
textarea.fi { min-height: 120px; resize: vertical; }
select.fi { cursor: pointer; }
select.fi option { background: var(--bg-dark); }
.form-note { color: var(--text-dim); font-size: 0.8rem; text-align: center; margin-top: 0.8rem; }
.form-alert { padding: 0.9rem 1.1rem; border-radius: 12px; margin-bottom: 1.2rem; font-size: 0.9rem; }
.form-alert.ok { background: rgba(56,224,208,0.1); border: 1px solid rgba(56,224,208,0.3); color: var(--cyan); }
.form-alert.err { background: rgba(224,64,138,0.1); border: 1px solid rgba(224,64,138,0.3); color: var(--magenta); }

/* ───────────── CTA band ───────────── */
.cta-band { background: linear-gradient(135deg, rgba(155,44,240,0.18), rgba(224,64,138,0.1)); border: 1px solid rgba(155,44,240,0.3); border-radius: var(--radius-lg); padding: 3.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 1rem; }
.cta-band p { color: var(--text-muted); max-width: 540px; margin: 0 auto 1.8rem; }

/* ───────────── Page hero (interior) ───────────── */
.page-hero { padding: 9rem 0 4rem; text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem,5vw,3.8rem); margin-bottom: 1.1rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 680px; margin: 0 auto; }
.breadcrumb { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--poppy-light); }
.breadcrumb span { margin: 0 0.4rem; }

/* ───────────── Footer ───────────── */
footer { position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.07); padding: 4rem 0 2rem; margin-top: 4rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 320px; margin-top: 1rem; }
.footer-brand .socials { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-brand .socials a { width: 38px; height: 38px; border-radius: 10px; background: var(--card-bg); border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
.footer-brand .socials a:hover { background: var(--grad-poppy); border-color: transparent; transform: translateY(-3px); }
.f-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 1rem; }
.f-col ul { list-style: none; }
.f-col li a { color: var(--text-muted); font-size: 0.88rem; display: block; padding: 0.32rem 0; transition: color 0.2s; }
.f-col li a:hover { color: var(--poppy-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.06); color: var(--text-dim); font-size: 0.82rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: var(--text-muted); }

/* ───────────── Floating WhatsApp ───────────── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 180; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.4); transition: transform 0.25s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* ───────────── Utilities ───────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mb-2 { margin-bottom: 2rem; }
.lead { font-size: 1.1rem; color: var(--text-muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.note-box { background: rgba(155,44,240,0.08); border: 1px solid rgba(155,44,240,0.22); border-radius: var(--radius); padding: 1.3rem 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.note-box strong { color: var(--poppy-light); }

/* ───────────── Responsive ───────────── */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-layout, .split { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 4rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 2.2rem 1.4rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
