/* ============================================================
   GM SCRAPER — Main Stylesheet
   Google Map Extractor & Google Map Scraper Software
   Brand: GM Scraper | Domain: app.gmscraper.com
   Author: Wiselok Tech Solution Pvt Ltd, Mumbai
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Core palette — Electric Blue + Deep Slate */
  --ink:          #030D1F;
  --ink2:         #0A2045;
  --ink3:         #153570;
  --slate:        #F3F6FD;
  --slate2:       #E3EAF8;
  --slate3:       #BFD0EF;
  --surface:      #FFFFFF;

  /* Brand blue */
  --brand:        #2563EB;
  --brand2:       #1D4ED8;
  --brand3:       #60A5FA;
  --brand-light:  #EFF6FF;
  --brand-glow:   rgba(37,99,235,0.10);

  /* Supporting */
  --emerald:      #059669;
  --emerald-light:#ECFDF5;
  --amber:        #D97706;
  --amber-light:  #FFFBEB;
  --rose:         #E11D48;
  --violet:       #7C3AED;

  /* Text scale */
  --text:         #030D1F;
  --text2:        #1E3557;
  --text3:        #5472A0;
  --text4:        #94AECF;

  /* Typography */
  --display:      'Bricolage Grotesque', sans-serif;
  --body:         'Instrument Sans', sans-serif;
  --mono:         'JetBrains Mono', monospace;

  /* Spacing */
  --r:            10px;
  --section-pad:  100px;

  /* Shadows */
  --shadow-xs:    0 1px 4px rgba(3,13,31,0.06);
  --shadow-sm:    0 2px 8px rgba(3,13,31,0.08);
  --shadow:       0 6px 24px rgba(3,13,31,0.09);
  --shadow-lg:    0 20px 60px rgba(37,99,235,0.12), 0 8px 24px rgba(3,13,31,0.07);
  --shadow-xl:    0 40px 100px rgba(37,99,235,0.16), 0 16px 48px rgba(3,13,31,0.10);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--slate); color: var(--text); font-family: var(--body); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--slate); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand2); }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar { background: linear-gradient(90deg, var(--ink2) 0%, var(--ink) 60%, var(--ink2) 100%); padding: 10px 20px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.ann-pill { background: var(--brand); color: white; border-radius: 100px; padding: 2px 10px; font-size: 0.68rem; font-weight: 700; font-family: var(--mono); letter-spacing: 0.06em; }
.ann-bar a { color: var(--brand3); text-decoration: none; font-weight: 600; border-bottom: 1px dashed var(--brand3); }
.ann-bar a:hover { color: white; border-bottom-color: white; }

/* ── NAVIGATION ── */
nav { position: sticky; top: 0; z-index: 300; height: 68px; padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; background: rgba(243,246,253,0.96); backdrop-filter: blur(24px); border-bottom: 1px solid rgba(37,99,235,0.10); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 24px rgba(37,99,235,0.10), 0 1px 0 rgba(37,99,235,0.06); }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon { width: 38px; height: 38px; border-radius: 9px; background: linear-gradient(145deg, var(--brand) 0%, var(--ink2) 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(37,99,235,0.40); position: relative; overflow: hidden; }
.brand-icon::before { content: ''; position: absolute; top: -6px; right: -6px; width: 18px; height: 18px; background: rgba(255,255,255,0.15); border-radius: 50%; }
.brand-icon span { font-family: var(--mono); font-size: 0.66rem; font-weight: 700; color: white; letter-spacing: -0.02em; position: relative; z-index: 1; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -0.02em; }
.brand-name em { font-style: normal; color: var(--brand); }
.nav-menu { display: flex; gap: 28px; list-style: none; }
.nav-menu a { color: var(--text2); text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: color 0.2s; }
.nav-menu a:hover { color: var(--brand); }
.nav-end { display: flex; gap: 10px; align-items: center; }
.btn-login { padding: 8px 18px; border-radius: var(--r); font-size: 0.875rem; font-weight: 700; color: var(--brand); background: var(--brand-light); border: 1.5px solid rgba(37,99,235,0.2); text-decoration: none; transition: all 0.2s; }
.btn-login:hover { background: rgba(37,99,235,0.10); border-color: var(--brand); }
.btn-signup { padding: 9px 22px; border-radius: var(--r); font-size: 0.875rem; font-weight: 800; color: white; background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%); border: none; text-decoration: none; box-shadow: 0 4px 14px rgba(37,99,235,0.42); transition: all 0.25s; }
.btn-signup:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.52); }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; padding: 92px 5vw 0; background: linear-gradient(170deg, #EBF0FF 0%, #F3F6FD 50%, #EEF4FF 100%); }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: 0.50; }
.blob-1 { width: 520px; height: 520px; background: rgba(37,99,235,0.15); top: -160px; right: -120px; }
.blob-2 { width: 360px; height: 360px; background: rgba(10,32,69,0.10); bottom: 40px; left: -90px; }
.blob-3 { width: 220px; height: 220px; background: rgba(124,58,237,0.08); top: 38%; left: 22%; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px); background-size: 48px 48px; }

