/* DESIGN TOKENS */
:root {
  --bg-dark: hsl(222, 47%, 6%);
  --bg-dark-accent: hsl(222, 47%, 9%);
  --bg-card: rgba(22, 30, 49, 0.55);
  --bg-card-hover: rgba(30, 41, 59, 0.7);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-color-glow: rgba(16, 185, 129, 0.3);
  
  --primary-green: hsl(142, 72%, 45%);
  --primary-green-hover: hsl(142, 72%, 38%);
  --primary-green-glow: rgba(16, 185, 129, 0.15);
  
  --primary-gold: hsl(38, 92%, 50%);
  --primary-blue: hsl(217, 91%, 56%);
  --primary-slate: hsl(215, 16%, 47%);
  
  --text-white: hsl(0, 0%, 100%);
  --text-gray-light: hsl(215, 20%, 85%);
  --text-gray: hsl(215, 20%, 65%);
  --text-gray-dark: hsl(215, 12%, 45%);
}

/* GENERAL STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-gray-light);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* BACKGROUND GLOWS */
.radial-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
}

.glow-top-left {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
}

.glow-bottom-right {
  bottom: 20%;
  right: -10%;
  background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
}

/* BUTTONS */
.btn-primary {
  background: var(--primary-green);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 20px var(--primary-green-glow);
}

.btn-primary:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-gray-light);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* NAVIGATION */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 2.25rem;
  height: 2.25rem;
  object-contain: fit;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-text {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 0.75rem;
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  color: var(--text-white);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
}

.logo-subtitle {
  color: var(--primary-green);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.125rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* HERO SECTION */
.hero-section {
  padding: 8rem 1.5rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-white) 40%, var(--text-gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-cta-group {
  width: 100%;
}

.email-capture {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.375rem;
  border-radius: 16px;
  max-width: 480px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.email-capture:focus-within {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
}

.email-input::placeholder {
  color: var(--text-gray-dark);
}

.btn-submit {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatars {
  display: flex;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  background-color: var(--bg-dark-accent);
  color: var(--text-white);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:nth-child(1) { background: linear-gradient(135deg, #10b981, #047857); }
.avatar:nth-child(2) { background: linear-gradient(135deg, #f59e0b, #d97706); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }

.proof-text {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* HERO APP PREVIEW */
.hero-preview {
  position: relative;
  display: flex;
  justify-content: center;
}

.glass-window {
  width: 100%;
  max-width: 560px;
  height: 380px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.window-header {
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
}

.window-dots {
  display: flex;
  gap: 0.375rem;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.window-tab {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--text-gray-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.window-body {
  display: block;
  flex: 1;
  overflow: hidden;
  height: calc(100% - 40px);
}

.dashboard-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-window:hover .dashboard-screenshot {
  transform: scale(1.03);
}

.mock-sidebar {
  background: rgba(255, 255, 255, 0.01);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.mock-logo {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--primary-green);
  opacity: 0.7;
}

.mock-nav-item {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.mock-nav-item.active {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--primary-green);
}

.mock-main {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
}

.mock-user {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.75rem;
  flex: 1;
}

.mock-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-full {
  grid-column: span 2;
  height: 100px;
  justify-content: space-between;
}

.card-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-gray);
}

.card-bar-graph {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 50px;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, 0.1);
  transition: height 0.5s ease;
}

.bar-1 { background: linear-gradient(to top, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.7)); }
.bar-2 { background: linear-gradient(to top, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.9)); }
.bar-3 { background: linear-gradient(to top, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.5)); }
.bar-4 { background: linear-gradient(to top, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 1)); }

.card-stat-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-gray-dark);
  text-transform: uppercase;
}

.card-stat-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 0.25rem 0;
  font-family: 'Outfit', sans-serif;
}

.card-stat-badge {
  font-size: 0.55rem;
  color: var(--primary-green);
  font-weight: 700;
}

.card-status-btn {
  font-size: 0.6rem;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-gray-dark);
  text-align: center;
  font-weight: 700;
}

.card-status-btn.disabled {
  border-color: rgba(16, 185, 129, 0.15);
  background: rgba(16, 185, 129, 0.02);
  color: var(--primary-green);
}

/* SECTION GLOBAL HEADERS */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
}

/* FEATURES SECTION */
.features-section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-color-glow);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* LIVE PREVIEW SECTION */
.preview-section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: flex-start;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

.preview-config {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.config-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.config-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-gray-dark);
}

.config-input, .config-textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s ease;
}

.config-input:focus, .config-textarea:focus {
  border-color: rgba(16, 185, 129, 0.4);
}

.config-textarea {
  resize: none;
}

.color-picker-group {
  display: flex;
  gap: 0.75rem;
}

.color-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.color-btn.active {
  border-color: var(--text-white);
  transform: scale(1.1);
}

