/* ============================================
   MENYOO — Hospitality ERP Marketing Website
   Design System
   ============================================ */

/* @import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&family=Space+Grotesk:wght@300..700&family=Stack+Sans+Notch:wght@200..700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk&family=DM+Sans&family=DM+Serif+Display&family=Outfit&family=Figtree&family=DM+Sans&family=LINE+Seed+JP&family=Stack+Sans+Notch:wght@200..700&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* The [hidden] attribute must always win over a component's own
   display rule -- otherwise any element that sets display:flex/
   inline-flex/etc. on itself silently defeats hidden (author CSS
   always overrides the browser's built-in [hidden]{display:none},
   regardless of specificity). Kept !important and global on purpose:
   this is the one place "hidden means hidden" has to be unconditional. */
[hidden] { display: none !important; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Variables ---------- */
:root {
  /* Brand palette */
  /* --brand: #FF9222 !important; */
  --brand: #f26b38 !important;
  --brand-dark: #cc3e09;
  /* --brand-light: #fff4e8; */
  --brand-light: #fce2bd;
  --brand-accent: #f26b38;
  --brand-glow: rgba(16, 185, 129, 0.12);

  /* Neutrals */
  --ink: #0A0E12;
  --ink-2: #3D4751;
  --ink-3: #6B7280;
  --ink-4: #9CA3AF;
  --line: #E5E7EB;
  --line-2: #F3F4F6;
  --surface: #FFFFFF;
  --surface-2: #FAFBFC;
  --surface-3: #F5F6F7;

  /* Semantic */
  --success: #059669;
  --warning: #D97706;
  --error: #DC2626;

  /* Typography */
  --header-font: 'Space Grotesk', system-ui, sans-serif;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 0.80rem;
  --fs-lg: 1.1rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

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

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 56px rgba(0,0,0,0.10), 0 8px 20px rgba(0,0,0,0.05);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-med: 250ms ease;
  --t-slow: 400ms ease;

  /* Layout */
  --container: 1200px;
  --container-narrow: 760px;
  --header-h: 72px;
  --header-h-scrolled: 60px;
}

.muted { color: var(--ink-3); }
.text-xs { font-size: var(--fs-xs); }
.text-sm { font-size: var(--fs-sm); }
.text-md { font-size: var(--fs-base); }
.text-lg { font-size: var(--fs-lg); font-family: var(--header-fontfont); }

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--header-font); line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
/* h1, h2, h3 { font-family: var(--header-font); } */
h1 { font-size: clamp(2.25rem, 5vw, var(--fs-5xl)); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, var(--fs-2xl)); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-4xl); }
h5 { font-size: var(--fs-5xl); }
h6 { font-size: var(--fs-lg); }
.text-orange { color: var(--brand); }

.main-text {
  font-size: var(--fs-sm);
  font-family: var(--font);
  line-height: 1.5;
}

.txt-orange { color: var(--brand); }

/* Full-width status banners (login messages / errors). */
.badge-notification,
.badge-error {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 16px;
  padding: 11px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.badge-notification { background: #16a34a; }
.badge-error { background: #dc2626; }
.badge-notification[hidden],
.badge-error[hidden] { display: none; }

    /* ----------------------------------------------------
        Rotating Hero Text
    ---------------------------------------------------- */
    #rotating-text {
      display: inline-block;
      transition:
          opacity 0.5s ease,
          transform 0.5s ease;
    }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--sp-6); }
.center { text-align: center; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-4);
  text-align: center;
}

.eyebrow-left {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-4);
  text-align: left;
}

/* ---------- Section Headline ---------- */
.section-headline { margin-bottom: var(--sp-4); }
.section-headline.center { max-width: 720px; margin-left: auto; margin-right: auto; }
.section-sub { font-size: var(--fs-sm); color: var(--ink-2); max-width: 640px; }
.section-sub.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-headline.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-headline.center .eyebrow {
  display: block;
}

/* ---------- Buttons ---------- */
.btn-primary, .btn-secondary, .btn-ghost, .btn-link {
  font-family: 'Space Grotesk', sans-serif !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--r-md);
  transition: all var(--t-med);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--brand);
}
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--ink-3); background: var(--surface-2); }

.btn-ghost {
  color: var(--ink);
  padding: 0.5rem 1rem;
  font-weight: 500;
}
.btn-ghost:hover { color: var(--brand); }

.btn-link {
  color: var(--brand);
  font-weight: 600;
  padding: 0;
}
.btn-link:hover { color: var(--brand-dark); }

