/* ====================================================
   IGFollowers.shop — shared stylesheet
   Visual language mirrors igfollowers.io: dark navy hero,
   indigo + lime/cyan accents, Bricolage Grotesque headings.
   ==================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0c0a1a;
  --navy-2:      #1d1437;
  --indigo:      #4F46E5;
  --indigo-soft: #6366F1;
  --lime:        #C3FF36;
  --cyan:        #22D3EE;
  --pink:        #DB2777;
  --grey-bg:     #dfdfe6;
  --grey-soft:   #f4f3ef;
  --line:        #ece9f4;
  --muted:       #6f6b85;
  --ink:         #0c0a1a;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--grey-bg);
  color: var(--navy);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(223, 223, 230, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(12,10,26,0.06);
}
.header-inner {
  max-width: none; padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 19px;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy);
}
.logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--indigo), var(--pink));
  display: inline-flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }

.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 14px; font-weight: 600; color: var(--navy);
  opacity: 0.78; transition: opacity .2s;
}
.nav a:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-primary {
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  font-weight: 700; font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(12,10,26,0.18); }

.hamburger { display: none; background: transparent; border: 0; width: 38px; height: 38px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; cursor: pointer; }
.hamburger span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; }

/* Mobile nav drawer */
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--navy); color: #fff; padding: 24px; transform: translateX(100%); transition: transform .25s ease; z-index: 200; display: flex; flex-direction: column; gap: 18px; }
.drawer.open { transform: translateX(0); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(12,10,26,0.5); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 150; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head .logo { color: #fff; }
.drawer-close { background: transparent; border: 0; color: #fff; font-size: 28px; cursor: pointer; }
.drawer nav { display: flex; flex-direction: column; gap: 6px; }
.drawer nav a { color: #fff; font-weight: 600; font-size: 16px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

/* ============ Shell + bento ============ */
.shell { max-width: none; padding: 22px 40px 14px; }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

/* ============ Tile base ============ */
.tile {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(12,10,26,0.06);
}
.tile.dark { background: var(--navy); color: #fff; }

/* ============ HERO ============ */
.hero {
  grid-column: span 12;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--indigo) 100%);
  color: #fff;
  padding: 60px 56px;
  min-height: 480px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: 24px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px; opacity: 0.55; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(195,255,54,0.18), transparent 70%);
  top: -200px; right: -150px; filter: blur(60px); pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 16px 8px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; align-self: flex-start;
  color: rgba(255,255,255,0.85);
}
.tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 4px rgba(195,255,54,0.18);
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 5.4vw, 80px);
  line-height: 0.96; letter-spacing: -0.035em;
  margin: 26px 0 18px;
  max-width: 880px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--lime), var(--cyan) 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: rgba(255,255,255,0.72); font-size: 17.5px; max-width: 620px; line-height: 1.6; }
.hero-cta { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.btn-lime {
  background: var(--lime); color: var(--navy);
  padding: 14px 24px; border-radius: 12px;
  font-weight: 700; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: transform .15s, box-shadow .15s;
}
.btn-lime:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(195,255,54,0.3); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14); color: #fff;
  padding: 14px 22px; border-radius: 12px;
  font-weight: 600; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.hero-foot {
  margin-top: auto; padding-top: 36px;
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.7);
}
.hero-foot b { color: #fff; font-weight: 700; }
.stars { color: #FACC15; letter-spacing: 1px; }

/* ============ Section headline ============ */
.sec {
  grid-column: span 12;
  padding: 50px 8px 18px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.sec-left { flex: 1; min-width: 280px; }
.sec .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--lime);
  padding: 7px 14px 7px 11px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 800;
  margin-bottom: 18px;
}
.sec .pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px rgba(195,255,54,0.8);
}
.sec h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; letter-spacing: -0.035em; line-height: 0.98;
  font-size: clamp(34px, 4.4vw, 56px);
  color: var(--navy);
}
.sec h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--indigo), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sec p {
  font-size: 16px; color: var(--muted);
  max-width: 560px; margin-top: 14px; line-height: 1.55;
}

