/* Georgian Fonts */
@font-face {
  font-family: "Caps";
  src: url("../webfonts/ge/Caps.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Norm";
  src: url("../webfonts/ge/Norm.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Animated border angle */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* === VARIABLES === */
:root {
  /* Logo palette: #7281ca #ffffff #f9fafd #131a29 #64748b */
  --bg-base: #ffffff;
  --bg-surface: #f9fafd;
  --bg-elevated: #f0f2f8;
  --bg-hover: #e8ebf4;

  --accent: #7281ca;
  --accent-hover: #5b6bb8;
  --accent-dim: rgba(114, 129, 202, 0.08);
  --accent-glow: rgba(114, 129, 202, 0.20);
  --teal: #3b82f6;
  --teal-dim: rgba(59, 130, 246, 0.08);
  --emerald: #10b981;
  --red-muted: #ef4444;

  --text-primary: #131a29;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --border: rgba(19, 26, 41, 0.08);
  --border-hover: rgba(19, 26, 41, 0.15);
  --border-accent: rgba(114, 129, 202, 0.30);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-head: 'Caps', 'SF Pro Display', system-ui, sans-serif;
  --font-body: 'Norm', 'SF Pro Text', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-base);
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* === GRAIN OVERLAY === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* === GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #a5b4fc 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === SECTION SHARED === */
.section { padding: 120px 0; position: relative; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-accent);
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(19, 26, 41, 0.06);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo span {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-secondary);
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  padding: 4px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a i {
  font-size: 0.8rem;
  opacity: 0.7;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s;
}
.nav-login:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* Language toggle */
.lang-btn {
  padding: 6px 14px;
  border: 1px solid var(--border-hover);
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lang-btn:hover { color: var(--accent); border-color: var(--accent); }

/* Mobile menu */
.nav-mobile {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(114, 129, 202, 0.10) 0%, transparent 60%),
    linear-gradient(to bottom, #ffffff, var(--bg-surface));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb--amber {
  width: 500px;
  height: 500px;
  background: rgba(114, 129, 202, 0.10);
  top: -10%;
  right: 5%;
  animation: orb-float 20s ease-in-out infinite;
}
.hero-orb--teal {
  width: 350px;
  height: 350px;
  background: rgba(56, 189, 248, 0.06);
  bottom: 0;
  left: -5%;
  animation: orb-float 25s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.hero-badge i { color: var(--emerald); }
.hero-badge--gift {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
}
.hero-badge--gift i { color: #f59e0b; }

/* Phone mockup */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  animation: float-device 8s ease-in-out infinite;
}
@keyframes float-device {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.phone-frame {
  width: 380px;
  height: 600px;
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: 40px;
  padding: 10px;
  box-shadow:
    0 40px 80px rgba(19, 26, 41, 0.12),
    0 0 60px rgba(114, 129, 202, 0.06);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #131a29;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg-surface);
}
.phone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.demo-link {
  display: none;
  margin-bottom: 1rem;
}


/* === BENTO FEATURES === */
.features-section {
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(56, 189, 248, 0.04) 0%, transparent 60%),
    var(--bg-base);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  padding: 1px;
  background: conic-gradient(from var(--border-angle), transparent 60%, var(--accent) 80%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
}
.bento-card:hover::before {
  opacity: 1;
  animation: rotate-border 4s linear infinite;
}
@keyframes rotate-border { to { --border-angle: 360deg; } }
.bento-card:hover {
  background: var(--bg-elevated);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(19, 26, 41, 0.10);
}
.bento-card--wide { grid-column: span 2; }
.bento-card--full { grid-column: span 3; }

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.bento-icon--amber {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(114, 129, 202, 0.20);
}
.bento-icon--teal {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(56, 189, 248, 0.20);
}
.bento-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
}
.bento-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === AI SECTION === */
.ai-section {
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(114, 129, 202, 0.05) 0%, transparent 60%),
    var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ai-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ai-list-item i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  padding: 10px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.ai-badge i { color: var(--teal); }

/* AI Chat visual */
.ai-chat {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.ai-chat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(114, 129, 202, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.ai-chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ai-chat-label { font-size: 0.85rem; color: var(--text-muted); }
.chat-msg {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 85%;
  position: relative;
}
.chat-msg--user {
  background: var(--accent);
  color: #ffffff;
  border: 1px solid rgba(114, 129, 202, 0.3);
  margin-left: auto;
}
.chat-msg--ai {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.chat-msg--ai .check-list { margin-top: 0.5rem; }
.chat-msg--ai .check-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  padding: 2px 0;
}
.chat-msg--ai .check-list li i { color: var(--emerald); font-size: 0.75rem; }

.chat-msg--photo { background: var(--accent); }
.chat-photo-upload {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-photo-thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  flex-shrink: 0;
}
.chat-photo-upload span { font-size: 0.85rem; color: #ffffff; }
.chat-gallery-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.chat-gallery-item {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-dim), rgba(59, 130, 246, 0.1));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}
.chat-gallery-link {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* Chat input mockup */
.chat-input-mockup {
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px 10px;
}
.chat-input-area {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 10px;
}
.chat-input-actions {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.chat-input-gallery {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #6b7280;
}
.chat-input-gallery i {
  color: var(--accent);
  font-size: 0.9rem;
}

/* === HOW IT WORKS === */
.steps-section {
  background: var(--bg-base);
}
.steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 1.25rem;
  transition: all 0.3s;
}
.step:hover .step-num {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}
.step-title {
  font-size: 1rem;
  font-family: var(--font-head);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* === PRICING === */
.pricing-section {
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(114, 129, 202, 0.04) 0%, transparent 60%),
    var(--bg-surface);
  border-top: 1px solid var(--border);
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.pricing-toggle span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  transition: color 0.3s;
}
.pricing-toggle span.active { color: var(--text-primary); }
.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.3s;
}
.toggle-switch.annual::after { transform: translateX(24px); }
.toggle-switch.annual { border-color: var(--accent); }
.save-badge {
  font-size: 0.75rem;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid var(--border-accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(19, 26, 41, 0.10);
}
.price-card--featured {
  border-color: var(--accent) !important;
  box-shadow: 0 0 60px var(--accent-glow);
}
.price-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(180deg, var(--accent), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  white-space: nowrap;
}
.price-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--bg-elevated);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.price-icon--starter { background: rgba(114, 129, 202, 0.1); color: var(--accent); }
.price-icon--pro { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.price-icon--business { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.price-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.price-amount-block {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.price-big {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.price-amount .currency { font-size: 1.2rem; vertical-align: super; }
.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.price-annual-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.price-features { margin-bottom: 2rem; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.price-features li i { width: 16px; text-align: center; flex-shrink: 0; }
.price-features li .fa-check { color: var(--emerald); }
.price-features li .fa-xmark { color: var(--text-muted); opacity: 0.4; }
.price-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.price-cta {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.price-cta--primary {
  background: var(--accent);
  color: #ffffff;
}
.price-cta--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow);
}
.price-cta--accent {
  background: var(--accent);
  color: #ffffff;
}
.price-cta--accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow);
}
.price-cta--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-hover);
}
.price-cta--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Pro featured CTA override - orange */
.price-card--featured .price-cta--primary {
  background: #f59e0b;
  color: #ffffff;
}
.price-card--featured .price-cta--primary:hover {
  background: #d97706;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}
.price-card--featured {
  border-color: #f59e0b !important;
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.12);
}
.price-card--featured::before {
  background: linear-gradient(180deg, #f59e0b, transparent 60%);
}
.price-card--featured .price-badge {
  background: #f59e0b;
}

/* === CREDITS INFO === */
.credits-info {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.credits-info-header {
  text-align: center;
  margin-bottom: 2rem;
}
.credits-info-header h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.credits-info-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.credit-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.credit-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.credit-card-header i {
  color: var(--accent);
  font-size: 1.2rem;
}
.credit-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.credit-packages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credit-pkg {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.3s;
}
.credit-pkg:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface);
}
.credit-pkg--popular {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.03);
}
.credit-pkg--best {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.03);
}
.credit-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
}
.credit-pkg--popular .credit-badge {
  background: #f59e0b;
  color: #ffffff;
}
.credit-pkg--best .credit-badge {
  background: #8b5cf6;
  color: #ffffff;
}
.credit-amount {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 120px;
}
.credit-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  margin-left: auto;
}
.credit-per {
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 100px;
  text-align: right;
}

/* === BUSINESS TYPES === */
.biz-section { background: var(--bg-base); }
.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.biz-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.biz-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-elevated);
}
.biz-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(114, 129, 202, 0.15);
  transition: all 0.3s;
}
.biz-card:hover .biz-icon {
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--accent-glow);
}
.biz-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.biz-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === FAQ === */
.faq-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-head);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--accent-dim);
  color: var(--accent);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === CTA === */
