/* ============================================================
   LeadHub — Public / Landing Page Styles
   ============================================================ */

:root {
  --primary:       #4285F4;
  --primary-dark:  #1a56d6;
  --primary-light: #EBF3FE;
  --secondary:     #34A853;
  --accent:        #EA4335;
  --g-blue:        #4285F4;
  --g-red:         #EA4335;
  --g-yellow:      #FBBC04;
  --g-green:       #34A853;
  --text:          #0F172A;
  --text-muted:    #64748B;
  --text-light:    #94A3B8;
  --border:        #E2E8F0;
  --bg-light:      #F8FAFC;
  --bg-card:       #FFFFFF;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.12);
  --radius:        12px;
  --radius-lg:     20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ── Typography ──────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── Navbar ──────────────────────────────────── */
/* ── Google 4-colour top bar ─────────────── */
.nav-top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  display: flex;
  z-index: 200;
}
.nav-top-bar span { flex: 1; }

/* ── Navbar ──────────────────────────────── */
.pub-nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #F1F5F9;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.pub-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #4285F4, #1a56d6);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(66,133,244,.4);
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  font-family: 'Montserrat', sans-serif;
  transition: color .2s;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  list-style: none;
}
.nav-links a {
  position: relative;
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: color .15s, background .15s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  border-radius: 2px;
  background: #4285F4;
  transition: left .2s, right .2s;
}
.nav-links a:hover  { color: #4285F4; background: #EBF3FE; }
.nav-links a.active { color: #4285F4; background: #EBF3FE; }
.nav-links a:hover::after,
.nav-links a.active::after { left: 13px; right: 13px; }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-nav-login {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: background .15s, color .15s;
}
.btn-nav-login:hover { background: var(--bg-light); color: #4285F4; }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #4285F4, #1a56d6);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 3px 12px rgba(66,133,244,.38);
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(66,133,244,.48);
}

/* ── Hamburger button ─────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  border: 1.5px solid #E2E8F0;
  background: #F8FAFC;
  transition: background .15s, border-color .15s;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: #475569;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s;
  transform-origin: center;
}
.nav-hamburger.open { background: #EBF3FE; border-color: #4285F4; }
.nav-hamburger.open span { background: #4285F4; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Backdrop ─────────────────────────────── */
.mob-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 148;
  background: rgba(7,16,31,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .35s ease;
}
.mob-backdrop.open {
  display: block;
  opacity: 1;
}

/* ── Full-screen slide panel ──────────────── */
.mob-panel {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 149;
  background: #fff;
  transform: translateY(-100%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
}
.mob-panel.open {
  transform: translateY(0);
}

/* Panel header */
.mob-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #F1F5F9;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.mob-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid #E2E8F0;
  background: #F8FAFC;
  color: #64748B;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.mob-close:hover { background: #FDECEA; border-color: #EA4335; color: #EA4335; }

/* Nav links */
.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 8px;
}
.mob-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background .2s, border-color .2s, transform .2s;
  opacity: 0;
  transform: translateX(-20px);
}
.mob-panel.open .mob-link {
  animation: mobLinkSlide .32s cubic-bezier(.4,0,.2,1) calc(var(--mi,0) * 55ms + 160ms) both;
}
@keyframes mobLinkSlide {
  from { opacity:0; transform:translateX(-20px); }
  to   { opacity:1; transform:translateX(0); }
}
.mob-link:hover {
  background: #F8FAFC;
  border-color: #E2E8F0;
  transform: translateX(3px);
}
.mob-link-active {
  background: #F8FAFC !important;
  border-color: var(--mc, #4285F4) !important;
}
.mob-link-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform .2s;
}
.mob-link:hover .mob-link-icon { transform: scale(1.08); }
.mob-link-label {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  font-family: 'Montserrat', sans-serif;
}
.mob-link-active .mob-link-label { color: var(--mc, #4285F4); }
.mob-link-arrow {
  font-size: 10px;
  color: #CBD5E1;
  transition: color .2s, transform .2s;
}
.mob-link:hover .mob-link-arrow { color: var(--mc, #4285F4); transform: translateX(3px); }

@keyframes mobFadeUp {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}

/* CTA buttons */
.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 16px 0;
  opacity: 0;
  transform: translateY(14px);
}
.mob-panel.open .mob-ctas {
  animation: mobFadeUp .32s .42s both;
}
.mob-cta-login, .mob-cta-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: transform .2s, box-shadow .2s;
}
.mob-cta-login {
  background: #F1F5F9;
  color: #334155;
  border: 1.5px solid #E2E8F0;
}
.mob-cta-login:hover { background: #E2E8F0; transform: translateY(-1px); }
.mob-cta-register {
  background: linear-gradient(135deg, #4285F4, #1a56d6);
  color: #fff;
  box-shadow: 0 6px 22px rgba(66,133,244,.38);
}
.mob-cta-register:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(66,133,244,.46); }

.mob-footer {
  text-align: center;
  font-size: 12px;
  color: #CBD5E1;
  margin: 20px 16px 0;
  font-family: 'Montserrat', sans-serif;
}

/* ── Containers ──────────────────────────────── */
.pub-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.pub-container-sm {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, #4285F4 0%, #1a56d6 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(66,133,244,.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66,133,244,.42);
  opacity: .95;
}
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: #c7d2dd;
  background: var(--bg-light);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
}
.btn-lg {
  padding: 15px 36px;
  font-size: 16px;
  border-radius: 12px;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 8px;
}

/* ── Sections ────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-alt {
  background: var(--bg-light);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title .gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  display: block;
}

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-md);
}

/* ── Feature grid ────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* ── Pricing ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 20px 60px rgba(37,99,235,.15);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pricing-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.pricing-price sup {
  font-size: 24px;
  vertical-align: super;
  font-weight: 600;
  letter-spacing: 0;
}
.pricing-period {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-features {
  list-style: none;
  margin: 24px 0;
  space-y: 12px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--text-muted);
}
.pricing-features li .check {
  color: #22C55E;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-features li .cross {
  color: var(--text-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Testimonials ────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: #F59E0B; letter-spacing: 2px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin: 16px 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

/* ── Stats strip ─────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Logo cloud ──────────────────────────────── */
.logo-cloud {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.logo-cloud-item {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.03em;
  transition: color .2s;
}
.logo-cloud-item:hover { color: var(--text-muted); }

/* ── CTA band ────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 40%, #4F46E5 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.cta-band p {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-band .cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── Footer (light theme) ────────────────────── */
/* ══════════════════════════════════════════
   LIGHT FOOTER
   ══════════════════════════════════════════ */
.pub-footer {
  background: #fff;
  border-top: 1px solid #E8ECF4;
  padding: 0;
}
.footer-color-bar { display:flex; height:4px; width:100%; }
.footer-color-bar span { flex:1; }
.footer-inner-wrap { padding: 56px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-size: 17px; font-weight: 800; color: #0F172A;
  letter-spacing: -0.03em; font-family: 'Montserrat', sans-serif;
}
.footer-brand-desc {
  font-size: 13.5px; line-height: 1.75; color: #64748B;
  margin: 14px 0 20px; max-width: 280px;
}
.footer-social { display:flex; gap:8px; }
.footer-social a {
  width:34px; height:34px; border-radius:8px;
  background:#F1F5F9; border:1px solid #E2E8F0;
  display:flex; align-items:center; justify-content:center;
  color:#64748B; text-decoration:none; font-size:13px;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.footer-social a:hover { background:#4285F4; border-color:#4285F4; color:#fff; transform:translateY(-2px); }
.footer-col-head {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #0F172A; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  border: none; background: none; padding: 0;
  font-family: 'Montserrat', sans-serif;
}
.footer-col-head::before {
  content:''; display:block; width:3px; height:14px;
  border-radius:3px; background:var(--hc,#4285F4); flex-shrink:0;
}
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a {
  color:#64748B; text-decoration:none; font-size:13.5px;
  font-weight:500; transition:color .15s, padding-left .15s; display:inline-block;
}
.footer-links a:hover { color:#4285F4; padding-left:4px; }
.footer-divider { height:1px; background:#E8ECF4; margin-bottom:28px; }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap; font-size:13px;
}
.footer-copy { color:#94A3B8; }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a {
  color:#94A3B8; text-decoration:none; font-size:13px;
  font-weight:500; transition:color .15s;
}
.footer-bottom-links a:hover { color:#0F172A; }

/* ── Forms ───────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  font-family: inherit;
}
.form-input:focus {
  border-color: #4285F4;
  box-shadow: 0 0 0 3px rgba(66,133,244,.14);
}
.form-input.has-icon { padding-left: 42px; }
.input-wrapper {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 15px;
  pointer-events: none;
}
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}
.form-hint {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 6px;
}
.form-error {
  font-size: 12.5px;
  color: #EF4444;
  margin-top: 6px;
}

/* ── Alert ───────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
}
.alert-success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #15803D;
}
.alert-info {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(170deg, #fff 0%, #F0F6FF 50%, #EEF2FF 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,70,229,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(79,70,229,.08));
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #2563EB 0%, #4F46E5 50%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

/* ── Hero visual / mockup ────────────────────── */
.hero-visual {
  position: relative;
}
.hero-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.14);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: transform .4s ease;
}
.hero-mockup:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
}
.mockup-header {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin: 0 8px;
}
.mockup-body { padding: 20px; }
.mockup-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}
.mockup-thumb {
  width: 32px; height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}
.mockup-lines { flex: 1; }
.mockup-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  margin-bottom: 4px;
}
.mockup-line.short { width: 60%; }
.mockup-line.medium { width: 80%; }
.mockup-badge-row {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.mockup-badge {
  height: 22px;
  border-radius: 6px;
  width: 60px;
}
.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.floating-card:nth-child(2) { animation-delay: 1.5s; }
.floating-card:nth-child(3) { animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-1 { top: -30px; right: -24px; min-width: 160px; }
.fc-2 { bottom: 40px; left: -30px; min-width: 140px; }
.fc-stat { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.fc-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* ── Process steps ───────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 15%;
  right: 15%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}
.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative; z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 0 0 8px #fff, 0 0 0 10px rgba(37,99,235,.1);
}

/* ── FAQ ─────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color .15s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  font-size: 14px;
  color: var(--text-muted);
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── Auth pages ──────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.auth-side-panel {
  background: linear-gradient(150deg, #1E3A8A 0%, #2563EB 40%, #4338CA 100%);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-side-panel::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.auth-form-side {
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.auth-form-inner {
  width: 100%;
  max-width: 400px;
}
.auth-heading {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  color: var(--text);
}
.auth-subtext {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--text);
  background: #fff;
  transition: background .15s, border-color .15s, box-shadow .15s;
  cursor: pointer;
}
.social-btn:hover {
  background: var(--bg-light);
  border-color: #c7d2dd;
  box-shadow: var(--shadow-sm);
}
.social-btn.facebook {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}
.social-btn.facebook:hover { background: #166FE5; }
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--text-light);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Vertical tab settings layout ────────────── */
.settings-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.settings-nav {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.settings-nav-group {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.settings-nav-group:last-child { border-bottom: none; }
.settings-nav-label {
  padding: 8px 16px 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.settings-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: background .12s, color .12s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.settings-nav-item:hover {
  background: var(--bg-light);
  color: var(--text);
}
.settings-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}
.settings-nav-item i {
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.settings-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.settings-panel-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.settings-panel-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.settings-panel-header p {
  font-size: 14px;
  color: var(--text-muted);
}
.settings-panel-body {
  padding: 28px;
}
.settings-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.settings-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.settings-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.settings-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.settings-row-label { flex: 1; }
.settings-row-label strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.settings-row-label span {
  font-size: 13px;
  color: var(--text-muted);
}
.settings-row-control { flex: 1; }

/* ── Toggle switch ───────────────────────────── */
.toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--border);
  position: relative;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
  border: none;
}
.toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: transform .2s;
}
.toggle.on {
  background: var(--primary);
}
.toggle.on::after {
  transform: translateX(20px);
}

/* ── Badges ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.badge-blue   { background: #EFF6FF; color: #1D4ED8; }
.badge-green  { background: #F0FDF4; color: #15803D; }
.badge-red    { background: #FEF2F2; color: #B91C1C; }
.badge-yellow { background: #FFFBEB; color: #92400E; }
.badge-purple { background: #F5F3FF; color: #6D28D9; }
.badge-gray   { background: #F8FAFC; color: #64748B; }

/* ── Table ───────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--bg-light); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .settings-layout { grid-template-columns: 1fr; }
  .settings-nav { position: static; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-side-panel { display: none; }
  .section { padding: 64px 0; }
  .cta-band { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .footer-inner-wrap { padding: 40px 0 28px; }
}
@media (max-width: 480px) {
  .pub-container { padding: 0 16px; }
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { padding: 14px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-brand-desc { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════
   CENTERED AUTH PAGES (Login / Register / Forgot PW)
   ══════════════════════════════════════════════════════ */
.auth-center-wrap {
  min-height: 100vh;
  background: linear-gradient(145deg, #F8FAFF 0%, #EEF3FF 55%, #F4F8FF 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  position: relative;
  overflow: hidden;
}
.auth-center-wrap::before {
  content: '';
  position: absolute;
  top: -180px; right: -160px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(66,133,244,.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.auth-center-wrap::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -120px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(52,168,83,.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.auth-blob-red {
  position: absolute;
  top: 30%; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(234,67,53,.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.auth-blob-yellow {
  position: absolute;
  bottom: 20%; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(251,188,4,.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.auth-card {
  background: #fff;
  border: 1px solid #E2EAF4;
  border-radius: 22px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  position: relative;
  z-index: 1;
}
.auth-card-wide { max-width: 480px; }
.auth-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 24px;
}
.auth-card-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #4285F4, #1a56d6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(66,133,244,.38);
  flex-shrink: 0;
}
.auth-card-logo-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
}
.auth-g-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 18px;
}
.auth-g-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: gDotPulse 2s ease-in-out infinite;
}
.auth-g-dots span:nth-child(2) { animation-delay: .25s; }
.auth-g-dots span:nth-child(3) { animation-delay: .5s; }
.auth-g-dots span:nth-child(4) { animation-delay: .75s; }
.auth-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: -0.025em;
}
.auth-card-sub {
  font-size: 14px;
  color: #64748B;
  text-align: center;
  margin-bottom: 28px;
}
.auth-submit-btn {
  background: linear-gradient(135deg, #4285F4, #1a56d6) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(66,133,244,.38) !important;
  width: 100%;
  justify-content: center;
  transition: all .2s !important;
}
.auth-submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(66,133,244,.45) !important;
  opacity: .96;
}
.auth-footer-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #64748B;
}
.auth-footer-link a {
  color: #4285F4;
  font-weight: 600;
  text-decoration: none;
}
.auth-footer-link a:hover { text-decoration: underline; }
.auth-divider-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 13px;
  color: #94A3B8;
}
.auth-divider-line::before,
.auth-divider-line::after { content:''; flex:1; height:1px; background:#E2E8F0; }
.auth-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
/* Auth page form labels — friendlier style, not all-caps */
.auth-card .form-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
/* Auth social btn — cleaner border */
.auth-card .social-btn {
  border-color: #E2E8F0;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 10px;
  transition: background .15s, border-color .15s, box-shadow .15s;
}
.auth-card .social-btn:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.auth-card .social-btn.facebook { color: #fff; }
.auth-card .social-btn.facebook:hover { background: #166FE5; border-color: #166FE5; }
@media (max-width: 480px) {
  .auth-card { padding: 28px 20px; border-radius: 16px; }
}

/* ══════════════════════════════════════════════════════
   GOOGLE-PALETTE HOMEPAGE DESIGN
   ══════════════════════════════════════════════════════ */

/* ── Floating blobs ─────────────────────────────────── */
.g-blob-wrap { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.g-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: gBlobFloat 14s ease-in-out infinite;
}
.g-blob:nth-child(2) { animation-delay: -4s; }
.g-blob:nth-child(3) { animation-delay: -8s; }
.g-blob:nth-child(4) { animation-delay: -12s; }
@keyframes gBlobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.06); }
}

/* ── Hero ───────────────────────────────────────────── */
.g-hero {
  padding-top: 148px;
  padding-bottom: 108px;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.g-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.g-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 32px;
}
.g-dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dc, #4285F4);
  animation: gDotPulse 2s ease-in-out infinite;
  animation-delay: inherit;
}
@keyframes gDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .55; transform: scale(.75); }
}
.g-hero-title {
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.12;
  margin-bottom: 28px;
  color: #0F172A;
}
.g-hero-desc {
  font-size: 18px;
  color: #64748B;
  line-height: 1.75;
  margin: 0 auto 36px;
  max-width: 560px;
}
.g-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.g-btn-primary {
  background: linear-gradient(135deg, #4285F4, #1a56d6);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(66,133,244,.42);
}
.g-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(66,133,244,.48);
  opacity: .95;
}

/* ── Stat chips ─────────────────────────────────────── */
.g-stat-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.g-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 18px;
  background: var(--cb, #EBF3FE);
  border: 1.5px solid var(--cc, #4285F4);
  border-radius: 100px;
  font-size: 13px;
  color: var(--cc, #4285F4);
  font-weight: 500;
  transition: transform .2s, box-shadow .2s;
}
.g-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.g-chip strong { font-weight: 800; font-size: 14px; }

/* ── Section header ─────────────────────────────────── */
.g-section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Feature cards grid ─────────────────────────────── */
.g-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g-card {
  background: #fff;
  border: 1px solid #E8ECF0;
  border-top: 4px solid var(--gc, #4285F4);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow .22s, transform .22s;
}
.g-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.10);
  transform: translateY(-4px);
}
.g-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gbg, #EBF3FE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gc, #4285F4);
  margin-bottom: 16px;
  transition: transform .2s;
}
.g-card:hover .g-card-icon { transform: scale(1.1); }
.g-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0F172A;
}
.g-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.65;
  margin: 0;
}