/* ============ Stats row ============ */
.stats-row {
  grid-column: span 12;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.stat-tile {
  background: #fff; border-radius: 18px; padding: 24px;
  box-shadow: 0 4px 18px rgba(12,10,26,0.06);
  display: flex; align-items: center; gap: 14px;
}
.stat-ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--indigo), var(--pink));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-ico svg { width: 20px; height: 20px; }
.stat-tile:nth-child(2) .stat-ico { background: linear-gradient(135deg, var(--cyan), var(--indigo)); }
.stat-tile:nth-child(3) .stat-ico { background: linear-gradient(135deg, var(--lime), var(--cyan)); color: var(--navy); }
.stat-tile:nth-child(4) .stat-ico { background: linear-gradient(135deg, var(--navy), var(--indigo)); }
.stat-tile .n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em; line-height: 1;
}
.stat-tile .l { font-size: 12.5px; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* ============ Platform picker ============ */
.pfs-tile { grid-column: span 12; padding: 22px; }
.pfs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.pf {
  background: var(--grey-bg);
  border-radius: 18px; padding: 26px 16px;
  text-align: center;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, background .3s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border: 1px solid rgba(12,10,26,0.04);
}
.pf:hover { transform: translateY(-6px); background: #fff; box-shadow: 0 18px 32px rgba(12,10,26,0.12); }
.pf-ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 14px rgba(12,10,26,0.12);
  transition: transform .3s;
}
.pf:hover .pf-ico { transform: scale(1.08) rotate(-3deg); }
.pf-ico svg { width: 26px; height: 26px; }
.pf-name { font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; }
.pf-from { font-size: 11px; color: var(--muted); font-weight: 600; }

/* Platform brand colours */
.bg-ig { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); }
.bg-tt { background: linear-gradient(135deg, #25F4EE, #000, #FE2C55); }
.bg-yt { background: #FF0000; }
.bg-sp { background: #1DB954; }
.bg-fb { background: #1877F2; }
.bg-x  { background: #000; }

/* ============ Guide cards grid ============ */
.guides-tile { grid-column: span 12; padding: 32px; }
.guides-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px;
}
.guide-card {
  background: var(--grey-soft);
  border-radius: 18px;
  padding: 26px 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid rgba(12,10,26,0.04);
  transition: transform .25s, box-shadow .25s, background .25s;
  position: relative;
}
.guide-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 36px rgba(12,10,26,0.10);
}
.guide-card.featured {
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
}
.guide-card.featured:hover { background: var(--navy); }
.guide-card.featured .guide-title,
.guide-card.featured .guide-price .amount { color: #fff; }
.guide-card.featured .guide-desc { color: rgba(255,255,255,0.6); }
.guide-card.featured ul li { color: rgba(255,255,255,0.78); }
.guide-card.featured ul li svg { color: var(--lime); }

.guide-head { display: flex; align-items: center; gap: 12px; }
.guide-ico {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.guide-ico svg { width: 18px; height: 18px; }
.guide-pf {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 800; color: var(--muted);
}
.guide-card.featured .guide-pf { color: var(--lime); }

.guide-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: var(--navy);
  font-size: 9.5px; padding: 4px 9px;
  border-radius: 999px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
}
.guide-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15; color: var(--navy);
}
.guide-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.guide-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.guide-card ul li {
  font-size: 13px; color: var(--navy);
  display: flex; gap: 8px; align-items: flex-start;
  line-height: 1.45;
}
.guide-card ul li svg { width: 14px; height: 14px; color: var(--indigo); flex-shrink: 0; margin-top: 3px; }

.guide-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid rgba(12,10,26,0.06);
}
.guide-card.featured .guide-foot { border-top: 1px solid rgba(255,255,255,0.10); }
.guide-price { display: flex; align-items: baseline; gap: 7px; }
.guide-price .was {
  font-size: 12px; color: var(--muted); font-weight: 600;
  text-decoration: line-through;
}
.guide-card.featured .guide-price .was { color: rgba(255,255,255,0.4); }
.guide-price .amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--navy);
}
.btn-buy {
  background: var(--navy); color: #fff;
  padding: 10px 16px; border-radius: 10px;
  font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform .15s, box-shadow .15s;
}
.btn-buy:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(12,10,26,0.2); }
.guide-card.featured .btn-buy {
  background: var(--lime); color: var(--navy);
}
.guide-card.featured .btn-buy:hover { box-shadow: 0 10px 22px rgba(195,255,54,0.4); }

/* ============ How-it-works flow ============ */
.flow-tile { grid-column: span 12; padding: 36px 32px; }
.flow {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 22px; position: relative;
}
.flow::before {
  content: ''; position: absolute;
  top: 38px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(79,70,229,0.4) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.flow-step {
  background: var(--grey-soft);
  border-radius: 16px;
  padding: 22px 18px 18px;
  text-align: center;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.flow-orb {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--indigo), var(--pink));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(79,70,229,0.25);
  border: 5px solid #fff; margin-top: -8px;
}
.flow-orb svg { width: 22px; height: 22px; }
.flow-n { font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--indigo); margin-top: 6px; }
.flow-step h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15.5px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.2; }
.flow-step p { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

/* ============ Promise / values ============ */
.promise-tile { grid-column: span 8; padding: 40px; background: var(--lime); color: var(--navy); border-radius: 22px; }
.promise-tile h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 22px; }
.promise-tile ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.promise-tile li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.promise-tile li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.promise-tile li b { font-weight: 800; display: block; margin-bottom: 2px; font-size: 14.5px; }