.hero-wrap { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; text-align: center; }
.hero-flag { display: inline-flex; align-items: center; gap: 10px; background: white; border: 1.5px solid rgba(37,99,235,0.18); border-radius: 100px; padding: 6px 18px 6px 8px; font-size: 0.77rem; font-weight: 600; color: var(--ink2); margin-bottom: 32px; box-shadow: var(--shadow-xs); animation: appear 0.7s ease both; }
.flag-live { display: flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--brand), var(--violet)); color: white; border-radius: 100px; padding: 3px 11px; font-size: 0.67rem; font-weight: 800; letter-spacing: 0.06em; }
.live-dot { width: 6px; height: 6px; background: white; border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }

.hero h1 { font-family: var(--display); font-weight: 900; font-size: clamp(2.8rem, 6.5vw, 6rem); line-height: 1.02; letter-spacing: -0.04em; color: var(--ink); margin-bottom: 26px; animation: appear 0.7s 0.1s ease both; }
.h1-brand { background: linear-gradient(135deg, var(--brand) 0%, var(--violet) 60%, var(--brand2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.h1-ink { color: var(--ink2); }

.hero-lead { max-width: 660px; margin: 0 auto 44px; font-size: 1.1rem; color: var(--text2); font-weight: 400; line-height: 1.8; animation: appear 0.7s 0.18s ease both; }
.hero-lead strong { color: var(--brand); font-weight: 700; }

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; animation: appear 0.7s 0.27s ease both; }
.cta-main { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%); color: white; font-family: var(--display); font-weight: 700; font-size: 1.05rem; padding: 15px 36px; border-radius: var(--r); text-decoration: none; box-shadow: 0 8px 28px rgba(37,99,235,0.42); transition: all 0.25s; }
.cta-main:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(37,99,235,0.55); color: white; }
.cta-watch { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--ink); font-family: var(--display); font-weight: 600; font-size: 1.05rem; padding: 15px 30px; border-radius: var(--r); text-decoration: none; border: 1.5px solid var(--slate3); transition: all 0.25s; box-shadow: var(--shadow-xs); }
.cta-watch:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.hero-micro { font-size: 0.79rem; color: var(--text4); font-weight: 500; margin-bottom: 72px; animation: appear 0.7s 0.34s ease both; }
.hero-micro strong { color: var(--text3); }

