/* ==============================================
   INSTAFYHUB — GLOBAL STYLESHEET
   Shared across all pages
   ============================================== */

/* ── CSS VARIABLES ───────────────────────────── */
:root {
  /* Colors */
  --ink:     #0D0D14;
  --ink-2:   #1A1A2E;
  --ink-3:   #252540;
  --slate:   #4A4A6A;
  --muted:   #7E7E9E;
  --ghost:   #E8E8F4;
  --snow:    #F4F4FA;
  --white:   #FFFFFF;

  /* Brand */
  --primary:       #5046E5;
  --primary-dark:  #3730B8;
  --primary-light: #EEEDff;
  --primary-mid:   #8B82FF;
  --primary-glow:  rgba(80,70,229,0.18);

  /* Semantic */
  --emerald:       #059669;
  --emerald-light: #D1FAE5;
  --amber:         #D97706;
  --amber-light:   #FEF3C7;
  --violet:        #7C3AED;
  --violet-light:  #EDE9FE;
  --orange:        #EA580C;
  --orange-light:  #FFF7ED;
  --cyan:          #0891B2;
  --cyan-light:    #CFFAFE;
  --indigo:        #4338CA;
  --indigo-light:  #E0E7FF;
  --teal:          #0D9488;
  --teal-light:    #CCFBF1;

  /* Radius */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-full: 999px;

  /* Shadows */
  --shadow-xs:    0 1px 4px rgba(13,13,20,0.06);
  --shadow-sm:    0 2px 12px rgba(13,13,20,0.08);
  --shadow-md:    0 8px 32px rgba(13,13,20,0.10);
  --shadow-lg:    0 16px 56px rgba(13,13,20,0.12);
  --shadow-brand: 0 8px 28px rgba(80,70,229,0.32);

  /* Animation */
  --ease:   cubic-bezier(0.4,0,0.2,1);
  --spring: cubic-bezier(0.34,1.56,0.64,1);
  --t:      0.22s;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── TYPOGRAPHY ──────────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; }
h1 { font-size: clamp(30px, 5vw, 58px); }
h2 { font-size: clamp(24px, 3.5vw, 44px); }
h3 { font-size: clamp(14px, 1.8vw, 18px); }
p  { font-size: 16px; line-height: 1.75; color: var(--slate); }

/* ── LAYOUT ──────────────────────────────────── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 72px 0; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600; border: none;
  transition: all var(--t) var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(80,70,229,0.42); }
.btn-ghost   { background: transparent; color: var(--primary); border: 1.5px solid rgba(80,70,229,0.3); }
.btn-ghost:hover { background: var(--primary-light); border-color: var(--primary); }
.btn-white   { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-lg  { padding: 16px 36px; font-size: 16px; border-radius: 12px; }
.btn-xl  { padding: 18px 44px; font-size: 17px; border-radius: 14px; }

/* ── CHIPS & BADGES ──────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 600;
  background: var(--primary-light); color: var(--primary);
  border: 1px solid rgba(80,70,229,0.18);
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary); animation: blink 2s infinite;
}
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700;
}
.badge-green  { background: var(--emerald-light); color: #065F46; }
.badge-amber  { background: var(--amber-light);   color: #92400E; }
.badge-primary { background: var(--primary-light); color: var(--primary); }

/* ── NAVBAR ──────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(80,70,229,0.07);
  transition: box-shadow var(--t) var(--ease);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 32px;
}
.nav-logo { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; flex-shrink: 0; }
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--slate);
  transition: color var(--t); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--t) var(--ease); transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; gap: 10px; align-items: center; }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none;
  width: 36px; height: 36px;
  flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--t) var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--ghost);
  padding: 20px 24px 28px; box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 13px 0; font-size: 16px; font-weight: 500; color: var(--slate); border-bottom: 1px solid var(--ghost); }
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn { margin-top: 18px; justify-content: center; width: 100%; }

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb { background: var(--snow); border-bottom: 1px solid var(--ghost); padding: 12px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.breadcrumb-inner a { color: var(--muted); transition: color var(--t); }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--ghost); font-size: 16px; }
.breadcrumb-current { color: var(--primary); font-weight: 600; }

/* ── SECTION HEADER ──────────────────────────── */
.sh { margin-bottom: 56px; }
.sh.center { text-align: center; }
.sh.center .sh-sub { margin: 0 auto; }
.sh-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.sh-title   { color: var(--ink); margin-bottom: 14px; }
.sh-sub     { font-size: 17px; color: var(--slate); max-width: 560px; line-height: 1.7; }