/* ── How it works steps ─────────────────────────────── */
.g-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.g-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, #4285F4, #EA4335, #34A853);
  border-radius: 2px;
  z-index: 0;
}
.g-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.g-step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
}
.g-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0F172A;
}
.g-step p {
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
}

/* ── Multicolor text ────────────────────────────────── */
.g-multicolor {
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 50%, #34A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CTA band ───────────────────────────────────────── */
.g-cta-band {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.g-cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 360px; height: 360px;
  background: rgba(66,133,244,.07);
  border-radius: 50%;
}
.g-cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -60px;
  width: 440px; height: 440px;
  background: rgba(52,168,83,.06);
  border-radius: 50%;
}
.g-cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.g-cta-band p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.g-cta-band .cta-buttons { position: relative; z-index: 1; }
.g-cta-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.g-cta-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  animation: gDotPulse 2s ease-in-out infinite;
}

/* ── Google-palette responsive ──────────────────────── */
@media (max-width: 1024px) {
  .g-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .g-cta-band { padding: 56px 36px; }
}
@media (max-width: 768px) {
  .g-hero { padding-top: 112px; padding-bottom: 72px; }
  .g-hero-title { font-size: clamp(38px, 9vw, 56px); line-height: 1.1; }
  .g-hero-desc { font-size: 16.5px; }
  .g-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .g-steps { grid-template-columns: 1fr; gap: 28px; }
  .g-steps::before { display: none; }
  .g-cta-band { padding: 48px 24px; }
  .g-stat-chips { gap: 8px; }
}
@media (max-width: 540px) {
  .g-cards-grid { grid-template-columns: 1fr; }
  .g-hero-title { font-size: clamp(34px, 10vw, 48px); }
}
@media (max-width: 480px) {
  .g-hero-desc { font-size: 15.5px; }
  .g-chip { font-size: 12px; padding: 7px 12px; }
  .g-hero-ctas { flex-direction: column; align-items: center; }
  .g-hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .g-cta-band { padding: 40px 20px; }
  .g-cta-band h2 { font-size: 22px; }
}

