/* ==========================================================================
   SUPERCART PREMIUM DESIGN SYSTEM & BASE STYLES
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

:root {
  /* Color Palette */
  --bg-color: #0D1117;
  --surface-color: #161B22;
  --surface-color-2: #1C2330;
  --gold-accent: #C8A84B;
  --gold-bright: #E8C96A;
  --text-color: #F0F0F0;
  --text-muted: rgba(240, 240, 240, 0.5);
  --border-color: rgba(200, 168, 75, 0.2);
  --border-color-hover: rgba(200, 168, 75, 0.5);
  --gold-glow: rgba(200, 168, 75, 0.15);

  /* Fonts */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  cursor: none; /* Hide default cursor for custom cursor experience */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-color-2);
  border: 2px solid var(--bg-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-accent);
}

/* Typography & Links */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: none; /* Maintain custom cursor */
}

button {
  font-family: var(--font-body);
  border: none;
  background: none;
  cursor: none; /* Maintain custom cursor */
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s, background-color 0.3s;
}

/* Hover States for Custom Cursor */
body.cursor-hover .custom-cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--gold-bright);
}

body.cursor-hover .custom-cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--gold-bright);
  background-color: rgba(200, 168, 75, 0.1);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-mono);
  color: var(--gold-accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--text-color);
}

.section-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-smooth);
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-bright) 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(200, 168, 75, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 168, 75, 0.4);
}

.btn-ghost {
  border: 1px solid var(--border-color);
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--gold-accent);
  background: rgba(200, 168, 75, 0.05);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  height: 70px;
  background: rgba(13, 17, 23, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-mark {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-bright) 100%);
  color: #000;
  font-family: var(--font-heading);
  font-size: 24px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 0 15px rgba(200, 168, 75, 0.3);
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(200, 168, 75, 0.3);
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(200, 168, 75, 0.5);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 0.08em;
  background: linear-gradient(to right, #ffffff 40%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-accent);
  transition: var(--transition-fast);
}

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

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Glowing background orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--gold-accent);
  top: -100px;
  left: 20%;
  animation: floatOrb1 15s infinite alternate ease-in-out;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--gold-bright);
  bottom: 100px;
  right: 15%;
  animation: floatOrb2 12s infinite alternate ease-in-out;
}

/* 3D Grid Floor */
.grid-floor-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.grid-floor {
  position: absolute;
  bottom: 0;
  width: 200%;
  left: -50%;
  height: 600px;
  background-image: 
    linear-gradient(to right, rgba(200, 168, 75, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200, 168, 75, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(300px) rotateX(60deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 80%);
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Animated Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  position: relative;
}

.badge-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  top: 0;
  left: 0;
  animation: pulse 1.8s infinite ease-in-out;
}

/* Giant Bebas Neue Headline */
.hero-headline {
  font-size: clamp(60px, 10vw, 110px);
  line-height: 0.95;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-headline .line-1 {
  display: block;
  color: #FFFFFF;
}

.hero-headline .line-2 {
  display: block;
  background: linear-gradient(to right, var(--gold-accent), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-headline .line-3 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  width: 100%;
  max-width: 600px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  color: var(--gold-accent);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.scroll-line-container {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-accent);
  animation: drawScrollLine 2s infinite ease-in-out;
}

/* ==========================================================================
   TICKER STRIP
   ========================================================================== */
.ticker-container {
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  overflow: hidden;
  width: 100%;
  display: flex;
}

.ticker-wrap {
  display: flex;
  width: max-content;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: tickerLoop 30s linear infinite;
  padding-right: 40px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--text-color);
}

.ticker-separator {
  color: var(--gold-accent);
  font-size: 12px;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works {
  padding: 100px 0;
  position: relative;
}

.how-it-works .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.step-card {
  background: var(--surface-color);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  transition: var(--transition-smooth);
}

.step-card:hover {
  background: var(--surface-color-2);
}

.step-number {
  position: absolute;
  top: 30px;
  right: 40px;
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
  color: rgba(200, 168, 75, 0.03);
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  color: rgba(200, 168, 75, 0.08);
  transform: translateY(-5px);
}

.step-icon {
  font-size: 36px;
  margin-bottom: 24px;
}

.step-title {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-color);
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
}

/* ==========================================================================
   PHONE MOCKUP SECTION (SPLIT)
   ========================================================================== */
.phone-mockup-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.phone-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.phone-mockup-wrapper {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Decorative backdrop glow for phone */
.phone-glow {
  position: absolute;
  width: 300px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.phone-container {
  width: 320px;
  height: 640px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  border: 4px solid #333;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(200, 168, 75, 0.15);
  transform: rotateY(-15deg) rotateX(8deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  animation: floatPhone 6s infinite alternate ease-in-out;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-container:hover {
  transform: rotateY(-5deg) rotateX(4deg) rotateZ(0deg) scale(1.02);
}

/* Phone Screen Mockup UI */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #0D1117;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
}

/* Phone Header */
.phone-header {
  padding: 24px 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-store-name {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #FFF;
}

.phone-session-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: #10B981;
  width: fit-content;
}

.phone-session-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Scanned Items List */
.phone-items-list {
  flex-grow: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

.phone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.phone-item-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
}

.phone-item-qty {
  font-size: 10px;
  color: var(--text-muted);
}

.phone-item-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-bright);
}

/* Phone Footer Actions */
.phone-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-color);
}

.phone-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.phone-total-label {
  font-size: 12px;
  color: var(--text-muted);
}

.phone-total-price {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
}

.phone-btn-pay {
  background: var(--gold-accent);
  color: #000;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(200, 168, 75, 0.2);
}

.phone-btn-scan {
  border: 1px solid var(--border-color);
  color: var(--text-color);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.01);
}

