/*
 * ChillTravelOS™ - Sunset Sand Beach Glassmorphism Design System
 */

:root {
  --bg: #090d16;
  --bg-gradient: linear-gradient(135deg, #090d16 0%, #0d1b2a 50%, #130a1c 100%);
  --primary: #ff8c3a; /* Sunset orange */
  --primary-rgb: 255, 140, 58;
  --primary-hover: #ffa05e;
  --secondary: #38bdf8; /* Ocean sky blue */
  --accent: #f59e0b; /* Sand amber */
  --success: #10b981; /* Palm green */
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --glass-bg: rgba(17, 24, 39, 0.65);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-green {
  color: var(--success);
  font-weight: 700;
}

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

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #000;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 58, 0.4);
  background: linear-gradient(135deg, var(--primary-hover) 0%, #ffb84d 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* Glassmorphism Panel Utility */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: var(--glass-glow);
}

/* Sticky Scarcity Banner */
.scarcity-banner {
  background: linear-gradient(90deg, #b45309 0%, #78350f 50%, #451a03 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  color: #fef3c7;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.scarcity-banner span {
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 5px;
  font-family: monospace;
}

/* Navigation & Header */
.header {
  background: rgba(9, 13, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
  position: relative;
  z-index: 90;
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  color: var(--primary);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

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

/* Custom Select Dropdown Styling */
.lang-select-wrapper {
  position: relative;
}

.lang-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 6px 30px 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.2s ease;
}

.lang-select:focus {
  outline: none;
  border-color: var(--primary);
}

.lang-select-wrapper::after {
  content: '▼';
  font-size: 8px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

/* Menu Toggle Mobile Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

/* Hero Section */
.hero {
  padding: 80px 0 120px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255, 140, 58, 0.15);
  border: 1px solid rgba(255, 140, 58, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-checks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Visual Panel On Right */
.hero-visual {
  width: 100%;
  position: relative;
}

.visual-container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 16px;
}

.visual-title h4 {
  font-size: 18px;
}

.visual-title p {
  font-size: 12px;
  color: var(--text-muted);
}

.visual-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

/* Dynamic Travel Card Showcase inside Visual Panel */
.visual-presets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.preset-card-visual {
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.preset-card-visual:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 140, 58, 0.2);
  transform: translateY(-2px);
}

.preset-image-placeholder {
  height: 90px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Sunset Amber Overlay tint */
.preset-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 140, 58, 0.2) 0%, rgba(11, 19, 41, 0.6) 100%);
}

.preset-card-visual h5 {
  font-size: 14px;
  font-weight: 600;
}

.preset-card-visual span {
  font-size: 11px;
  color: var(--primary);
  font-weight: 500;
}

/* Pain Points Section */
.pain-mistakes {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.pain-card {
  padding: 32px;
  height: 100%;
}

.pain-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

/* Calculator Section */
.calculator-section {
  position: relative;
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-title-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.calc-title-box p {
  font-size: 14px;
  color: var(--text-muted);
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group input {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 140, 58, 0.15);
}

/* Range Slider Custom Styling */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  outline: none;
  margin: 10px 0;
  padding: 0 !important;
  transition: background 0.3s ease;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(255, 140, 58, 0.5);
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: #ffa86a;
}

.calc-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(255, 140, 58, 0.5);
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  background: #ffa86a;
}

.segment-flights { background: #60a5fa !important; box-shadow: inset 0 0 4px rgba(255,255,255,0.2); }
.segment-lodging { background: #f43f5e !important; box-shadow: inset 0 0 4px rgba(255,255,255,0.2); }
.segment-food { background: #fbbf24 !important; box-shadow: inset 0 0 4px rgba(255,255,255,0.2); }
.segment-activities { background: #34d399 !important; box-shadow: inset 0 0 4px rgba(255,255,255,0.2); }

/* Calculator Outputs Column */
.calculator-results {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px;
}

.result-card {
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.result-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.result-card.pro-result {
  border-left: 3px solid var(--primary);
  padding-left: 16px;
}

.result-header {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-formula {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.result-value-box {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.result-val {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.result-subtext {
  font-size: 13px;
  color: var(--text-muted);
}

.calc-footer-msg {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  text-align: center;
}

/* Features Vault Showcase */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-slide {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-slide:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 58, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.slide-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 140, 58, 0.15);
  line-height: 1;
}

.feature-slide h3 {
  font-size: 24px;
}

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

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin-top: 10px;
}

.feature-list li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* Testimonials / Reviews */
.testimonials {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.testimonial-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.stars {
  color: var(--accent);
  font-size: 14px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

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

.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 15px;
}

.profile-name {
  font-weight: 600;
  font-size: 15px;
}

.profile-title {
  font-size: 12px;
  color: var(--text-muted);
}

/* Luxury Bonuses Grid */
.bonuses-section {
  padding: 100px 0;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.bonus-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 140, 58, 0.08) 50%);
  width: 100px;
  height: 100px;
}

.bonus-badge {
  align-self: flex-start;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--success);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bonus-card h3 {
  font-size: 20px;
}

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

.bonus-format {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-top: auto;
}

/* Pricing Section */
.pricing-section {
  background: radial-gradient(circle at 50% 50%, rgba(255, 140, 58, 0.05) 0%, transparent 80%);
}

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

.pricing-card {
  padding: 50px;
  border-color: rgba(255, 140, 58, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
}

.price-card-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.price-box {
  margin: 24px 0;
}

.price-original {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.price-includes {
  text-align: left;
  margin: 32px 0;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.price-includes h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.price-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-includes li {
  font-size: 14px;
  color: var(--text);
}

.price-footer-lock {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.faq-card {
  padding: 30px;
}

.faq-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 50px 0;
  background: rgba(9, 13, 22, 0.9);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.footer-text {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* Success dialog Modal */
dialog.success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 540px;
  background: #0d131f;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  padding: 40px;
  color: var(--text);
  z-index: 1000;
}

dialog.success-modal::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.modal-header h3 {
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--primary);
}

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

.purchase-breakdown {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
}

.breakdown-row strong {
  color: var(--text-muted);
  font-weight: 500;
}

.breakdown-val {
  font-weight: 600;
}

.download-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.download-box-title {
  font-size: 14px;
  font-weight: 700;
}

.download-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  gap: 16px;
}

.download-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.download-name {
  font-size: 14px;
  font-weight: 600;
}

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

.download-item-btn {
  background: var(--success);
  color: #000;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.download-item-btn:hover {
  background: #1cdf95;
  transform: translateY(-1px);
}

/* Mobile Drawer Styles */
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: #090d16;
  border-bottom: 1px solid var(--glass-border);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 24px;
  gap: 20px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 80;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 12px;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 44px;
  }
  
  .badge {
    align-self: center;
  }
  
  .hero-checks {
    justify-content: center;
  }
  
  .hero-stats {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pain-grid, .calculator-wrapper, .features-grid, .testimonials-grid, .bonuses-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-actions {
    display: none;
  }
  
  .menu-btn {
    display: block;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .hero-content h1 {
    font-size: 34px;
  }
}

/* Dynamic Upsell Success Modal Styling */
dialog.success-modal {
  max-width: 760px;
}

.modal-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: left;
}

@media (min-width: 640px) {
  .modal-layout-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

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

.modal-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px dashed var(--glass-border);
  padding-top: 20px;
}

@media (min-width: 640px) {
  .modal-right-col {
    border-top: none;
    border-left: 1px dashed var(--glass-border);
    padding-top: 0;
    padding-left: 24px;
  }
}

.upsell-showcase-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.upsell-card-modal {
  background: rgba(255, 140, 58, 0.03);
  border: 1px solid rgba(255, 140, 58, 0.15);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: all 0.2s ease;
}

.upsell-card-modal:hover {
  background: rgba(255, 140, 58, 0.06);
  border-color: rgba(255, 140, 58, 0.3);
}

.upsell-discount-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--success);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.upsell-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding-right: 70px;
}

.upsell-card-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.upsell-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.upsell-price-original {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.upsell-price-tag {
  font-size: 18px;
  font-weight: 800;
  color: var(--success);
}

.upsell-buy-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 140, 58, 0.2);
}

.upsell-buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 140, 58, 0.3);
}

.unlocked-section-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.unlocked-card {
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
}