/* ══════════════════════════════════════════════════════
   DARK HERO — Split layout with 3D lead cards
   ══════════════════════════════════════════════════════ */

.gh-hero {
  position: relative;
  background: #07101F;
  overflow: hidden;
  padding: 123px 0 80px; /* 3px top bar + 64px nav + 56px breathing room */
}

/* Blueprint grid overlay */
.gh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(66,133,244,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66,133,244,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 40% 40%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 70% at 40% 40%, black 20%, transparent 80%);
  pointer-events: none;
}

/* Ambient glow orbs */
.gh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: ghOrbPulse 12s ease-in-out infinite;
}
.gh-orb-blue  { top:-180px;right:-80px;width:700px;height:700px;background:rgba(66,133,244,.2); }
.gh-orb-red   { bottom:-200px;left:-120px;width:580px;height:580px;background:rgba(234,67,53,.15);animation-delay:4s; }
.gh-orb-green { top:35%;left:25%;width:400px;height:400px;background:rgba(52,168,83,.1);animation-delay:8s; }
@keyframes ghOrbPulse {
  0%,100% { transform:scale(1); opacity:.8; }
  50%     { transform:scale(1.25); opacity:1; }
}

.gh-inner { position:relative; z-index:2; }

/* Two-column split */
.gh-split {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 48px;
  align-items: center;
  min-height: 78vh;
  padding: 24px 0 48px;
}