.btn-lg { padding: 0.75rem 2rem; font-size: var(--fs-base); }
.full-width { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-med);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-xs);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  transition: height var(--t-med);
}
.site-header.scrolled .header-inner { height: var(--header-h-scrolled); }

.logo img { height: 32px; width: auto; }

.main-nav { display: flex; align-items: center; gap: var(--sp-5); margin-left: var(--sp-5); }

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  transition: color var(--t-fast);
  position: relative;
}
.nav-link:hover { color: var(--ink); }
.nav-link-plain { cursor: pointer; }

.chevron {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--ink-3);
  transition: transform var(--t-fast);
}
.nav-item.has-dropdown.opened .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item.has-dropdown .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform var(--t-fast);
}
.nav-item.has-dropdown:hover .nav-link::after,
.nav-item.has-dropdown.opened .nav-link::after { transform: scaleX(1); }

.dropdown {
  position: absolute;
  top: 100%; left: -16px;
  min-width: 320px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-med);
  z-index: 50;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown.opened .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.dropdown-item:hover { background: var(--surface-2); }
.dropdown-item strong { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); display: block; }
.dropdown-item p { font-size: var(--fs-xs); color: var(--ink-3); margin-top: 2px; }

.dropdown-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--brand-light);
  flex-shrink: 0;
}

#dropdown-solutions .dropdown-item { display: block; padding: var(--sp-2) var(--sp-3); }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: var(--sp-3); }

/* Menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--t-fast);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
  z-index: 99;
}
.site-header.scrolled .mobile-menu { top: var(--header-h-scrolled); }
.mobile-menu.open { max-height: 600px; overflow-y: auto; }
.mobile-menu-inner { padding: var(--sp-4) var(--sp-6) var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-1); }

.mobile-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  font-weight: 600;
  font-size: var(--fs-lg);
  width: 100%;
}
.mobile-accordion-trigger .chevron { transition: transform var(--t-fast); }
.mobile-accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}
.mobile-accordion-content.open { max-height: 400px; }
.mobile-accordion-content a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  color: var(--ink-2);
  font-size: var(--fs-base);
}
.mobile-accordion-content a:hover { color: var(--brand); }

.mobile-link {
  padding: var(--sp-3) 0;
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--ink);
}
.mobile-cta { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-4); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--sp-8));
  padding-bottom: var(--sp-9);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--brand-light) 0%, transparent 60%);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.hero-content h1 { margin-bottom: var(--sp-5); }
.hero-sub { font-size: var(--fs-sm); color: var(--ink-2); margin-bottom: var(--sp-6); max-width: 520px; }

.hero-cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

.hero-visual { position: relative; }

/* Mockup card */
.mockup-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--line);
  background: var(--surface-3);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.mockup-url { margin-left: var(--sp-3); font-size: var(--fs-xs); color: var(--ink-4); font-family: monospace; }
.mockup-body { background: #fff; padding: var(--sp-2); }
.mockup-body img { width: 100%; height: auto; }

/* Floating cards */
.hero-floating { position: absolute; display: none; }
.hero-floating-1 { bottom: -30px; left: -40px; width: 180px; }
.hero-floating-2 { top: -20px; right: -30px; width: 160px; }
.floating-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
  overflow: hidden;
}
.floating-card img { width: 100%; height: auto; border-radius: var(--r-sm); }

.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 2px; height: 32px;
  background: var(--ink-4);
  border-radius: 2px;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   TRUST / STATS
   ============================================ */
.trust-section {
  padding: var(--sp-7) 0;
  border-bottom: 1px solid var(--line-2);
}
.trust-label {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--ink-3);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-7);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--ink-3);
  margin-top: var(--sp-1);
}
.stat-divider {
  width: 1px; height: 48px;
  background: var(--line);
}

/* ============================================
   POSITIONING SECTION
   ============================================ */
.positioning-section {
  padding: var(--sp-9) 0;
  text-align: center;
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-7);
}
.pill {
  padding: var(--sp-2) var(--sp-4);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-2);
  transition: all var(--t-fast);
}
.pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

/* ============================================
   FLOW DIAGRAM
   ============================================ */
.flow-section {
  padding: var(--sp-9) 0;
  background: var(--surface-2);
}
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-7);
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  width: 130px;
}
.flow-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med);
}
.flow-icon svg { width: 32px; height: 32px; }
.flow-step:hover .flow-icon {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}
.flow-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-2);
  text-align: center;
}
.flow-arrow {
  font-size: var(--fs-xl);
  color: var(--ink-4);
  padding: 0 var(--sp-1);
}