/* ── STATS BAR ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--slate3); border: 1px solid var(--slate3); border-bottom: none; border-radius: 16px 16px 0 0; overflow: hidden; max-width: 920px; margin: 0 auto; animation: appear 0.7s 0.44s ease both; }
.stat-item { background: white; padding: 24px 16px; text-align: center; position: relative; cursor: default; transition: background 0.2s; }
.stat-item:hover { background: var(--brand-light); }
.stat-item::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand), var(--violet)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.stat-item:hover::after { transform: scaleX(1); }
.stat-val { font-family: var(--display); font-weight: 900; font-size: 2.4rem; color: var(--brand); line-height: 1; }
.stat-desc { font-size: 0.73rem; color: var(--text3); font-weight: 700; margin-top: 5px; font-family: var(--mono); letter-spacing: 0.04em; }

/* ── HERO SCREENSHOT ── */
.screen-hero { max-width: 1060px; margin: 0 auto; position: relative; z-index: 2; animation: appear 0.7s 0.52s ease both; }
.win-frame { background: white; border: 1px solid var(--slate3); border-radius: 16px 16px 0 0; overflow: hidden; box-shadow: var(--shadow-xl); }
.win-titlebar { background: linear-gradient(90deg, #F5F8FD 0%, #EEF3FB 100%); padding: 11px 16px; border-bottom: 1px solid var(--slate3); display: flex; align-items: center; gap: 10px; }
.win-btns { display: flex; gap: 6px; }
.win-btn { width: 11px; height: 11px; border-radius: 50%; }
.win-btn-r { background: #FF5F57; } .win-btn-y { background: #FEBC2E; } .win-btn-g { background: #28C840; }
.win-addr { flex: 1; background: white; border: 1px solid var(--slate3); border-radius: 7px; padding: 5px 12px; font-family: var(--mono); font-size: 0.7rem; color: var(--text3); display: flex; align-items: center; gap: 7px; }
.addr-lock { color: var(--emerald); }
.win-frame img { width: 100%; display: block; }

/* ── SECTION UTILITIES ── */
section { position: relative; }
.wrap { max-width: 1100px; margin: 0 auto; padding: var(--section-pad) 5vw; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); font-weight: 600; margin-bottom: 14px; }
.kicker::before { content: ''; width: 22px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--brand), var(--violet)); }
.headline { font-family: var(--display); font-weight: 900; font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 16px; color: var(--ink); }
.headline .ht { color: var(--brand); }
.subhead { color: var(--text2); font-size: 1.05rem; line-height: 1.75; max-width: 640px; }
.ctr { text-align: center; }
.subhead.ctr { margin: 0 auto; }

/* ── SEO INTRO ── */
.intro-section { background: white; border-top: 1px solid var(--slate2); border-bottom: 1px solid var(--slate2); }
.intro-wrap { max-width: 1100px; margin: 0 auto; padding: 64px 5vw; }
.intro-wrap h2 { font-family: var(--display); font-weight: 900; font-size: clamp(1.65rem, 2.6vw, 2.15rem); letter-spacing: -0.025em; color: var(--ink); margin-bottom: 18px; line-height: 1.2; }
.intro-wrap p { color: var(--text2); font-size: 0.97rem; line-height: 1.82; margin-bottom: 16px; }
.intro-wrap p strong { color: var(--ink2); font-weight: 700; }
.intro-wrap p:last-of-type { margin-bottom: 0; }
.kw-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.kw-chip { background: var(--brand-light); border: 1.5px solid rgba(37,99,235,0.18); border-radius: 7px; padding: 5px 13px; font-family: var(--mono); font-size: 0.7rem; color: var(--brand2); font-weight: 600; letter-spacing: 0.04em; transition: all 0.2s; cursor: default; }
.kw-chip:hover { background: rgba(37,99,235,0.10); border-color: var(--brand); }