/* Left text column */
.gh-eyebrow {
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.8) !important;
  margin-bottom: 28px;
}

.gh-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.gh-typed-word { transition: color .25s ease; }
.gh-cursor {
  display: inline-block;
  color: #4285F4;
  margin-left: 2px;
  font-weight: 300;
  animation: ghBlink 1s step-end infinite;
}
@keyframes ghBlink { 0%,100%{opacity:1} 50%{opacity:0} }

.gh-title-muted {
  font-size: clamp(17px, 2.4vw, 28px);
  color: rgba(255,255,255,.35);
  font-weight: 300;
  letter-spacing: -0.01em;
  display: block;
  margin-top: 4px;
}

.gh-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.72;
  max-width: 460px;
  margin-bottom: 26px;
}

.gh-ctas { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:28px; }

.gh-btn-ghost {
  background: rgba(255,255,255,.08) !important;
  border: 1.5px solid rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.88) !important;
  backdrop-filter: blur(4px);
}
.gh-btn-ghost:hover {
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.38) !important;
}

.gh-chips { display:flex; gap:9px; flex-wrap:wrap; }
.gh-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: var(--cb, rgba(66,133,244,.15));
  border: 1px solid var(--cc, #4285F4);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cc, #4285F4);
  font-family: 'Montserrat', sans-serif;
}
.gh-chip strong { font-weight: 800; }