/* ============================================
   PRODUCT PILLARS
   ============================================ */
.pillar-section {
  padding: var(--sp-9) 0;
}
.pillar-section.pillar-alt { background: var(--surface-2); }

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.pillar-grid.reverse .pillar-content { order: 2; }
.pillar-grid.reverse .pillar-visual { order: 1; }

.pillar-number {
  display: block;
  font-size: var(--fs-5xl);
  font-weight: 800;
  color: var(--line);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.pillar-headline { margin-bottom: var(--sp-4); }
.pillar-content > p { margin-bottom: var(--sp-5); }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-6);
}
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--fs-base);
  color: var(--ink-2);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 4' stroke='%230B5C3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pillar-visual .mockup-card { max-width: 560px; }

/* ============================================
   SHOWCASE
   ============================================ */
.showcase-section {
  padding: var(--sp-9) 0;
  background: var(--surface-2);
}
.showcase { margin-top: var(--sp-7); }
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.showcase-tab {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all var(--t-fast);
}
.showcase-tab:hover { border-color: var(--ink-3); }
.showcase-tab.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.showcase-panel { max-width: 800px; margin: 0 auto; }
.showcase-mockup { margin: 0 auto; }
.showcase-mockup img { transition: opacity var(--t-med); }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-section { padding: var(--sp-9) 0; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all var(--t-med);
  text-align: center;
}
.industry-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.industry-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.industry-icon svg { width: 28px; height: 28px; }
.industry-card span { font-weight: 600; font-size: var(--fs-sm); color: var(--ink); }

/* ============================================
   WHY MENYOO
   ============================================ */
.why-section {
  padding: var(--sp-9) 0;
  background: var(--surface-2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
.why-card {
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all var(--t-med);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: var(--sp-4);
}
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 { margin-bottom: var(--sp-2); }
.why-card p { font-size: var(--fs-sm); }

/* ============================================
   PRICING
   ============================================ */
.pricing-section { padding: var(--sp-9) 0; }

.pricing-toggle {
  display: flex;
  width: max-content;
  max-width: 240px;
  position: relative;
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 4px;
  margin: var(--sp-6) auto 0;
  justify-content: center;
}
.toggle-option {
  padding: var(--sp-2) var(--sp-5);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--ink-3);
  border-radius: var(--r-full);
  position: relative;
  z-index: 1;
  transition: color var(--t-med);
}
.toggle-option.active { color: var(--ink); }
.toggle-slider {
  position: absolute;
  top: 4px; left: 0;
  height: calc(100% - 8px);
  width: 80px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-7);
  align-items: start;
}
.pricing-card {
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  transition: box-shadow var(--t-med);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}
.bestseller-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.plan-header h3 { margin-bottom: var(--sp-2); }
.plan-header p { font-size: var(--fs-sm); margin-bottom: var(--sp-4); }

