/* ===== CSS VARIABLES ===== */
:root {
  --accent: #f39c3a;
  --accent-light: #f5ac5b;
  --accent-glow: #fad8b2;
  --accent-dim: rgba(243,156,58,0.15);
  --bg: #1e1b1d;
  --bg-2: #252123;
  --bg-3: #2d292b;
  --surface: #2a2628;
  --surface-2: #322e30;
  --border: rgba(243,156,58,0.18);
  --border-subtle: rgba(255,255,255,0.07);
  --text: #f3f1f0;
  --text-2: #b8b4b6;
  --text-3: #686567;
  --google-form: #7372fe;
  --google-form-dark: #5746e3;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(243,156,58,0.12);
}

[data-theme="light"] {
  --bg: #f3f1f0;
  --bg-2: #ede9e7;
  --bg-3: #e5e0dd;
  --surface: #ffffff;
  --surface-2: #f8f5f3;
  --border: rgba(243,156,58,0.25);
  --border-subtle: rgba(0,0,0,0.08);
  --text: #1e1b1d;
  --text-2: #4a4648;
  --text-3: #888487;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(243,156,58,0.08);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== FADE-UP ANIMATION ===== */
/* .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: none; } */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ===== CONTAINER ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-img { height: 32px; width: auto; }
.logo-img-ac { height: 28px; width: auto; }
.logo-img-sol { height: 72px; width: auto; }
.logo-wrapper {
  display: flex; align-items: center; justify-content: center;
  padding: 10px; margin-bottom: 12px; margin-top: 12px;
}
.logo-text {
  font-family: 'inter', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--text);
}
.logo-x { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'helvetica', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-3);
  padding: 4px 6px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.lang-btn.active, .lang-btn:hover { color: var(--accent); background: var(--accent-dim); }
.lang-sep { color: var(--text-3); font-size: 0.75rem; }

.theme-toggle {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: 8px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-2);
  transition: color 0.2s, border-color 0.2s;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--border); }
.theme-toggle svg { width: 17px; height: 17px; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg-2); border-top: 1px solid var(--border-subtle);
  padding: 16px 24px 20px;
}
.mobile-menu a {
  padding: 12px 0; font-weight: 500; font-size: 0.95rem;
  color: var(--text-2); border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-cta {
  margin-top: 12px; text-align: center;
  background: var(--google-form); color: #fff;
  padding: 12px; border-radius: 10px;
  font-weight: 700; border: none;
}

/* ===== GRID LINES ===== */
.grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  display: flex; justify-content: space-between;
  padding: 0 calc((100% - 1120px) / 2);
  overflow: hidden;
}
.grid-lines span {
  display: block; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--border-subtle) 30%, var(--border-subtle) 70%, transparent 100%);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(243,156,58,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,172,91,0.1) 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.orb-3 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(243,156,58,0.15) 0%, transparent 70%);
  top: -150px; left: 50%; transform: translateX(-50%);
}
.hero-container {
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'inter', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, #fce5c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-2); max-width: 640px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--google-form); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 24px rgba(133, 37, 211, 0.35);
}
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.2s; }
.btn-primary:hover { background: var(--google-form-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(133, 37, 211, 0.45); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--border); color: var(--text-2);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 50px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-dim); }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 20px 36px;
  box-shadow: var(--shadow);
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num {
  font-family: 'inter', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--accent);
}
.stat-label { font-size: 0.78rem; font-weight: 500; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: var(--border-subtle); }

/* ===== highlight words ===== */
.highlight-autocount {
  font-size: 1.3em; /* adjust as needed */
  font-weight: 700;
  color: #8cc63f; /* optional highlight color */
}

.highlight-bettr {
  font-size: 1.3em; /* adjust as needed */
  font-weight: 700;
  color: #7C28FF; /* optional highlight color */
}

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 48px; text-align: center;
}
.section-title.left { text-align: left; margin-bottom: 16px; }