/* ── Hero Image + Floating Badges ─────── */
.gh-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
}

/* Decorative pulsing rings behind image */
.gh-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(66,133,244,.22);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.gh-ring-1 { width: 340px; height: 340px; animation: ghRingPulse 4s ease-in-out infinite; }
.gh-ring-2 { width: 460px; height: 460px; border-color: rgba(234,67,53,.14); animation: ghRingPulse 4s ease-in-out infinite 1s; }
@keyframes ghRingPulse {
  0%,100% { opacity:.6; transform:translate(-50%,-50%) scale(1); }
  50%     { opacity:.25; transform:translate(-50%,-50%) scale(1.04); }
}

/* Float wrapper — handles the bobbing, img inside handles rotation */
.gh-girl-float {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  animation: ghImgFloat 6s ease-in-out infinite;
  perspective: 900px; /* 3D context for rotateY child */
}
@keyframes ghImgFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

/* Girl image */
.gh-girl-img {
  display: block;
  height: 460px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,.60));
}

/* Vibrant gradient Contact button in CTA band */
.cta-contact-btn {
  background: linear-gradient(135deg, #EA4335 0%, #FBBC04 50%, #34A853 100%) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(234,67,53,.35);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.cta-contact-btn:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,67,53,.45);
}

/* Floating platform badges */
.gh-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  white-space: nowrap;
}
.gh-badge-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
}
.gh-badge-num { font-size: 13px; font-weight: 800; color: #fff; font-family:'Montserrat',sans-serif; }
.gh-badge-lbl { font-size: 10px; color: rgba(255,255,255,.65); font-weight: 500; }

.gh-badge-gmb { top: 8%;  left: -10%; animation: ghBadgeFloat 5s ease-in-out infinite 0s; }
.gh-badge-fb  { top: 28%; right: -8%; animation: ghBadgeFloat 6s ease-in-out infinite .7s; }
.gh-badge-li  { bottom: 30%; left: -12%; animation: ghBadgeFloat 5.5s ease-in-out infinite 1.4s; }
.gh-badge-ig  { bottom: 14%; right: -6%; animation: ghBadgeFloat 7s ease-in-out infinite 2.1s; }

@keyframes ghBadgeFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Live counter */
.lc-live-badge {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: rgba(7,16,31,.88);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  font-family: 'Montserrat', sans-serif;
  z-index: 5;
}
.lc-live-dot {
  width: 8px; height: 8px;
  background: #34A853; border-radius: 50%;
  flex-shrink: 0;
  animation: lcLivePulse 2s ease-in-out infinite;
}
@keyframes lcLivePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,168,83,.6); }
  50%     { box-shadow: 0 0 0 7px rgba(52,168,83,0); }
}