/* Toggle Switch */
.toggle-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.toggle-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-gray-light);
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.08);
  transition: .3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-white);
  transition: .3s;
}

input:checked + .slider {
  background-color: var(--primary-green);
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* PDF PREVIEW PAPER */
.pdf-container {
  display: flex;
  justify-content: center;
}

.pdf-paper {
  width: 100%;
  max-width: 440px;
  background: var(--text-white);
  color: #1e293b;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdf-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
  display: block;
  line-height: 1.1;
}

.pdf-brand-sub {
  font-size: 0.55rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.125rem;
}

.pdf-logo-box {
  width: 32px;
  height: 32px;
}

.pdf-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdf-divider {
  height: 2px;
  background-color: #10b981; /* Default emerald */
  width: 100%;
  transition: background-color 0.3s ease;
}

.pdf-meta-table {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pdf-meta-row {
  display: flex;
}

.pdf-meta-lbl {
  font-weight: 700;
  width: 50px;
  color: #475569;
}

.pdf-meta-val {
  color: #1e293b;
}

.pdf-table {
  width: 100%;
  border-collapse: collapse;
}

.pdf-table th {
  text-align: left;
  padding: 0.5rem;
  background: #f8fafc;
  color: #475569;
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.pdf-table td {
  padding: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.text-right {
  text-align: right;
}

.pdf-total-row td {
  border-top: 2px solid #e2e8f0;
  border-bottom: none;
}

.font-bold {
  font-weight: 700;
}

.pdf-terms {
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.75rem;
}

.pdf-terms-title {
  font-weight: 700;
  font-size: 0.6rem;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.pdf-terms-text {
  color: #64748b;
  font-size: 0.65rem;
  white-space: pre-line;
}

.pdf-signatures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
}

.pdf-sig-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdf-sig-line {
  border-top: 1px solid #cbd5e1;
  width: 100%;
}

.pdf-sig-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  text-align: center;
}

.pdf-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: #94a3b8;
}

/* PRICING SECTION */
.pricing-section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-container {
  display: flex;
  justify-content: center;
}

.pricing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 480px;
}

.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.toggle-label-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-gray-light);
}

.discount-pill {
  font-size: 0.65rem;
  background: var(--primary-green);
  color: var(--text-white);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  margin-left: 0.25rem;
  font-weight: 800;
  vertical-align: middle;
}

/* Premium Price Display Card */
.price-card-premium {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card-premium:hover {
  border-color: var(--border-color-glow);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.04);
}

.card-header-plan {
  margin-bottom: 1.5rem;
}

.plan-title {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
  color: var(--text-white);
}

.plan-subtitle {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.price-display-block {
  margin-bottom: 1.5rem;
}

.price-details {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-gray-light);
  margin-top: 0.25rem;
}

.price-val {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-left: 0.25rem;
  align-self: flex-end;
  margin-bottom: 0.25rem;
}

.price-calc-note {
  font-size: 0.75rem;
  color: var(--text-gray-dark);
  font-weight: 600;
  margin-top: 0.25rem;
}

.savings-alert-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.savings-alert-box.hidden {
  opacity: 0;
  transform: scale(0.9);
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: none;
}

.sparkle-icon {
  width: 1rem;
  height: 1rem;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 1.75rem 0;
}

.pricing-features-list {
  list-style: none;
  width: 100%;
  margin-bottom: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features-list li {
  font-size: 0.825rem;
  color: var(--text-gray-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features-list li span {
  color: var(--primary-green);
  font-weight: 900;
}

/* FAQ SECTION */
.faq-section {
  padding: 6rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-icon-cross {
  font-size: 1.25rem;
  color: var(--text-gray-dark);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  padding-bottom: 1.25rem;
}

/* FAQ ACTIVE STATE */
.faq-item.active {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-content {
  max-height: 200px; /* arbitrary height for animation */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon-cross {
  transform: rotate(45deg);
  color: var(--primary-green);
}

/* CTA BANNER */
.cta-banner-section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-banner-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.cta-btn-group {
  display: flex;
  gap: 1rem;
}

/* FOOTER */
.main-footer {
  background: var(--bg-dark-accent);
  border-top: 1px solid var(--border-color);
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  width: 2rem;
  height: 2rem;
}

.footer-logo-title {
  font-family: 'Outfit', sans-serif;
  color: var(--text-white);
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
  max-width: 320px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.footer-link {
  font-size: 0.825rem;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text-white);
}

.email-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.email-link:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-gray-dark);
  font-weight: 600;
}

.stamp-highlight {
  color: var(--text-gray);
}

/* ANIMATIONS */
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }
  .nav-menu {
    display: none; /* simple mobile drawer toggle or hidden for brevity */
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    margin-bottom: 2rem;
  }
  .email-capture {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 0.75rem;
  }
  .email-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
  }
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
  .hero-proof {
    justify-content: center;
  }
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .pricing-widget {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}