.plan-price { margin-bottom: var(--sp-4); }
.plan-price.hidden { display: none; }
.hidden { display: none; }
.price-note { display: block; font-size: var(--fs-xs); color: var(--brand); font-weight: 600; margin-bottom: var(--sp-1); }
.price-amount { font-size: var(--fs-4xl); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.price-period { font-size: var(--fs-base); font-weight: 500; color: var(--ink-3); }
.price-renew { display: block; font-size: var(--fs-xs); color: var(--ink-4); margin-top: var(--sp-1); }

.plan-links { margin-bottom: var(--sp-3); }
.plan-preview { font-size: var(--fs-sm); color: var(--brand); font-weight: 600; }
.plan-preview:hover { text-decoration: underline; }

.plan-includes { font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-top: var(--sp-4); margin-bottom: var(--sp-2); }

.plan-features { margin-top: var(--sp-4); }
.plan-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  padding-top: var(--sp-1);
  padding-bottom: var(--sp-1);
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85em;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 4' stroke='%230B5C3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-note { text-align: center; font-size: var(--fs-sm); color: var(--ink-3); margin-top: var(--sp-5); }

/* ============================================
   ONBOARDING
   ============================================ */
.onboarding-section { padding: var(--sp-9) 0; background: var(--surface-2); }
.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-7);
}
.onboarding-step {
  text-align: center;
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.step-number {
  display: inline-block;
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: var(--sp-3);
}
.onboarding-step h3 { margin-bottom: var(--sp-2); }
.onboarding-step p { font-size: var(--fs-sm); }

/* ============================================
   ENTERPRISE
   ============================================ */
.enterprise-section { padding: var(--sp-9) 0; }
.enterprise-inner {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: var(--sp-9);
  color: #fff;
}
.enterprise-content .eyebrow { color: var(--brand-accent); }
.enterprise-content h2 { color: #fff; margin-bottom: var(--sp-4); }
.enterprise-content > p { color: rgba(255,255,255,0.7); font-size: var(--fs-sm); max-width: 650px; margin: auto; margin-bottom: var(--sp-7); }

.enterprise-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.enterprise-feature h4 { color: #fff; margin-bottom: var(--sp-1); font-size: var(--fs-base); }
.enterprise-feature p { color: rgba(255,255,255,0.6); font-size: var(--fs-sm); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: var(--sp-9) 0; background: var(--surface-2); }
.testimonials-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
.testimonial-card {
  padding: var(--sp-7);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.testimonial-card blockquote {
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: var(--sp-5);
  font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  flex-shrink: 0;
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: var(--fs-base); }
.testimonial-author span { font-size: var(--fs-sm); color: var(--ink-3); }

/* ============================================
   FAQ
   ============================================ */
.faq-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-5);
  align-items: center;
}

.faq-col {
  padding: var(--sp-5);
  min-width: 0;
}

.-mt-100 {
  margin-top: -150px;
}

@media (max-width: 768px) {
  .faq-block {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .faq-col {
    width: 100%;
    padding: var(--sp-5) 0;
  }

  .-mt-100 {
    margin-top: -100px;
  }

  .-mb-100 {
    margin-bottom: -100px;
  }
}

.faq-section { padding: var(--sp-9) 0; }
.faq-accordion { margin-top: var(--sp-7); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--sp-5) 0;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.faq-icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: var(--sp-4);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink-3);
  border-radius: 2px;
  transition: all var(--t-fast);
}
.faq-icon::before { top: 11px; left: 4px; width: 16px; height: 2px; }
.faq-icon::after { top: 4px; left: 11px; width: 2px; height: 16px; }
.faq-trigger[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-trigger[aria-expanded="true"] .faq-icon::before { background: var(--brand); }
.faq-trigger:hover { color: var(--brand); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}
.faq-content.open { max-height: 300px; }
.faq-content p { padding-bottom: var(--sp-5); font-size: var(--fs-base); color: var(--ink-2); }

/* ============================================
   FINAL CTA
   ============================================ */
.cta-section { padding: var(--sp-9) 0; }
.cta-inner {
  text-align: center;
  background: linear-gradient(135deg, var(--brand-light) 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-9) var(--sp-6);
}
.cta-buttons { display: flex; justify-content: center; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-5); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-8) 0 var(--sp-6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: var(--fs-sm); color: rgba(255,255,255,0.5); margin-top: var(--sp-4); max-width: 320px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.footer-col h4 { color: #fff; font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--sp-4); }
.footer-col a { display: block; font-size: var(--fs-sm); color: rgba(255,255,255,0.5); padding: var(--sp-1) 0; transition: color var(--t-fast); }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: var(--sp-5); text-align: center; }
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1025px) {
  .hero-floating { display: block; }
  .hero-floating-1 { animation: float1 6s ease-in-out infinite; }
  .hero-floating-2 { animation: float2 7s ease-in-out infinite; }
  @keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
  @keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
}

@media (max-width: 1024px) {
  .main-nav, .nav-actions { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .pillar-grid, .pillar-grid.reverse { grid-template-columns: 1fr; gap: var(--sp-6); }
  .pillar-grid.reverse .pillar-content { order: 1; }
  .pillar-grid.reverse .pillar-visual { order: 2; }
  .pillar-visual { max-width: 560px; margin: 0 auto; }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --sp-9: 4rem; --sp-10: 5rem; }
  .hero { padding-top: calc(var(--header-h) + var(--sp-6)); padding-bottom: var(--sp-7); }
  .hero-content h1 { font-size: 2rem; }
  .hero-sub { font-size: var(--fs-base); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; }
  .stats-row { gap: var(--sp-5); }
  .stat-number { font-size: var(--fs-3xl); }
  .feature-list { grid-template-columns: 1fr; }
  .flow-diagram { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .flow-step { width: auto; flex-direction: row; gap: var(--sp-3); }
  .flow-icon { width: 48px; height: 48px; }
  .flow-icon svg { width: 24px; height: 24px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { max-width: 420px; margin: 0 auto; }
  .enterprise-features { grid-template-columns: 1fr; }
  .enterprise-inner { padding: var(--sp-6); }
  .onboarding-steps { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .testimonial-card { padding: var(--sp-5); }
  .testimonial-card blockquote { font-size: var(--fs-base); }
  .cta-inner { padding: var(--sp-7) var(--sp-4); }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn-primary, .cta-buttons .btn-secondary { width: 100%; }
}

@media (max-width: 480px) {
  .container, .container-narrow { padding: 0 var(--sp-4); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.75rem; }
  .section-headline { font-size: 1.5rem; }
  .enterprise-features { grid-template-columns: 1fr; gap: var(--sp-4); }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   FOCUS STATES
   ============================================ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ============================================
   SUBSCRIBE / SIGNUP PAGE
   ============================================ */

/* Header — subscribe variant */
.subscribe-header .header-inner {
  justify-content: space-between;
}
.header-login {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.header-login-text {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  font-weight: 500;
}

/* Page layout */
.subscribe-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  /* padding-top: var(--header-h); */
}

/* LEFT: Brand section */
.subscribe-brand {
  background: linear-gradient(160deg, var(--brand-light) 0%, #fff 70%);
  padding: var(--sp-1) var(--sp-8) var(--sp-7);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.subscribe-brand-inner {
  max-width: 520px;
  width: 100%;
}
.subscribe-logo img {
  height: 36px;
  width: auto;
  margin-bottom: var(--sp-3);
}
.subscribe-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
  color: var(--ink);
}
.subscribe-sub {
  font-size: 1rem;
  color: var(--ink-2);
  margin-bottom: var(--sp-7);
  max-width: 460px;
  line-height: 1.65;
}

/* Product visual */
.subscribe-visual {
  margin-bottom: var(--sp-7);
}
.subscribe-mockup {
  max-width: 460px;
  box-shadow: var(--shadow-md);
}

/* Benefits list */
.subscribe-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3) var(--sp-5);
}
.subscribe-benefits li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-2);
}
.benefit-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
  font-size: 1rem;
}

/* RIGHT: Form section */
.subscribe-form-section {
  background: var(--surface);
  padding: var(--sp-8);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
}
.subscribe-form-container {
  width: 100%;
  max-width: 440px;
  padding: var(--sp-2) 0;
  /* Vertically center against the brand column; auto margins (unlike align-items:center)
     never clip the top when the section scrolls. */
  margin: auto 0;
}
.subscribe-form-header {
  margin-bottom: var(--sp-6);
}
.subscribe-form-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--ink);
}
.subscribe-form-header p {
  font-size: var(--fs-sm);
  color: var(--ink-3);
}