/* ── Lead Marquee ─────────────────────── */
.lm-wrap {
  background: #07101F;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  overflow: hidden;
}
.lm-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: lmScroll 55s linear infinite;
}
.lm-track:hover { animation-play-state: paused; }
@keyframes lmScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lm-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 210px;
  flex-shrink: 0;
  transition: background .2s;
}
.lm-card:hover { background: rgba(255,255,255,.09); }
.lm-plat   { font-size: 10.5px; font-weight: 700; text-transform:uppercase; letter-spacing:.07em; margin-bottom:6px; display:flex;align-items:center;gap:5px; font-family:'Montserrat',sans-serif; }
.lm-name   { font-size: 12.5px; font-weight: 700; color:#fff; margin-bottom:4px; font-family:'Montserrat',sans-serif; }
.lm-detail { font-size: 10.5px; color:rgba(255,255,255,.45); display:flex;align-items:center;gap:5px; margin-top:2px; }
.lm-detail i { font-size: 10px; width:10px; }

/* ── Hero responsive ──────────────────── */
@media (max-width: 1200px) {
  .gh-girl-img { height: 420px; }
  .gh-badge-gmb { left: -4%; }
  .gh-badge-li  { left: -4%; }
  .gh-badge-fb  { right: -2%; }
  .gh-badge-ig  { right: -2%; }
}
@media (max-width: 1100px) {
  .gh-split { grid-template-columns: 55% 45%; gap: 28px; }
  .gh-girl-img { height: 380px; }
}
@media (max-width: 960px) {
  .gh-split { grid-template-columns: 1fr; min-height:auto; padding-bottom:32px; }
  .gh-right { display:flex; justify-content:center; margin-top: 16px; }
  .gh-img-wrap { max-width: 340px; padding-bottom: 44px; }
  .gh-girl-img { height: 300px; }
  .gh-title { font-size: clamp(34px,8vw,54px); }
  .gh-title-muted { font-size: clamp(20px,5vw,34px); }
  .gh-hero { padding: 110px 0 56px; }
  .gh-ring-1 { width: 260px; height: 260px; }
  .gh-ring-2 { width: 340px; height: 340px; }
  .gh-badge { padding: 6px 12px 6px 6px; gap: 7px; }
  .gh-badge-icon { width: 28px; height: 28px; font-size: 12px; }
  .gh-badge-num { font-size: 11px; }
  .gh-badge-lbl { font-size: 9px; }
  .gh-badge-gmb { top: 4%;  left: -2%; }
  .gh-badge-fb  { top: 22%; right: -2%; }
  .gh-badge-li  { bottom: 32%; left: -2%; }
  .gh-badge-ig  { bottom: 12%; right: -2%; }
}
@media (max-width: 700px) {
  .gh-girl-img { height: 260px; }
  .gh-badge { display: none; }
  .gh-ring-1, .gh-ring-2 { display: none; }
  .gh-img-wrap { padding-bottom: 36px; }
}
@media (max-width: 600px) {
  .gh-title { font-size: clamp(28px,9vw,42px); }
  .gh-ctas  { flex-direction:column; }
  .gh-ctas .btn { width:100%; justify-content:center; }
  .gh-girl-img { height: 230px; }
}

/* ══════════════════════════════════════════
   PRICING SECTION  (pc- prefix)
   ══════════════════════════════════════════ */

.pc-section {
  position: relative;
  padding: 96px 0 80px;
  background: linear-gradient(170deg, #F5F7FF 0%, #EEF4FF 55%, #F8FAFF 100%);
  overflow: hidden;
}

/* Decorative blobs */
.pc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.pc-blob-1 {
  width: 480px; height: 480px;
  top: -160px; left: -140px;
  background: radial-gradient(circle, rgba(66,133,244,.12), transparent 70%);
}
.pc-blob-2 {
  width: 400px; height: 400px;
  bottom: -120px; right: -100px;
  background: radial-gradient(circle, rgba(124,58,237,.1), transparent 70%);
}

/* Section head */
.pc-head {
  text-align: center;
  margin-bottom: 52px;
}

/* Toggle */
.pc-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 50px;
  padding: 8px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pc-tog-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #94A3B8;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
.pc-tog-label.pc-tog-active { color: #0F172A; }
.pc-toggle { position: relative; display: inline-block; width: 48px; height: 26px; cursor: pointer; }
.pc-toggle input { opacity: 0; width: 0; height: 0; }
.pc-track {
  position: absolute; inset: 0;
  background: #CBD5E1;
  border-radius: 50px;
  transition: background .25s;
}
.pc-toggle input:checked + .pc-track { background: #4285F4; }
.pc-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  transition: transform .25s;
}
.pc-toggle input:checked + .pc-track .pc-knob { transform: translateX(22px); }
.pc-save-pill {
  background: linear-gradient(135deg, #34A853, #2d9647);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .03em;
}

/* Grid */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Card */
.pc-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border: 1.5px solid #E8ECF4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .28s, box-shadow .28s;
}
.pc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 54px rgba(0,0,0,.11);
}
.pc-card-pop {
  border-color: #7C3AED;
  box-shadow: 0 6px 32px rgba(124,58,237,.18);
  transform: translateY(-6px);
}
.pc-card-pop:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 64px rgba(124,58,237,.24);
}

/* Coloured stripe header */
.pc-stripe {
  position: relative;
  padding: 24px 24px 20px;
  color: #fff;
}
.pc-stripe-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pc-stripe-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.22);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pc-plan-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: 'Montserrat', sans-serif;
}
.pc-plan-tag {
  font-size: 11.5px;
  font-weight: 600;
  opacity: .82;
  margin-top: 2px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pc-hot-pill {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
  font-family: 'Montserrat', sans-serif;
}

/* Price block */
.pc-price-block {
  padding: 22px 24px 16px;
  border-bottom: 1px solid #F1F5F9;
}
.pc-price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.pc-price-display {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.pc-sym {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
}
.pc-num {
  font-size: 52px;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: 'Montserrat', sans-serif;
  transition: all .22s ease;
}
.pc-price-meta {
  display: flex;
  flex-direction: column;
  padding-bottom: 4px;
}
.pc-period {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 600;
  white-space: nowrap;
}
.pc-billing {
  font-size: 11px;
  color: #CBD5E1;
  font-weight: 500;
  white-space: nowrap;
}
.pc-saving-note {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Stats row */
.pc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid #F1F5F9;
}
.pc-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #475569;
  font-weight: 500;
}
.pc-stat i {
  font-size: 11px;
  color: var(--pcc, #4285F4);
  width: 12px;
  text-align: center;
  flex-shrink: 0;
}

/* CTA */
.pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 24px 0;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: transform .22s, box-shadow .22s, opacity .22s;
}
.pc-cta-filled {
  background: var(--pcg, linear-gradient(135deg,#7C3AED,#4F46E5));
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(124,58,237,.35);
}
.pc-cta-filled:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(124,58,237,.45); }
.pc-cta-outline {
  border: 2px solid var(--pcc, #4285F4);
  color: var(--pcc, #4285F4) !important;
  background: transparent;
}
.pc-cta-outline:hover {
  background: var(--pcc, #4285F4);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Feature divider */
.pc-feat-head {
  margin: 16px 24px 0;
  padding: 12px 0 0;
  border-top: 1px solid #F1F5F9;
}
.pc-feat-head span {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #94A3B8;
  font-family: 'Montserrat', sans-serif;
}

/* Feature list */
.pc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 24px 24px;
  flex: 1;
}
.pc-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
}
.pc-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--pcl, #EBF3FE);
  color: var(--pcc, #4285F4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pc-check i { font-size: 9px; }

/* Trust row */
.pc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid #E2E8F0;
  font-size: 13px;
  color: #64748B;
  font-weight: 600;
}
.pc-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Responsive */
@media (max-width: 900px) {
  .pc-grid { grid-template-columns: 1fr 1fr; }
  .pc-card-pop { transform: none; }
  .pc-card-pop:hover { transform: translateY(-6px); }
}
@media (max-width: 600px) {
  .pc-grid { grid-template-columns: 1fr; }
  .pc-num { font-size: 44px; }
  .pc-section { padding: 64px 0 56px; }
  .pc-trust { gap: 18px; }
}

/* ══════════════════════════════════════════
   PHONE FIELD  (pf- prefix)
   ══════════════════════════════════════════ */

.pf-wrap {
  position: relative;
  display: flex;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.pf-wrap:focus-within {
  border-color: #4285F4;
  box-shadow: 0 0 0 3px rgba(66,133,244,.12);
}

/* Flag button */
.pf-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px 0 12px;
  border: none;
  border-right: 1.5px solid #E2E8F0;
  background: #F8FAFC;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  height: 44px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.pf-btn:hover { background: #F0F4F8; }
.pf-flag { font-size: 18px; line-height: 1; }
.pf-dial { font-size: 13px; font-weight: 700; color: #374151; font-family: 'Montserrat', sans-serif; }
.pf-chevron { font-size: 9px; color: #94A3B8; margin-left: 1px; }

/* Number input */
.pf-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14.5px;
  color: #0F172A;
  border-radius: 0 8px 8px 0;
  outline: none;
  min-width: 0;
  font-family: inherit;
}
.pf-input::placeholder { color: #CBD5E1; }

/* Hidden code input */
.pf-code { display: none; }

/* Dropdown */
.pf-drop {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 290px;
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(0,0,0,.14);
  z-index: 1000;
  display: none;
  overflow: hidden;
}
.pf-drop.open { display: block; }

.pf-search {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #F1F5F9;
  padding: 10px 14px 10px 38px;
  font-size: 13.5px;
  outline: none;
  background: #F8FAFC url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E") no-repeat 12px center;
  font-family: inherit;
}
.pf-list {
  max-height: 230px;
  overflow-y: auto;
}
.pf-list::-webkit-scrollbar { width: 4px; }
.pf-list::-webkit-scrollbar-track { background: #F8FAFC; }
.pf-list::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }

.pf-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background .12s;
  font-size: 13.5px;
}
.pf-opt:hover { background: #F0F6FF; }
.pf-opt-flag { font-size: 18px; flex-shrink: 0; }
.pf-opt-name { flex: 1; color: #0F172A; font-weight: 500; }
.pf-opt-code { color: #94A3B8; font-size: 12px; font-weight: 700; font-family: 'Montserrat', sans-serif; }

/* ══════════════════════════════════════════
   BUG REPORT BUTTON + MODAL  (br- prefix)
   ══════════════════════════════════════════ */

/* Floating button */
.br-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #EA4335, #c0392b);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(234,67,53,.4);
  transition: transform .22s, box-shadow .22s;
  text-decoration: none;
}
.br-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(234,67,53,.5);
  color: #fff;
}
.br-fab i { font-size: 14px; }

/* Modal overlay */
.br-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px);
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
  padding: 0;
}
.br-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Modal panel */
.br-panel {
  background: #fff;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(40px);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  padding: 0 0 32px;
}
.br-overlay.open .br-panel {
  transform: translateY(0);
}
.br-panel::-webkit-scrollbar { width: 4px; }
.br-panel::-webkit-scrollbar-thumb { background: #E2E8F0; border-radius: 4px; }

/* Panel header */
.br-head {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #F1F5F9;
  padding: 18px 24px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
  border-radius: 24px 24px 0 0;
}
.br-head-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FDECEA, #FECACA);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: #EA4335;
  flex-shrink: 0;
}
.br-head-text { flex: 1; }
.br-head-title {
  font-size: 16px;
  font-weight: 800;
  color: #0F172A;
  font-family: 'Montserrat', sans-serif;
}
.br-head-sub {
  font-size: 12.5px;
  color: #94A3B8;
  margin-top: 1px;
}
.br-close {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1.5px solid #E2E8F0;
  background: #F8FAFC;
  color: #64748B;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .15s, color .15s;
}
.br-close:hover { background: #FDECEA; border-color: #EA4335; color: #EA4335; }

/* Panel body */
.br-body { padding: 24px 24px 0; }

/* Row helpers */
.br-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Priority pills */
.br-priority {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.br-pri-pill {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid #E2E8F0;
  background: #F8FAFC;
  font-size: 12.5px;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all .15s;
}
.br-pri-pill.active[data-p="low"]    { background:#E6F4EA;border-color:#34A853;color:#16A34A; }
.br-pri-pill.active[data-p="medium"] { background:#FEF9E0;border-color:#FBBC04;color:#B45309; }
.br-pri-pill.active[data-p="high"]   { background:#FDECEA;border-color:#EA4335;color:#DC2626; }

/* Submit btn */
.br-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #EA4335, #c0392b);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  margin-top: 24px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(234,67,53,.32);
}
.br-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(234,67,53,.42); }
.br-submit:disabled { opacity: .65; cursor: not-allowed; }

@media (max-width: 580px) {
  .br-panel { border-radius: 20px 20px 0 0; }
  .br-row-2 { grid-template-columns: 1fr; }
  .br-fab span { display: none; }
  .br-fab { padding: 12px 14px; }
}
