/* ═══════════════════════════════════════════════════════
   SumaBill Landing Page — styles.css
   Brand: Dark ink + warm paper + gold accent
   Typography: Syne (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --ink: #0d1117;
  --ink-light: #1a2332;
  --paper: #f5f3ee;
  --paper-dark: #eae6dd;
  --accent: #c8a96e;
  --accent-dark: #a88848;
  --accent-glow: rgba(200, 169, 110, 0.25);
  --muted: #8a8070;
  --card-bg: #fdfcf9;
  --white: #ffffff;
  --success: #10b981;
  --danger: #e74c3c;
  --blue: #3b82f6;
  --border: rgba(13, 17, 23, 0.08);
  --border-light: rgba(255, 255, 255, 0.08);

  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(200, 169, 110, 0.15);

  --max-width: 1200px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ── UTILITY ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
}

.text-accent {
  color: var(--accent);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), #e8c87a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(200, 169, 110, 0.2); }
  50%      { box-shadow: 0 0 40px rgba(200, 169, 110, 0.4); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 34px;
  width: 34px;
  border-radius: 8px;
}

.nav-brand span {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 243, 238, 0.6);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #d4b87a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
}

/* Hide mobile-only CTA on desktop */
.nav-cta-mobile {
  display: none;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.18) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  bottom: -100px;
  right: -50px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.1) 0%, transparent 70%);
  top: 40%;
  right: 20%;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-content {
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 2s ease infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--paper);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #e8c87a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.55);
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: #d4b87a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(245, 243, 238, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: rgba(245, 243, 238, 0.3);
  background: rgba(245, 243, 238, 0.05);
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  gap: 32px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
}

.hero-meta-label {
  font-size: 12px;
  color: rgba(245, 243, 238, 0.4);
  letter-spacing: 0.04em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-mockup-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float 6s ease-in-out infinite;
}

.hero-mockup-wrapper img {
  width: 100%;
  display: block;
}

.hero-mockup-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.15), transparent 50%, rgba(59, 130, 246, 0.1));
  z-index: -1;
  filter: blur(20px);
}

/* Floating badge on hero image */
.hero-float-badge {
  position: absolute;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

.hero-float-badge.badge-1 {
  bottom: 20%;
  left: -30px;
  animation-delay: -1s;
}

.hero-float-badge.badge-2 {
  top: 15%;
  right: -20px;
  animation-delay: -3s;
}

.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.float-badge-icon.green { background: rgba(16, 185, 129, 0.15); }
.float-badge-icon.blue { background: rgba(59, 130, 246, 0.15); }

.float-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-badge-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--paper);
}

.float-badge-value {
  font-size: 11px;
  color: rgba(245, 243, 238, 0.5);
}

/* ══════════════════════════════════════════
   SOCIAL PROOF / TRUST BAR
   ══════════════════════════════════════════ */
.trust-bar {
  background: var(--ink-light);
  border-top: 1px solid rgba(200, 169, 110, 0.08);
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
  padding: 40px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 243, 238, 0.5);
  font-size: 14px;
}

.trust-icon {
  font-size: 22px;
}