.side-tile {
  grid-column: span 4; padding: 36px; background: var(--navy); color: #fff;
  display: flex; flex-direction: column; gap: 16px; justify-content: center;
  border-radius: 22px;
}
.side-tile .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 72px; font-weight: 800; letter-spacing: -0.035em; line-height: 1;
  background: linear-gradient(120deg, var(--lime), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.side-tile h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.side-tile p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* ============ Final CTA ============ */
.cta {
  grid-column: span 12; padding: 60px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--cyan) 100%);
  color: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-radius: 24px;
}
.cta h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; max-width: 620px; }
.cta p { font-size: 16px; color: rgba(12,10,26,0.72); margin-top: 10px; max-width: 540px; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-dark { background: var(--navy); color: #fff; padding: 16px 24px; border-radius: 12px; font-weight: 700; font-size: 14.5px; }
.btn-dark:hover { box-shadow: 0 12px 32px rgba(12,10,26,0.3); }
.btn-light { background: rgba(255,255,255,0.55); color: var(--navy); padding: 16px 24px; border-radius: 12px; font-weight: 700; font-size: 14.5px; backdrop-filter: blur(8px); }

/* ============ FAQ ============ */
.faq-tile { grid-column: span 12; padding: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.faq-item {
  background: var(--grey-soft);
  border-radius: 14px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background .2s;
}
.faq-item:hover { background: #fff; box-shadow: 0 6px 18px rgba(12,10,26,0.06); }
.faq-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 16px; letter-spacing: -0.015em;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--navy);
}
.faq-q::after {
  content: '+'; font-size: 22px; font-weight: 400; color: var(--indigo);
  transition: transform .25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  font-size: 14.5px; color: var(--muted);
  line-height: 1.6; margin-top: 12px;
}
.faq-item.open .faq-a { display: block; }

/* ============ Content (long-form / legal) ============ */
.content-tile { grid-column: span 12; padding: 48px 56px; }
.content-tile h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(36px, 4vw, 52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 16px; }
.content-tile .lead { font-size: 17px; color: var(--muted); line-height: 1.6; margin-bottom: 30px; max-width: 720px; }
.content-tile h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  margin-top: 36px; margin-bottom: 12px; color: var(--navy);
}
.content-tile h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 800; margin-top: 22px; margin-bottom: 8px; color: var(--navy); }
.content-tile p, .content-tile li { font-size: 15px; color: #4a4759; line-height: 1.7; }
.content-tile p { margin-bottom: 12px; max-width: 760px; }
.content-tile ul { padding-left: 22px; margin-bottom: 14px; max-width: 760px; }
.content-tile li { margin-bottom: 6px; }
.content-tile a { color: var(--indigo); font-weight: 600; }
.content-tile a:hover { text-decoration: underline; }
.content-tile .meta {
  font-size: 13px; color: var(--muted); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
}

/* ============ Contact form ============ */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }
.contact-form-tile { grid-column: span 8; padding: 40px; }
.contact-side-tile { grid-column: span 4; padding: 36px; background: var(--navy); color: #fff; display: flex; flex-direction: column; gap: 22px; }
.contact-side-tile h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.contact-side-tile .channel { display: flex; gap: 12px; align-items: flex-start; }
.contact-side-tile .channel-ico { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-side-tile .channel-ico svg { width: 18px; height: 18px; }
.contact-side-tile .channel b { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-side-tile .channel span { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55; }

.contact-form { display: grid; gap: 14px; margin-top: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--grey-soft);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit; font-size: 14.5px; color: var(--navy);
  transition: border-color .15s, background .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--indigo);
}
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }

/* ============ Footer ============ */
.footer {
  margin-top: 60px;
  background: var(--navy); color: #fff;
  padding: 56px 40px 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.55); margin-top: 14px; max-width: 320px; line-height: 1.55; }