/* Plan summary */
.plan-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-6);
}
.plan-summary-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.plan-summary-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}
.plan-summary-cycle {
  font-size: var(--fs-xs);
  color: var(--ink-3);
  font-weight: 500;
}
.plan-summary-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.plan-summary-period {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-3);
  margin-left: 4px;
}

/* Form */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-label {
  /* font-family: 'Space Grotesk', sans-serif !important; */
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink);
}
.label-optional {
  font-weight: 400;
  color: var(--ink-4);
}
.form-hint {
  font-size: var(--fs-xs);
  color: var(--ink-3);
  margin-top: -2px;
  margin-bottom: 2px;
}
.form-input {
  width: 100%;
  height: 48px;
  padding: 0 var(--sp-4);
  font-family: var(--font);
  font-size: var(--font-sm);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder {
  color: var(--ink-4);
}
.form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 146, 34, 0.12);
}
.form-input.has-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Input with prefix (username) */
.input-with-prefix {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.input-with-prefix:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 146, 34, 0.12);
}
.input-with-prefix.has-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}
.input-prefix {
  display: flex;
  align-items: center;
  padding: 0 var(--sp-3) 0 var(--sp-4);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--surface-3);
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
.input-with-prefix .form-input {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.input-with-prefix .form-input:focus {
  box-shadow: none;
}

/* Input with suffix (minutes) */
.input-with-suffix {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.input-with-suffix:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 146, 34, 0.12);
}
.input-with-suffix.has-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}
.input-suffix {
  display: flex;
  align-items: center;
  padding: 0 var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-3);
  background: var(--surface-3);
  white-space: nowrap;
  border-left: 1px solid var(--line);
}
.input-with-suffix .form-input {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.input-with-suffix .form-input:focus {
  box-shadow: none;
}

/* Password toggle */
.input-with-toggle {
  position: relative;
}
.input-with-toggle .form-input {
  padding-right: 3rem;
}
.password-toggle {
  position: absolute;
  right: var(--sp-2);
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.password-toggle:hover {
  color: var(--ink);
  background: var(--surface-3);
}
.password-toggle i {
  font-size: 1.125rem;
}

/* Error banner */
.form-error-banner {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-sm);
  color: #991B1B;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}
.form-error-banner::before {
  content: '\26A0';
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Inline field-level errors (username/phone/email live checks) */
.field-error {
  color: #DC2626;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-top: var(--sp-2);
}

/* Submit button */
.signup-submit {
  margin-top: var(--sp-2);
  height: 52px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.signup-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.signup-submit-loading {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Legal text */
.signup-legal {
  font-size: var(--fs-xs);
  color: var(--ink-3);
  text-align: center;
  margin-top: var(--sp-2);
  line-height: 1.5;
}
.signup-legal a {
  color: var(--brand);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255, 146, 34, 0.3);
  text-underline-offset: 2px;
}
.signup-legal a:hover {
  text-decoration-color: var(--brand);
}

/* Trust signals */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-5);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-2);
}
.trust-signal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--ink-3);
  font-weight: 500;
}
.trust-signal i {
  font-size: 0.875rem;
  color: var(--brand);
}