/* Text Content Column */
.phone-text-content .section-label {
  margin-bottom: 12px;
}

.phone-text-content .section-title {
  margin-bottom: 20px;
}

.phone-text-content p {
  font-size: 16px;
  margin-bottom: 30px;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.app-feature-icon {
  color: var(--gold-accent);
  font-size: 18px;
  margin-top: 2px;
}

.app-feature-text strong {
  color: var(--text-color);
  display: block;
  margin-bottom: 2px;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
  background: var(--surface-color);
  padding: 100px 0;
  position: relative;
}

.features-section .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

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

.feature-card {
  background: var(--surface-color-2);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

/* Interactive top border line */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-accent), var(--gold-bright));
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 168, 75, 0.4);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(200, 168, 75, 0.05);
}

.feature-card:hover::before {
  width: 100%;
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background: var(--gold-accent);
  color: #000;
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-color);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-color);
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 70px);
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold-bright) 30%, var(--gold-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
  padding: 100px 0;
  position: relative;
}

.pricing-section .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Popular Card Highlights */
.pricing-card.featured {
  border: 2px solid var(--gold-accent);
  background: var(--surface-color-2);
  box-shadow: 0 10px 30px rgba(200, 168, 75, 0.08);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-accent);
  color: #000;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-tier {
  font-size: 20px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
  color: var(--gold-accent);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 48px;
  color: #FFF;
  line-height: 1;
}

.pricing-price span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold-accent);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

/* Radial Glow */
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 16px;
  color: #FFF;
}

.cta-subtitle {
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 36px;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-email {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
}

.cta-email a {
  color: var(--gold-accent);
}

.cta-email a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #090D12;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo:hover .logo-img {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(200, 168, 75, 0.5);
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #FFF;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

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

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger reveals */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ==========================================================================
   CSS KEYFRAMES
   ========================================================================== */
@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 40px) scale(1.1); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -50px) scale(1.05); }
}

@keyframes floatPhone {
  0% { transform: rotateY(-15deg) rotateX(8deg) rotateZ(-2deg) translateY(0); }
  100% { transform: rotateY(-12deg) rotateX(6deg) rotateZ(-1deg) translateY(-15px); }
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

@keyframes drawScrollLine {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

@keyframes tickerLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   LEAD CAPTURE FORM STYLES
   ========================================================================== */
.lead-form {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: #FFF;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  transition: var(--transition-fast);
  outline: none;
}

/* Specific styling for select dropdown arrow */
.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C8A84B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 8px rgba(200, 168, 75, 0.2);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(240, 240, 240, 0.3);
}

.btn-submit {
  width: 100% !important;
  margin-top: 10px;
  padding: 16px !important;
  font-size: 16px !important;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -8px;
}

/* Success Message styling */
.form-success-message {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 40px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--surface-color);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10B981;
  color: #10B981;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 24px;
}

.form-success-message h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gold-bright);
  margin-bottom: 12px;
}

.form-success-message p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* What Happens Next Section */
.what-happens-next {
  margin-top: 40px;
  text-align: left;
}

.what-happens-next h3 {
  color: var(--gold-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.step-circle {
  width: 32px;
  height: 32px;
  background: #C8A84B;
  color: #0D1117;
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content strong {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.step-content p {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .phone-split-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .phone-mockup-wrapper {
    order: 2;
  }
  
  .phone-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }
  
  .app-features-list {
    align-items: flex-start;
    text-align: left;
    max-width: 500px;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Disable custom cursor on mobile touch interfaces */
  body {
    cursor: auto;
  }
  
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
  
  a, button {
    cursor: auto;
  }

  .navbar {
    height: 70px;
  }

  .nav-links {
    display: none; /* In production app you'd add a burger menu, keeping it simple here */
  }

  .section-title {
    font-size: 36px;
  }

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

  .step-card {
    padding: 40px 24px;
    min-height: 240px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    order: -1; /* Highlight popular on stack top */
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-col {
    align-items: center;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Lead form mobile stack */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }

  /* Mobile layout for what-happens-next steps-row */
  .steps-row {
    grid-template-columns: 1fr 1fr;
  }
}