.cta-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(114, 129, 202, 0.06) 0%, transparent 60%),
    var(--bg-base);
  text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}
.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.cta-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.cta-badge-item i { color: var(--emerald); }

/* === CONTACT === */
.contact-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}
.contact-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--accent);
  color: #ffffff;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.form-submit:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow);
}
.success-message {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.contact-info-item:hover { color: var(--accent); }
.contact-info-item i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}
.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* === FOOTER === */
.footer {
  background: #131a29;
  color: #f9fafd;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer h4, .footer span, .footer .nav-logo span { color: #f9fafd; }
.footer .nav-logo img { height: 40px; filter: brightness(1.8) contrast(0.9); }
.footer .nav-logo span { font-size: 1.3rem; font-weight: 700; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-text {
  font-size: 0.9rem;
  color: rgba(249, 250, 253, 0.6);
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: #f9fafd;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-link {
  display: block;
  color: rgba(249, 250, 253, 0.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-link:hover { color: #a5b4fc; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(249, 250, 253, 0.5);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-text p { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .hero-badge { margin-inline: auto; }
  .hero-mockup { order: 2; }
  .phone-frame { width: 280px; height: 560px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 2; }
  .bento-card--full { grid-column: span 2; }
  .ai-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ai-chat { max-width: 500px; margin: 0 auto; }
  .steps-track { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .steps-track::before { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-mobile { display: block; }
  .nav-logo span { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a {
    padding: 12px 0;
    font-size: 1rem;
    text-align: center;
  }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide,
  .bento-card--full { grid-column: span 1; }
  .steps-track { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .credits-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand-text { margin-inline: auto; }
  .demo-link { display: flex; justify-content: center; }
  .phone-frame { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-badges { gap: 1rem; }
}
@media (max-width: 480px) {
  .steps-track { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; }
  .biz-grid { grid-template-columns: 1fr; }
  .pricing-toggle { flex-wrap: wrap; }
}