.footer h5 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding-top: 22px;
  font-size: 12.5px; color: rgba(255,255,255,0.45);
}
.footer-foot .links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-foot a:hover { color: #fff; }

/* ============ Cookie banner ============ */
.cookie-bar {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90;
  background: var(--navy); color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  box-shadow: 0 14px 38px rgba(12,10,26,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 880px; margin: 0 auto;
}
.cookie-bar p { font-size: 13.5px; color: rgba(255,255,255,0.75); flex: 1; line-height: 1.5; min-width: 240px; }
.cookie-bar p a { color: var(--lime); font-weight: 600; }
.cookie-bar-actions { display: flex; gap: 8px; }
.cookie-bar button {
  border: 0; cursor: pointer;
  padding: 10px 16px; border-radius: 10px;
  font-weight: 700; font-size: 13px;
  font-family: inherit;
}
.cookie-bar .accept { background: var(--lime); color: var(--navy); }
.cookie-bar .reject { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.14); }
.cookie-bar.hidden { display: none; }

/* ============ Cart button + drawer ============ */
.cart-btn {
  background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--navy);
  transition: background .15s;
}
.cart-btn:hover { background: rgba(12,10,26,0.06); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 0; right: -2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--lime); color: var(--navy);
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--grey-bg);
  line-height: 1;
}
.cart-count.empty { display: none; }

.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(12,10,26,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  z-index: 160;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 92vw;
  background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  z-index: 170;
  box-shadow: -10px 0 40px rgba(12,10,26,0.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
  color: var(--navy);
}
.cart-head .cart-count-inline {
  background: var(--grey-soft); color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  border-radius: 999px; padding: 3px 9px;
  min-width: 24px; text-align: center;
}
.cart-close {
  background: transparent; border: 0; cursor: pointer;
  font-size: 28px; line-height: 1;
  color: var(--muted); padding: 4px 8px;
}
.cart-close:hover { color: var(--navy); }

.cart-body {
  flex: 1; overflow-y: auto;
  padding: 18px 24px;
}
.cart-empty {
  text-align: center; padding: 60px 20px;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.cart-empty svg { width: 48px; height: 48px; opacity: 0.4; }
.cart-empty h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--navy);
  margin-top: 4px;
}
.cart-empty p { font-size: 13.5px; line-height: 1.5; max-width: 280px; }
.cart-empty a {
  margin-top: 6px;
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 10px;
  font-weight: 700; font-size: 13.5px;
}

.cart-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-ico {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.cart-item-ico svg { width: 20px; height: 20px; }
.cart-item-body { min-width: 0; }
.cart-item-pf {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 800; color: var(--muted);
}
.cart-item-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: -0.015em;
  color: var(--navy); line-height: 1.2; margin-top: 2px;
}
.cart-item-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 16px; letter-spacing: -0.015em;
  color: var(--navy); margin-top: 4px;
}
.cart-item-remove {
  background: transparent; border: 0; cursor: pointer;
  color: var(--muted);
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.cart-item-remove:hover { background: rgba(12,10,26,0.06); color: var(--pink); }
.cart-item-remove svg { width: 16px; height: 16px; }

.cart-foot {
  padding: 18px 24px 22px;
  border-top: 1px solid var(--line);
  background: var(--grey-soft);
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.cart-subtotal-label { font-size: 13px; color: var(--muted); font-weight: 600; }
.cart-subtotal-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--navy);
}
.cart-note { font-size: 12px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.btn-checkout {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--navy); color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700; font-size: 14.5px;
  transition: transform .15s, box-shadow .15s;
}
.btn-checkout:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(12,10,26,0.25); }
.btn-checkout:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-add-cart {
  background: var(--navy); color: #fff;
  padding: 10px 16px; border-radius: 10px;
  font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  border: 0; cursor: pointer; font-family: inherit;
  transition: transform .15s, box-shadow .15s;
}
.btn-add-cart:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(12,10,26,0.2); }
.btn-add-cart svg { width: 14px; height: 14px; }
.guide-card.featured .btn-add-cart { background: var(--lime); color: var(--navy); }
.guide-card.featured .btn-add-cart:hover { box-shadow: 0 10px 22px rgba(195,255,54,0.4); }
.btn-add-cart.added { background: #15803D !important; color: #fff !important; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .pfs { grid-template-columns: repeat(3, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow::before { display: none; }
  .promise-tile, .side-tile { grid-column: span 12; }
  .contact-form-tile, .contact-side-tile { grid-column: span 12; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { padding: 12px 18px; }
  .nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .shell { padding: 14px 14px; }
  .hero { padding: 44px 26px; min-height: auto; }
  .hero h1 { font-size: 42px; line-height: 1; }
  .pfs { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: 1fr; }
  .promise-tile ul { grid-template-columns: 1fr; }
  .cta { padding: 40px 26px; flex-direction: column; align-items: flex-start; }
  .content-tile { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 40px 18px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