/* ── FEATURE CARDS ── */
.feat-section { background: var(--slate); border-bottom: 1px solid var(--slate2); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.fc { background: white; border: 1.5px solid var(--slate2); border-radius: 16px; padding: 32px 28px; transition: all 0.32s; position: relative; overflow: hidden; cursor: default; }
.fc::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--brand-light) 0%, transparent 60%); opacity: 0; transition: opacity 0.32s; }
.fc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand), var(--violet)); transform: scaleX(0); transform-origin: center; transition: transform 0.32s; }
.fc:hover { border-color: rgba(37,99,235,0.35); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.fc:hover::before { opacity: 1; }
.fc:hover::after { transform: scaleX(1); }
.fc-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--brand-light), #EEF2FF); border: 1.5px solid rgba(37,99,235,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; position: relative; z-index: 1; }
.fc h3 { font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; color: var(--ink); position: relative; z-index: 1; }
.fc p { color: var(--text2); font-size: 0.875rem; line-height: 1.72; position: relative; z-index: 1; }
.fc-badge { display: inline-block; margin-top: 15px; font-family: var(--mono); font-size: 0.61rem; letter-spacing: 0.08em; color: var(--brand2); background: var(--brand-light); border: 1px solid rgba(37,99,235,0.15); border-radius: 4px; padding: 3px 9px; font-weight: 700; position: relative; z-index: 1; }