.trust-item strong {
  color: var(--paper);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════ */
.features {
  padding: 120px 0;
  background: var(--paper);
}

.features .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.features .section-subtitle {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 169, 110, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  background: rgba(200, 169, 110, 0.08);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   AI SHOWCASE SECTION
   ══════════════════════════════════════════ */
.ai-showcase {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.ai-showcase .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.ai-bg-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

.ai-content .section-title {
  color: var(--paper);
}

.ai-content .section-subtitle {
  color: rgba(245, 243, 238, 0.55);
}

.ai-features-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ai-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ai-feature-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 4px;
}

.ai-feature-text p {
  font-size: 14px;
  color: rgba(245, 243, 238, 0.45);
  line-height: 1.5;
}

.ai-visual {
  position: relative;
}

.ai-mockup-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.ai-mockup-wrapper img {
  width: 100%;
  display: block;
}

.ai-glow-ring {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-lg);
  background: conic-gradient(from 0deg, rgba(200, 169, 110, 0.2), transparent, rgba(59, 130, 246, 0.15), transparent, rgba(200, 169, 110, 0.2));
  z-index: -1;
  filter: blur(20px);
  animation: pulse-glow 4s ease infinite;
}

/* ══════════════════════════════════════════
   DASHBOARD PREVIEW
   ══════════════════════════════════════════ */
.dashboard-preview {
  padding: 120px 0;
  background: var(--paper);
}

.dashboard-preview .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.dashboard-preview .section-subtitle {
  margin: 0 auto;
}

.dashboard-mockup-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-browser-frame {
  background: var(--ink);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-top-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dot.red { background: #ff5f57; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #28c840; }

.browser-url-bar {
  flex: 1;
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  color: rgba(245, 243, 238, 0.4);
  font-family: var(--font-body);
}

.dashboard-browser-frame img {
  width: 100%;
  display: block;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.how-it-works {
  padding: 120px 0;
  background: var(--ink-light);
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-it-works .section-title {
  color: var(--paper);
}

.how-it-works .section-subtitle {
  color: rgba(245, 243, 238, 0.5);
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.3), transparent);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.08);
  border: 2px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 2;
  background-color: var(--ink-light);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(245, 243, 238, 0.45);
  max-width: 280px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════ */
.pricing {
  padding: 120px 0;
  background: var(--paper);
}

.pricing .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing .section-subtitle {
  margin: 0 auto;
}

.pricing-card-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pricing-card:hover {
  border-color: rgba(200, 169, 110, 0.35);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.pricing-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.pricing-plan-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.pricing-period {
  font-size: 16px;
  color: var(--muted);
}

.pricing-trial-note {
  font-size: 14px;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 32px;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #475569;
}

.pricing-feature-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--success);
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.pricing-cta:hover {
  background: var(--ink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 17, 23, 0.25);
}

.pricing-guarantee {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials .section-title {
  color: var(--paper);
}

.testimonials .section-subtitle {
  color: rgba(245, 243, 238, 0.5);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 169, 110, 0.15);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--accent);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.7);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e8c87a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--paper);
}

.testimonial-info p {
  font-size: 13px;
  color: rgba(245, 243, 238, 0.4);
}

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.cta-banner {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner .section-title {
  color: var(--paper);
  max-width: 600px;
  margin: 0 auto 16px;
}

.cta-banner .section-subtitle {
  margin: 0 auto 40px;
  color: rgba(245, 243, 238, 0.55);
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-no-cc {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(245, 243, 238, 0.4);
}

.cta-no-cc span {
  color: var(--accent);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .nav-brand {
  gap: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.4);
  max-width: 280px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: rgba(245, 243, 238, 0.4);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(245, 243, 238, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(245, 243, 238, 0.3);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    max-width: 520px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-float-badge.badge-1,
  .hero-float-badge.badge-2 {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-showcase .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ai-content {
    text-align: center;
  }

  .ai-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .steps-grid::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    background-color: #0d1117;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 24px;
    z-index: 9999;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
    background-color: #0d1117;
  }

  .nav-links a {
    font-size: 18px;
    color: var(--paper);
  }

  .nav-cta {
    display: none;
  }

  .nav-links .nav-cta-mobile {
    display: inline-flex;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 44px);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 24px;
  }

  .features {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-showcase {
    padding: 80px 0;
  }

  .dashboard-preview {
    padding: 80px 0;
  }

  .how-it-works {
    padding: 80px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing {
    padding: 80px 0;
  }

  .pricing-card {
    padding: 36px 28px;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 38px);
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .pricing-amount {
    font-size: 44px;
  }

  .trust-bar .container {
    flex-direction: column;
    gap: 20px;
  }
}
