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

:root {
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --purple-600: #9333ea;
  --purple-700: #7c3aed;
  --orange: #FF6B35;
  --orange-mid: #F7931E;
  --yellow: #FDC830;
  --text: #111827;
  --muted: #6b7280;
  --surface: #ffffff;
  --surface-2: #f9fafb;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-orange: 0 20px 60px rgba(255, 107, 53, 0.35);
  --max: 1100px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--surface-2);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

/* ─── Brand wordmark ─── */
.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-go { color: var(--blue-600); }

.brand-go-logo {
  height: 0.78em;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.go-g-body { fill: #fff; }
.go-g-line { stroke: #FDC830; }
.go-o-tire { stroke: url(#gord-go-wheel); }
.go-o-ring { stroke: rgba(134, 239, 172, 0.55); }
.go-o-spokes { stroke: #bbf7d0; }
.go-o-leaf { fill: #22c55e; }
.go-o-hub { fill: #ecfdf5; }

.brand-wordmark--light .go-g-body { fill: #2563eb; }
.brand-wordmark--light .go-g-line { stroke: #FF6B35; }
.brand-wordmark--light .go-o-ring { stroke: #34d399; }
.brand-wordmark--light .go-o-spokes { stroke: #059669; }
.brand-wordmark--light .go-o-leaf { fill: #16a34a; }
.brand-wordmark--light .go-o-hub { fill: #d1fae5; }

.brand-rd {
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-mid) 40%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-sep {
  width: 4px;
  height: 0.72em;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--orange), var(--yellow));
  flex-shrink: 0;
}

.brand-wordmark--lg { font-size: clamp(2rem, 5vw, 2.75rem); }
.brand-wordmark--nav { font-size: 1.35rem; }
.brand-wordmark--light .brand-go { color: #fff; }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover, .site-nav a.active {
  color: var(--blue-600);
  background: #eff6ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  position: relative;
}

.lang-toggle {
  border: 2px solid #e5e7eb;
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 6px;
  min-width: 120px;
  box-shadow: var(--shadow);
}

.lang-menu.open { display: block; }

.lang-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: none;
  background: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.lang-btn:hover, .lang-btn.active {
  background: #eff6ff;
  color: var(--blue-600);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-outline {
  background: #fff;
  color: var(--blue-600);
  border: 2px solid #bfdbfe;
}

.btn-sm { padding: 10px 16px; font-size: 0.85rem; }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 45%, #7c3aed 100%);
  color: #fff;
  padding: 72px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  opacity: 0.92;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.stat-card strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-bottom: 4px;
}

.stat-card span { font-size: 1rem; font-weight: 800; }

/* ─── Sections ─── */
.section {
  padding: 64px 20px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.section-head p { color: var(--muted); max-width: 520px; margin: 0 auto; }

.section-white { background: var(--surface); }
.section-gray { background: var(--surface-2); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.card p { color: var(--muted); font-size: 0.92rem; }

/* ─── CTA block ─── */
.cta-block {
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: #fff;
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
  box-shadow: var(--shadow-orange);
}

.cta-block h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-block p { opacity: 0.95; margin-bottom: 24px; }

.cta-block .hero-ctas { margin-bottom: 0; }

/* ─── FAQ ─── */
.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--blue-600);
}

.faq-item p { color: var(--muted); font-size: 0.92rem; }

.req-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.req-list li {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.req-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── Footer ─── */
.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 48px 20px 32px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.5;
  color: #9ca3af;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #374151;
  text-align: center;
  font-size: 0.82rem;
  color: #6b7280;
}

.page-hero {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 56px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Business info (Stripe) ─── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

.info-table th {
  width: 34%;
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 700;
}

.biz-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

/* ─── Contact page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.contact-card { text-align: center; }

.contact-card a {
  color: var(--blue-600);
  font-weight: 700;
}

.stripe-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #1e40af;
}

/* ─── Legal prose ─── */
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
}

.legal-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-block h2 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.legal-block p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.legal-block strong { color: var(--text); }

@media (max-width: 640px) {
  .site-nav { display: none; }
  .header-inner { justify-content: center; }
  .hero { padding-top: 48px; }
}