/* Subscribe footer */
.subscribe-footer {
  background: var(--ink);
  padding: var(--sp-5) var(--sp-6);
}
.subscribe-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
}
.subscribe-footer-inner a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.subscribe-footer-inner a:hover { color: #fff; }
.subscribe-footer-inner p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
}

/* ============================================
   SUBSCRIBE PAGE — RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .subscribe-page {
    grid-template-columns: 1fr;
  }
  .subscribe-brand {
    padding: var(--sp-7) var(--sp-6) var(--sp-6);
  text-align: center;
  order: 1;
  background: linear-gradient(160deg, var(--brand-light) 0%, #fff 100%);
  padding-top: calc(var(--header-h) + var(--sp-6));
  position: relative;
    overflow: visible;
  }
  .subscribe-brand-inner {
    margin: 0 auto;
  }
  .subscribe-logo img {
    margin: 0 auto var(--sp-5);
  display: block;
  }
  .subscribe-headline {
    font-size: 1.75rem;
  }
  .subscribe-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .subscribe-visual {
    display: none;
  }
  .subscribe-benefits {
    max-width: 400px;
    margin: 0 auto;
  }
  .subscribe-form-section {
    order: 2;
    padding: var(--sp-6) var(--sp-4);
  }
}

@media (max-width: 768px) {
  .header-login-text {
    display: none;
  }
  .subscribe-brand {
    padding: var(--sp-6) var(--sp-4) var(--sp-5);
    padding-top: calc(var(--header-h) + var(--sp-5));
  }
  .subscribe-headline {
    font-size: 1.5rem;
  }
  .subscribe-sub {
    font-size: var(--fs-sm);
  }
  .subscribe-benefits {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2) var(--sp-3);
  }
  .subscribe-benefits li {
    font-size: var(--fs-xs);
  }
  .benefit-icon {
    width: 28px;
    height: 28px;
  }
  .subscribe-form-section {
    padding: var(--sp-5) var(--sp-4);
  }
  .subscribe-form-container {
    max-width: 100%;
  }
  .subscribe-form-header h2 {
    font-size: 1.5rem;
  }
  .plan-summary {
    padding: var(--sp-3) var(--sp-4);
  }
  .plan-summary-price {
    font-size: 1.25rem;
  }
  .form-input {
    height: 44px;
    font-size: 0.875rem;
  }
  .signup-submit {
    height: 48px;
    font-size: 0.9375rem;
  }
  .trust-signals {
    gap: var(--sp-2) var(--sp-4);
  }
}

@media (max-width: 480px) {
  .subscribe-brand {
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
  }
  .subscribe-headline {
    font-size: 1.375rem;
  }
  .subscribe-benefits {
    grid-template-columns: 1fr;
  }
  .subscribe-form-header h2 {
    font-size: 1.25rem;
  }
  .subscribe-footer-inner {
    flex-direction: column;
    gap: var(--sp-2);
    text-align: center;
  }
}