/* ── HERO SECTION ────────────────────────────── */
.hero-section { background: var(--white); padding: 80px 0 0; overflow: hidden; position: relative; }
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(80,70,229,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,70,229,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 65% 30%, black 40%, transparent 100%);
  pointer-events: none;
}
.hero-inner  { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero-eyebrow { margin-bottom: 20px; }
.hero-h1    { margin-bottom: 18px; color: var(--ink); }
.hero-h1 em { font-style: normal; font-family: 'Fraunces', serif; color: var(--primary); font-weight: 300; }
.hero-desc  { font-size: 17px; line-height: 1.75; color: var(--slate); margin-bottom: 10px; max-width: 520px; }
.hero-desc-2 { font-size: 15px; line-height: 1.75; color: var(--muted); margin-bottom: 32px; max-width: 520px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* Trust highlights */
.trust-highlights { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.trust-hl {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px; background: var(--snow);
  border-radius: var(--r-md); border: 1px solid var(--ghost);
  font-size: 13px; font-weight: 600; color: var(--slate);
  transition: border-color var(--t);
}
.trust-hl:hover { border-color: rgba(80,70,229,0.25); }
.trust-hl-ico { width: 30px; height: 30px; border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-hl-ico svg { width: 15px; height: 15px; }
.hl-purple  { background: var(--primary-light); }
.hl-green   { background: var(--emerald-light); }
.hl-amber   { background: var(--amber-light); }
.hl-violet  { background: var(--violet-light); }
.hl-blue    { background: #EFF6FF; }
.hl-cyan    { background: var(--cyan-light); }
.hl-teal    { background: var(--teal-light); }
.hl-orange  { background: var(--orange-light); }
.hl-indigo  { background: var(--indigo-light); }

/* ── ORDER CARD ──────────────────────────────── */
.order-card {
  background: var(--white); border: 1px solid var(--ghost);
  border-radius: var(--r-xl); padding: 28px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(80,70,229,0.04);
}
.order-card-title { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.order-card-sub   { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.post-input-wrap  { margin-bottom: 16px; }
.post-input-label { font-size: 12px; font-weight: 700; color: var(--slate); margin-bottom: 7px; display: block; letter-spacing: 0.04em; text-transform: uppercase; }
.post-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--ghost);
  border-radius: var(--r-sm); font-size: 14px; font-family: inherit;
  color: var(--ink); background: var(--snow); transition: border-color var(--t);
}
.post-input:focus { outline: none; border-color: var(--primary); background: #fff; }
.post-input::placeholder { color: var(--muted); }
.pkg-selector { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.pkg-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-radius: var(--r-md); border: 1.5px solid var(--ghost);
  cursor: pointer; transition: all var(--t) var(--ease); position: relative;
}
.pkg-opt:hover    { border-color: rgba(80,70,229,0.3); background: var(--primary-light); }
.pkg-opt.selected { border-color: var(--primary); background: var(--primary-light); }
.pkg-opt-label  { font-size: 14px; font-weight: 600; color: var(--ink); }
.pkg-opt-sub    { font-size: 11px; color: var(--muted); margin-top: 1px; }
.pkg-opt-price  { font-size: 15px; font-weight: 800; color: var(--primary); font-family: 'Fraunces', serif; }
.pkg-popular {
  position: absolute; top: -9px; right: 12px;
  font-size: 10px; font-weight: 700;
  background: var(--primary); color: #fff;
  padding: 2px 10px; border-radius: var(--r-full);
}
.order-card-cta    { width: 100%; justify-content: center; border-radius: 12px; padding: 15px; font-size: 16px; }
.order-guarantee   { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 12px; font-size: 12px; color: var(--muted); font-weight: 500; }

/* ── STATS STRIP ─────────────────────────────── */
.stats-strip { background: var(--ink); margin-top: 80px; border-radius: var(--r-lg) var(--r-lg) 0 0; padding: 32px 48px; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1160px; margin: 0 auto; }
.stat-item   { text-align: center; padding: 0 20px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.08); }
.stat-num    { font-size: 34px; font-weight: 800; color: var(--primary-mid); line-height: 1; letter-spacing: -0.04em; font-family: 'Fraunces', serif; }
.stat-desc   { font-size: 13px; color: rgba(255,255,255,0.42); margin-top: 5px; line-height: 1.4; }

/* ── INTRO SECTION ───────────────────────────── */
.intro-section  { background: var(--snow); }
.intro-layout   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text p   { margin-bottom: 14px; }
.intro-benefits { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 24px; }
.intro-benefit  { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--slate); }
.intro-benefit-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.intro-benefit-dot svg { width: 11px; height: 11px; }

/* ── PACKAGE CARDS ───────────────────────────── */
.packages-section  { background: var(--white); }
.packages-grid     { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pkg-card {
  background: var(--white); border: 1.5px solid var(--ghost);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: all var(--t) var(--ease); position: relative; overflow: hidden;
}
.pkg-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ghost); transition: background var(--t); }
.pkg-card:hover   { border-color: rgba(80,70,229,0.25); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pkg-card:hover::before, .pkg-card.featured::before { background: var(--primary); }
.pkg-card.featured { border-color: var(--primary); box-shadow: var(--shadow-brand); }
.pkg-featured-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 0.06em;
}
.pkg-count    { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
.pkg-card h3  { font-size: 20px; margin-bottom: 6px; color: var(--ink); }
.pkg-tagline  { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.pkg-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.pkg-price    { font-size: 36px; font-weight: 800; color: var(--ink); font-family: 'Fraunces', serif; line-height: 1; }
.pkg-currency { font-size: 18px; font-weight: 700; color: var(--muted); align-self: flex-start; margin-top: 4px; }
.pkg-divider  { height: 1px; background: var(--ghost); margin-bottom: 18px; }
.pkg-benefits { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.pkg-benefit  { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--slate); }
.pkg-check    { width: 18px; height: 18px; border-radius: 50%; background: var(--emerald-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pkg-check svg { width: 9px; height: 9px; }
.pkg-btn      { width: 100%; justify-content: center; border-radius: 10px; padding: 13px; }

/* ── WHY BUY (DARK) ──────────────────────────── */
.why-section { background: var(--ink-2); }
.why-grid    { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.why-card {
  background: var(--ink-3); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md); padding: 22px;
  transition: all var(--t) var(--ease);
}
.why-card:hover { background: var(--ink); border-color: rgba(80,70,229,0.3); transform: translateY(-2px); }
.why-ico { width: 44px; height: 44px; border-radius: var(--r-sm); background: rgba(80,70,229,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-ico svg { width: 20px; height: 20px; }
.why-card h3 { font-size: 14px; color: #fff; margin-bottom: 6px; }
.why-card p  { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.6; }

/* ── HOW IT WORKS ────────────────────────────── */
.hiw-section  { background: var(--snow); }
.hiw-grid     { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.hiw-connector {
  position: absolute; top: 50px;
  left: calc(12.5% + 34px); right: calc(12.5% + 34px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 8px, transparent 8px, transparent 18px);
  opacity: 0.2; z-index: 0;
}
.hiw-item  { padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.hiw-num   {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(80,70,229,0.4);
  font-family: 'Fraunces', serif; position: relative;
}
.hiw-num::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1.5px dashed rgba(80,70,229,0.25);
}
.hiw-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--ink); }
.hiw-item p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── FEATURES ────────────────────────────────── */
.features-section { background: var(--white); }
.features-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card {
  background: var(--snow); border-radius: var(--r-lg); padding: 26px;
  border: 1px solid transparent; transition: all var(--t) var(--ease);
}
.feat-card:hover { border-color: rgba(80,70,229,0.14); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.feat-card.feat-highlight { background: var(--primary-light); border: 1px solid rgba(80,70,229,0.15); }
.feat-card.feat-highlight .feat-ico { background: var(--primary); }
.feat-ico { width: 48px; height: 48px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat-ico svg { width: 22px; height: 22px; }
.feat-card h3 { font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.feat-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── BENEFITS ────────────────────────────────── */
.benefits-section  { background: var(--snow); }
.benefits-layout   { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.benefits-list     { display: flex; flex-direction: column; gap: 16px; }
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--white);
  border-radius: var(--r-md); border: 1px solid var(--ghost);
  transition: border-color var(--t);
}
.benefit-item:hover  { border-color: rgba(80,70,229,0.2); }
.benefit-ico { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--primary-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.benefit-ico svg { width: 20px; height: 20px; }
.benefit-text h3 { font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.benefit-text p  { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Benefits CTA Box */
.benefits-cta-box {
  background: var(--white); border-radius: var(--r-xl);
  padding: 36px; border: 1px solid var(--ghost);
  box-shadow: var(--shadow-md); position: sticky; top: 90px;
}
.bcb-title  { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.bcb-sub    { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.bcb-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.bcb-check  { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--slate); }
.bcb-chk-ico { width: 22px; height: 22px; border-radius: 50%; background: var(--emerald-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.bcb-chk-ico svg { width: 11px; height: 11px; }

/* ── SAFETY ──────────────────────────────────── */
.safety-section { background: var(--white); }
.safety-layout  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.safety-text p  { margin-bottom: 14px; color: var(--slate); font-size: 15px; line-height: 1.75; }
.safety-text p:last-child { margin-bottom: 0; }
.safety-trust  { background: var(--snow); border-radius: var(--r-xl); padding: 36px; border: 1px solid var(--ghost); }
.strust-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.strust-ico    { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.strust-ico svg { width: 24px; height: 24px; }
.strust-title  { font-size: 18px; font-weight: 800; color: var(--ink); }
.strust-sub    { font-size: 13px; color: var(--muted); margin-top: 2px; }
.strust-list   { display: flex; flex-direction: column; gap: 14px; }
.strust-item   { display: flex; align-items: flex-start; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--ghost); }
.strust-item:last-child { border-bottom: none; padding-bottom: 0; }
.strust-num    { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Fraunces', serif; }
.strust-item-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.strust-item-text  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── FAQ ─────────────────────────────────────── */
.faq-section { background: var(--snow); }
.faq-wrap    { max-width: 760px; margin: 0 auto; }
.faq-item    { border-bottom: 1px solid var(--ghost); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0; cursor: pointer; user-select: none;
}
.faq-q-text { font-size: 16px; font-weight: 700; color: var(--ink); transition: color var(--t); }
.faq-item.open .faq-q-text { color: var(--primary); }
.faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ghost); color: var(--slate);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; font-weight: 300;
  transition: all var(--t) var(--ease); line-height: 1;
}
.faq-item.open .faq-toggle { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.38s var(--ease), padding 0.3s; padding-bottom: 0; }
.faq-item.open .faq-body { max-height: 300px; padding-bottom: 20px; }
.faq-body p { font-size: 15px; line-height: 1.75; color: var(--slate); }

/* ── SEO CONTENT BLOCK ───────────────────────── */
.seo-section { background: var(--white); border-top: 1px solid var(--ghost); }
.seo-content { max-width: 860px; margin: 0 auto; }
.seo-content h2 { font-size: 28px; margin-bottom: 16px; color: var(--ink); }
.seo-content p  { font-size: 15px; line-height: 1.8; color: var(--slate); margin-bottom: 14px; }
.seo-content p:last-child { margin-bottom: 0; }

/* ── FINAL CTA ───────────────────────────────── */
.cta-section { background: var(--primary); padding: 100px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -200px; right: -100px; width: 700px; height: 700px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.cta-section::after  { content: ''; position: absolute; bottom: -120px; left: -60px; width: 440px; height: 440px; border-radius: 50%; background: rgba(0,0,0,0.07); pointer-events: none; }
.cta-inner   { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; font-size: clamp(26px, 4vw, 48px); margin-bottom: 18px; }
.cta-inner p  { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; }
.cta-btn-row  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-micro    { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.cta-micro-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; }
.cta-micro-ico  { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; }
.cta-micro-ico svg { width: 9px; height: 9px; }

/* ── FOOTER ──────────────────────────────────── */
footer       { background: var(--ink); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-size: 20px; font-weight: 800; letter-spacing: -0.04em; color: #fff; margin-bottom: 14px; }
.footer-logo span { color: var(--primary-mid); }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 270px; margin-bottom: 24px; }
.footer-col-h { font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--t); }
.footer-links a:hover { color: #fff; }
.footer-email { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 20px; display: block; }
.payment-row  { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-pill     { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-xs); padding: 5px 12px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 12px; }
.footer-copy   { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-legal  { display: flex; gap: 22px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.25); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .09s; }
.reveal:nth-child(3) { transition-delay: .17s; }
.reveal:nth-child(4) { transition-delay: .25s; }
.reveal:nth-child(5) { transition-delay: .33s; }
.reveal:nth-child(6) { transition-delay: .41s; }

@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }
@keyframes fadeIn { to { opacity: 1; } }