/* ── DEEP SEO CONTENT ── */
.deep-section { background: white; border-bottom: 1px solid var(--slate2); }
.deep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; }
.deep-block h3 { font-family: var(--display); font-weight: 800; font-size: 1.22rem; color: var(--ink); margin-bottom: 14px; letter-spacing: -0.015em; line-height: 1.3; }
.deep-block p { color: var(--text2); font-size: 0.91rem; line-height: 1.82; margin-bottom: 13px; }
.deep-block p strong { color: var(--brand2); font-weight: 700; }
.deep-block ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 12px; }
.deep-block li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text2); line-height: 1.6; }
.deep-block li::before { content: '▸'; color: var(--brand); font-weight: 700; flex-shrink: 0; margin-top: 2px; font-size: 0.85rem; }
.deep-full { grid-column: 1 / -1; }
.deep-callout { background: linear-gradient(135deg, var(--brand-light) 0%, #EEF2FF 100%); border: 1.5px solid rgba(37,99,235,0.18); border-radius: 14px; padding: 32px 36px; margin-top: 48px; }
.deep-callout h3 { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--brand2); margin-bottom: 12px; }
.deep-callout p { color: var(--text2); font-size: 0.92rem; line-height: 1.78; }
.deep-callout p strong { color: var(--ink2); font-weight: 700; }

/* ── SETUP STEPS ── */
.setup-section { background: var(--slate); border-bottom: 1px solid var(--slate2); }
.setup-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 64px; align-items: start; }
.setup-steps { display: flex; flex-direction: column; }
.s-step { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--slate2); cursor: pointer; transition: all 0.2s; }
.s-step:first-child { padding-top: 0; }
.s-step:last-child { border-bottom: none; padding-bottom: 0; }
.s-num-col { display: flex; flex-direction: column; align-items: center; }
.s-num { width: 44px; height: 44px; border-radius: 50%; background: white; border: 2px solid var(--slate3); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 700; font-size: 0.85rem; color: var(--text3); flex-shrink: 0; transition: all 0.25s; }
.s-step.on .s-num, .s-step:hover .s-num { background: linear-gradient(135deg, var(--brand), var(--brand2)); border-color: var(--brand); color: white; box-shadow: 0 4px 14px rgba(37,99,235,0.42); }
.s-line { width: 2px; flex: 1; margin-top: 8px; min-height: 22px; border-radius: 2px; background: linear-gradient(180deg, var(--brand-glow), transparent); }
.s-body { padding-top: 9px; }
.s-body h3 { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--ink); margin-bottom: 7px; transition: color 0.2s; }
.s-step:hover .s-body h3 { color: var(--brand); }
.s-body p { color: var(--text2); font-size: 0.875rem; line-height: 1.65; }
.s-tag { display: inline-block; margin-top: 9px; font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.07em; background: var(--amber-light); color: var(--amber); border: 1px solid rgba(217,119,6,0.2); border-radius: 5px; padding: 3px 9px; font-weight: 700; }
.s-tag.green { background: var(--emerald-light); color: var(--emerald); border-color: rgba(5,150,105,0.2); }
.screen-sticky { position: sticky; top: 100px; }
.app-preview { background: white; border: 1.5px solid var(--slate3); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.app-bar { background: var(--slate); padding: 10px 14px; border-bottom: 1px solid var(--slate2); display: flex; align-items: center; gap: 10px; }
.app-bar-dots { display: flex; gap: 5px; }
.app-dot { width: 10px; height: 10px; border-radius: 50%; }
.app-dot-r { background: #FF5F57; } .app-dot-y { background: #FEBC2E; } .app-dot-g { background: #28C840; }
.app-bar-title { flex: 1; text-align: center; font-family: var(--mono); font-size: 0.65rem; color: var(--text3); font-weight: 500; }
.app-preview img { width: 100%; display: block; transition: opacity 0.4s ease; }
.app-cap { padding: 14px 20px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%); color: white; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 9px; }

/* ── DATA TABLE ── */
.table-section { background: white; border-top: 1px solid var(--slate2); }
.table-shell { margin-top: 56px; border: 1.5px solid var(--slate3); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--slate); }
.table-header { background: white; padding: 16px 24px; border-bottom: 1.5px solid var(--slate2); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.t-search { display: flex; align-items: center; gap: 9px; flex: 1; min-width: 220px; background: var(--slate); border: 1.5px solid var(--slate3); border-radius: 9px; padding: 8px 14px; font-family: var(--mono); font-size: 0.74rem; color: var(--text2); }
.t-search .kw { color: var(--brand); font-weight: 700; }
.t-search .sep { color: var(--text4); }
.t-pill { background: var(--emerald-light); border: 1px solid rgba(5,150,105,0.2); border-radius: 7px; padding: 7px 13px; font-family: var(--mono); font-size: 0.71rem; color: var(--emerald); font-weight: 700; display: flex; align-items: center; gap: 6px; }
.t-run { background: linear-gradient(135deg, var(--brand), var(--brand2)); color: white; font-family: var(--mono); font-weight: 700; font-size: 0.71rem; padding: 9px 20px; border-radius: 8px; border: none; cursor: pointer; letter-spacing: 0.04em; box-shadow: 0 4px 14px rgba(37,99,235,0.38); transition: all 0.2s; }
.t-run:hover { transform: translateY(-1px); box-shadow: 0 7px 22px rgba(37,99,235,0.48); }
.tbl-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
thead tr { background: white; border-bottom: 1.5px solid var(--slate2); }
thead th { padding: 11px 18px; text-align: left; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; color: var(--text3); font-weight: 700; white-space: nowrap; }
tbody tr { border-bottom: 1px solid var(--slate2); background: white; transition: background 0.14s; }
tbody tr:hover { background: var(--brand-light); }
tbody tr:nth-child(even) { background: #FAFBFE; }
tbody tr:nth-child(even):hover { background: var(--brand-light); }
tbody td { padding: 12px 18px; color: var(--text2); white-space: nowrap; }
tbody td:first-child { color: var(--text3); font-family: var(--mono); font-size: 0.69rem; }
tbody td:nth-child(2) { color: var(--ink); font-weight: 700; }
.ct { color: var(--brand) !important; font-weight: 700; font-family: var(--mono); font-size: 0.73rem; }
.cs { color: var(--amber); font-weight: 700; }
.cg { color: var(--emerald) !important; font-weight: 600; }
.cd { color: var(--text3) !important; }
.table-foot { background: white; padding: 13px 24px; border-top: 1.5px solid var(--slate2); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.t-count { font-family: var(--mono); font-size: 0.73rem; color: var(--text3); }
.t-count strong { color: var(--brand); }
.dl-btns { display: flex; gap: 8px; }
.dl-btn { font-family: var(--mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; padding: 6px 13px; border-radius: 6px; border: 1.5px solid var(--slate3); background: white; color: var(--text2); cursor: pointer; transition: all 0.2s; }
.dl-btn:hover { border-color: var(--brand); color: var(--brand); }
.dl-btn.sel { background: var(--brand); color: white; border-color: var(--brand); }

/* ── USE CASES ── */
.use-section { background: var(--slate); border-top: 1px solid var(--slate2); }
.use-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 56px; }
.uc { background: white; border: 1.5px solid var(--slate2); border-radius: 14px; padding: 28px 22px; text-align: center; transition: all 0.3s; }
.uc:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.uc-ico { font-size: 2.3rem; margin-bottom: 14px; }
.uc h3 { font-family: var(--display); font-weight: 700; font-size: 0.95rem; margin-bottom: 9px; color: var(--ink); }
.uc p { color: var(--text2); font-size: 0.82rem; line-height: 1.65; }

/* ── COMPARISON ── */
.cmp-section { background: white; border-top: 1px solid var(--slate2); }
.cmp-tbl { width: 100%; border-collapse: collapse; margin-top: 56px; border: 1.5px solid var(--slate3); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.cmp-tbl thead tr { background: linear-gradient(135deg, var(--ink2) 0%, var(--ink) 100%); }
.cmp-tbl thead th { padding: 17px 22px; text-align: left; font-family: var(--display); font-weight: 800; font-size: 0.9rem; color: white; }
.cmp-tbl thead th:first-child { width: 32%; }
.cmp-tbl tbody tr { border-bottom: 1px solid var(--slate2); }
.cmp-tbl tbody tr:last-child { border-bottom: none; }
.cmp-tbl tbody tr:nth-child(even) { background: var(--slate); }
.cmp-tbl tbody td { padding: 14px 22px; font-size: 0.875rem; color: var(--text2); }
.cmp-tbl tbody td:first-child { color: var(--ink); font-weight: 600; }
.t-ok { color: var(--emerald); font-weight: 800; }
.t-no { color: var(--rose); font-weight: 800; }
.t-hi { background: var(--brand-light) !important; color: var(--brand2) !important; font-weight: 800; }

/* ── PRICING ── */
.price-section { background: var(--slate); border-top: 1px solid var(--slate2); }
.toggle-wrap { display: flex; align-items: center; background: white; border: 1.5px solid var(--slate3); border-radius: 12px; padding: 4px; width: fit-content; margin: 30px auto 0; box-shadow: var(--shadow-xs); }
.tog { padding: 9px 28px; border-radius: 9px; font-family: var(--mono); font-weight: 700; font-size: 0.8rem; border: none; cursor: pointer; transition: all 0.25s; color: var(--text3); background: transparent; }
.tog.on { background: linear-gradient(135deg, var(--brand), var(--brand2)); color: white; box-shadow: 0 3px 10px rgba(37,99,235,0.38); }
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.pc { background: white; border: 1.5px solid var(--slate2); border-radius: 20px; padding: 38px 30px; position: relative; transition: all 0.3s; }
.pc:hover { border-color: rgba(37,99,235,0.35); box-shadow: var(--shadow-lg); }
.pc.star { border-color: var(--brand); border-width: 2px; background: linear-gradient(180deg, var(--brand-light) 0%, white 65%); }
.star-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--brand), var(--violet)); color: white; font-family: var(--mono); font-weight: 700; font-size: 0.61rem; letter-spacing: 0.1em; padding: 5px 16px; border-radius: 100px; box-shadow: 0 4px 14px rgba(37,99,235,0.42); }
.pc-tier { font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.14em; color: var(--text3); text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.pc-price { font-family: var(--display); font-weight: 900; font-size: 3.2rem; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.pc-price .sym { font-size: 1.4rem; vertical-align: super; color: var(--brand); }
.pc-price .mo { font-size: 0.88rem; font-family: var(--body); font-weight: 400; color: var(--text3); }
.pc-blurb { color: var(--text2); font-size: 0.85rem; margin-bottom: 28px; line-height: 1.55; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.pc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text2); }
.pc-list li .ck { color: var(--emerald); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pc-list li.dim { color: var(--text4); }
.pc-list li.dim .ck { color: var(--text4); }
.pc-btn { display: block; width: 100%; padding: 14px; border-radius: 10px; text-align: center; text-decoration: none; font-family: var(--display); font-weight: 800; font-size: 0.95rem; transition: all 0.25s; cursor: pointer; border: none; }
.pc-btn-line { background: white; color: var(--brand); border: 1.5px solid var(--slate3); }
.pc-btn-line:hover { border-color: var(--brand); background: var(--brand-light); color: var(--brand); }
.pc-btn-solid { background: linear-gradient(135deg, var(--brand), var(--brand2)); color: white; box-shadow: 0 6px 20px rgba(37,99,235,0.40); }
.pc-btn-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,99,235,0.52); color: white; }

/* ── TESTIMONIALS ── */
.testi-section { background: white; border-top: 1px solid var(--slate2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.tc-card { background: var(--slate); border: 1.5px solid var(--slate2); border-radius: 18px; padding: 30px 28px; position: relative; overflow: hidden; transition: all 0.3s; }
.tc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--brand), var(--violet)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.tc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tc-card:hover::before { transform: scaleX(1); }
.tc-stars { color: var(--amber); font-size: 0.92rem; margin-bottom: 14px; letter-spacing: 3px; }
.tc-mark { font-family: var(--display); font-weight: 900; font-size: 4rem; color: var(--brand); opacity: 0.10; position: absolute; top: 12px; right: 18px; line-height: 1; }
.tc-body { font-size: 0.9rem; color: var(--text2); line-height: 1.78; margin-bottom: 22px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--brand-light), #EEF2FF); border: 2px solid rgba(37,99,235,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.8rem; color: var(--brand2); font-weight: 700; }
.tc-name { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.tc-role { font-size: 0.71rem; color: var(--text3); font-family: var(--mono); margin-top: 2px; }

/* ── FAQ ── */
.faq-section { background: var(--slate); border-top: 1px solid var(--slate2); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; margin-top: 56px; }
.faq-side h2 { font-family: var(--display); font-weight: 900; font-size: 1.9rem; letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.2; color: var(--ink); }
.faq-side p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.faq-contact-card { background: white; border: 1.5px solid var(--slate3); border-radius: 14px; padding: 24px; }
.faq-contact-card h4 { font-family: var(--display); font-weight: 800; font-size: 0.97rem; color: var(--brand); margin-bottom: 14px; }
.faq-contact-card p { font-size: 0.82rem; color: var(--text2); margin-bottom: 6px; font-weight: 500; }
.faq-contact-card a { color: var(--brand2); font-weight: 700; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.faq-contact-card a:hover { color: var(--brand); text-decoration: underline; }
.faq-items { display: flex; flex-direction: column; }
.faq-row { border-bottom: 1px solid var(--slate2); }
.faq-trigger { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; cursor: pointer; text-align: left; color: var(--ink); font-family: var(--display); font-weight: 700; font-size: 1rem; transition: color 0.2s; }
.faq-trigger:hover, .faq-trigger.open { color: var(--brand); }
.faq-icon-btn { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; background: var(--slate); border: 1.5px solid var(--slate3); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--brand); font-weight: 700; font-family: var(--mono); transition: all 0.25s; }
.faq-trigger.open .faq-icon-btn { background: var(--brand); color: white; border-color: var(--brand); }
.faq-body { color: var(--text2); font-size: 0.9rem; line-height: 1.78; max-height: 0; overflow: hidden; transition: max-height 0.36s ease, padding 0.3s; }
.faq-body.open { max-height: 400px; padding-bottom: 22px; }

/* ── FINAL CTA ── */
.cta-section { position: relative; overflow: hidden; background: linear-gradient(145deg, var(--ink2) 0%, var(--ink) 50%, #001040 100%); }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(37,99,235,0.18) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.cta-glow { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 640px; height: 400px; background: radial-gradient(ellipse, rgba(37,99,235,0.25) 0%, transparent 70%); pointer-events: none; }
.cta-wrap { max-width: 760px; margin: 0 auto; padding: 112px 5vw; text-align: center; position: relative; z-index: 1; }
.cta-wrap h2 { font-family: var(--display); font-weight: 900; font-size: clamp(2.3rem, 4.5vw, 3.8rem); letter-spacing: -0.035em; color: white; margin-bottom: 18px; line-height: 1.08; }
.cta-wrap h2 .ht { background: linear-gradient(90deg, var(--brand3), #A5B4FC); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-wrap p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 44px; line-height: 1.7; }
.cta-btn-main { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--brand2); font-family: var(--display); font-weight: 900; font-size: 1.05rem; padding: 17px 42px; border-radius: var(--r); text-decoration: none; box-shadow: 0 10px 36px rgba(0,0,0,0.28); transition: all 0.25s; }
.cta-btn-main:hover { transform: translateY(-3px); box-shadow: 0 18px 52px rgba(0,0,0,0.36); color: var(--brand2); }
.cta-perks { display: flex; gap: 28px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.cta-perk { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.55); font-size: 0.81rem; }
.cta-perk span:first-child { color: var(--brand3); }

/* ── FOOTER ── */
footer { background: #010818; color: rgba(255,255,255,0.45); padding: 72px 5vw 36px; }
.foot-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 56px; }
.foot-brand .brand-icon { box-shadow: none; background: linear-gradient(145deg, var(--brand), var(--ink2)); }
.foot-brand .brand-name { color: rgba(255,255,255,0.85); }
.foot-brand .brand-name em { color: var(--brand3); }
.foot-brand p { color: rgba(255,255,255,0.38); font-size: 0.85rem; line-height: 1.65; margin-top: 16px; max-width: 280px; }
.foot-company { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); }
.foot-company p { font-size: 0.76rem; color: rgba(255,255,255,0.28); line-height: 1.65; }
.foot-company strong { color: rgba(255,255,255,0.45); }
.foot-company a { color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.foot-company a:hover { color: var(--brand3); }
.foot-col h4 { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.28); text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.foot-col li a:hover { color: var(--brand3); }
.foot-bottom { max-width: 1100px; margin: 56px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-bottom p { font-size: 0.76rem; }
.foot-bottom a { color: var(--brand3); text-decoration: none; }
.foot-bottom a:hover { text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes appear { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }
.rv { opacity:0; transform:translateY(28px); transition:opacity 0.72s ease, transform 0.72s ease; }
.rl { opacity:0; transform:translateX(-28px); transition:opacity 0.72s ease, transform 0.72s ease; }
.rr { opacity:0; transform:translateX(28px); transition:opacity 0.72s ease, transform 0.72s ease; }
.rv.in, .rl.in, .rr.in { opacity:1; transform:none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .feat-grid { grid-template-columns: 1fr 1fr; } .use-grid { grid-template-columns: 1fr 1fr; } .deep-grid { grid-template-columns: 1fr; } .foot-inner { grid-template-columns: 1fr 1fr; gap: 40px; } .faq-layout { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 768px) { :root { --section-pad: 64px; } .setup-layout { grid-template-columns: 1fr; gap: 40px; } .price-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } .testi-grid { grid-template-columns: 1fr; } .stats-row { grid-template-columns: 1fr 1fr; } nav .nav-menu { display: none; } .nav-end .btn-login { display: none; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } .use-grid { grid-template-columns: 1fr 1fr; } .foot-inner { grid-template-columns: 1fr; } .hero h1 { font-size: clamp(2.4rem, 8vw, 4rem); } .deep-callout { padding: 22px 20px; } }