/* ===== PAIN SECTION ===== */
.pain-section { padding: 100px 0; background: var(--bg-2); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pain-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.pain-img-wrapper {
  padding: 20px;
  width: 139%;
}
.pain-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pain-card {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  border-color: var(--border); transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.pain-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pain-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.pain-card h3 { font-family: 'inter', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.pain-card p { color: var(--text-2); font-size: 0.9rem; line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 100px 0; }
.steps-grid {
  display: flex; align-items: flex-start; gap: 16px;
}
.step-card {
  flex: 1; background: var(--surface-2);
  border: 1px solid var(--border-subtle); border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 272px;
}
.step-card:hover { border-color: var(--border); box-shadow: var(--shadow-glow); }
.step-num {
  font-family: 'inter', sans-serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--accent-dim); line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1.5px var(--accent);
}
.step-content h3 {
  font-family: 'inter', sans-serif;
  font-size: 1.1rem; font-weight: 600; margin-bottom: 10px;
}
.step-content p { color: var(--text-2); font-size: 0.9rem; line-height: 1.65; }
.step-connector {
  flex: 0 0 40px; height: 2px; background: linear-gradient(to right, var(--accent), var(--accent-light));
  margin-top: 72px; opacity: 0.4;
}

/* ===== BENEFITS ===== */
.benefits-section { padding: 100px 0; background: var(--bg-2); }
.benefits-grid {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  flex-direction: row;
}
.feat-card {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feat-card:hover {
  border-color: var(--border); transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feat-card-highlight {
  border-color: var(--border) !important;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(243,156,58,0.06) 100%);
  position: relative; overflow: hidden;
}
.feat-card-highlight::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
}
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feat-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.feat-card h3 { font-family: 'inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feat-card p { color: var(--text-2); font-size: 0.875rem; line-height: 1.65; }

/* ===== DOCS SECTION ===== */
.docs-section { padding: 50px 0; }
.docs-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.docs-sub { color: var(--text-2); font-size: 0.95rem; line-height: 1.7; margin-top: 12px; }
.docs-sub-bottom { color: var(--text-2); font-size: 0.65rem; line-height: 1.7; margin-top: 12px; }
.docs-list { display: flex; flex-direction: column; gap: 16px; }
.doc-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 18px 20px;
  transition: border-color 0.2s; min-height: 100px;
}
.doc-item:hover { border-color: var(--border); }
.doc-check {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  color: #1e1b1d;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.45rem; font-weight: 800;
}
.doc-item strong { font-size: 0.9rem; font-weight: 600; display: block; }
.doc-note { font-size: 0.8rem; color: var(--text-3); }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 100px 0; background: var(--bg-2); }
.faq-tabs {
  display: flex; gap: 8px; margin-bottom: 36px; justify-content: center;
}
.faq-tab {
  background: var(--surface); border: 1.5px solid var(--border-subtle);
  border-radius: 50px; padding: 10px 22px;
  font-family: 'helvetica', sans-serif;
  font-size: 0.88rem; font-weight: 600; color: var(--text-2);
  cursor: pointer; transition: all 0.2s;
}
.faq-tab.active, .faq-tab:hover {
  background: var(--accent); border-color: var(--accent);
  color: #1e1b1d;
}
.faq-group { display: none; }
.faq-group.active { display: block; }

.faq-item {
  border: 1px solid var(--border-subtle); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden;
  background: var(--surface);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'helvetica', sans-serif;
  font-size: 0.93rem; font-weight: 600; color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--text-3); transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-answer p, .faq-answer ul {
  padding: 0 24px 20px; color: var(--text-2);
  font-size: 0.88rem; line-height: 1.75;
}
.faq-answer ul { padding-left: 40px; }
.faq-answer ul li { margin-bottom: 6px; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding-top: 120px; padding-bottom: 30px; position: relative; overflow: hidden;
  background: var(--bg);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 680px; margin: 0 auto;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  margin-bottom: 24px;
}
.cta-title {
  font-family: 'inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; margin-bottom: 18px; line-height: 1.2;
}
.cta-sub {
  color: var(--text-2); font-size: 0.98rem; line-height: 1.75;
  margin-bottom: 36px;
}

.btn-google-form {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--google-form); color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 16px 36px; border-radius: 50px;
  box-shadow: 0 4px 24px rgba(133, 37, 211, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  margin-bottom: 20px;
}
.btn-google-form svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-google-form:hover {
  background: var(--google-form-dark); transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(133, 37, 211, 0.45);
}
.cta-note { font-size: 0.82rem; color: var(--text-3); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2); border-top: 1px solid var(--border-subtle);
  padding: 60px 0 32px;
}
.footer-logos {
  display: flex; align-items: center; gap: 24px; justify-content: flex-start;
  margin-bottom: 40px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand { max-width: 380px; }
.footer-logo-text {
  font-family: 'inter', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  display: block; margin-bottom: 12px;
}
.footer-brand p { color: var(--text-3); font-size: 0.85rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-2); font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 24px; }
.footer-bottom p { color: var(--text-3); font-size: 0.8rem; text-align: center; }

.disclaimer {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 24px;
  max-width: 1120px; margin: 0 auto 40px; font-size: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits-grid { flex-direction: column;}
  .pain-content { flex-direction: column; }
  .pain-img-wrapper { width: 100%; }
}

@media (max-width: 768px) {
  .pain-content { flex-direction: column; }
  .pain-img-wrapper { width: 100%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-connector { width: 2px; height: 32px; margin: 0 0 0 36px; flex: 0 0 32px; background: linear-gradient(to bottom, var(--accent), var(--accent-light)); }
  .benefits-grid { flex-direction: column; }
  .docs-inner { grid-template-columns: 1fr; gap: 36px; }
  .section-title.left { text-align: center; }
  .docs-sub { text-align: center; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .logo-text {     
    font-weight: 700;
    font-size: 0.65rem;
    color: var(--text); }
}

@media (max-width: 400px) {
  .nav-right { gap: 0px; }
}

@media (max-width: 480px) {
  .pain-content { flex-direction: column; }
  .pain-img-wrapper { width: 100%; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { justify-content: center; text-align: center; }
  .hero-stats { width: 100%; }
  .faq-tabs { flex-direction: column; align-items: center; }
}
