@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #070f1e;
  --bg-darker: #040914;
  --navy-deep: #0e1d33;
  --navy-mid: #172b4c;
  --navy-light: #233e68;
  --navy-bright: #32588e;
  --gold: #c9a227;
  --gold-glow: #e5b82d;
  --gold-soft: #f6edc7;
  --gold-bg: rgba(201, 162, 39, 0.1);
  --text-light: #f1f5f9;
  --text-normal: #cbd5e1;
  --text-muted: #94a3b8;
  --glass-bg: rgba(14, 29, 51, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-normal);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--navy-bright);
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: 'Outfit', "PingFang SC", sans-serif;
  color: var(--text-light);
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, var(--text-light) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, #a88216 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--bg-darker);
  font-size: 20px;
  box-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
}

.logo-text {
  font-size: 22px;
  letter-spacing: 0.05em;
}

.logo-text span {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  border-left: 1px solid var(--navy-light);
  padding-left: 8px;
  margin-left: 8px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-normal);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}

.cta-nav {
  background: linear-gradient(135deg, var(--gold) 0%, #ad8a1c 100%);
  color: var(--bg-darker);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
  color: var(--bg-darker);
}

/* Hero Section */
.hero-section {
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(35, 62, 104, 0.15) 0%, transparent 50%),
              var(--bg-dark);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-darker) 100%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  color: var(--gold-glow);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 22px;
  color: var(--gold-soft);
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #ad8a1c 100%);
  color: var(--bg-darker);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.6);
}

.btn-secondary {
  background: var(--navy-mid);
  color: var(--text-light);
  border: 1px solid var(--navy-light);
}

.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-bright);
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  background: rgba(14, 29, 51, 0.5);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(5px);
}

.stat-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
}

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

/* Sidebar Box */
.hero-sidebar {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-premium);
  position: relative;
}

.hero-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--navy-bright) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.sidebar-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--gold);
}

.sidebar-list {
  list-style: none;
  margin-bottom: 30px;
}

.sidebar-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-normal);
}

.sidebar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

.sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar-info h4 {
  font-size: 18px;
  color: var(--text-light);
}

.avatar-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Section Common */
section {
  padding: 100px 0;
  position: relative;
}

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

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

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
}

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

/* Pain Points Section */
.pain-section {
  background-color: var(--bg-darker);
}

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

.pain-card {
  background: linear-gradient(135deg, rgba(23, 43, 76, 0.4) 0%, rgba(14, 29, 51, 0.3) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 35px;
  transition: all 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: var(--navy-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pain-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  font-size: 20px;
  margin-bottom: 24px;
}

.pain-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

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

.highlight-box {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08) 0%, rgba(23, 43, 76, 0.4) 100%);
  border-left: 4px solid var(--gold);
  padding: 24px 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: 900px;
  margin: 0 auto;
}

.highlight-box p {
  font-size: 16px;
  color: var(--text-normal);
}

/* Before/After Section */
.magic-section {
  background: var(--bg-dark);
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--glass-border);
  user-select: none;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-img.img-before {
  z-index: 1;
}

.slider-img.img-after {
  z-index: 2;
  width: 50%; /* JS will control this */
}

/* Labels on images */
.slider-label {
  position: absolute;
  top: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.label-before {
  right: 24px;
  background: var(--accent-red);
}

.label-after {
  left: 24px;
  background: var(--accent-green);
}

/* Drag Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* JS will control this */
  width: 4px;
  background-color: var(--gold);
  z-index: 15;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-darker);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 0 15px rgba(201, 162, 39, 0.8);
  pointer-events: none;
}

.slider-caption-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 30px auto 0 auto;
}

.caption-box {
  background: rgba(14, 29, 51, 0.4);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: var(--radius-md);
}

.caption-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.caption-box.box-before h4 {
  color: var(--accent-red);
}

.caption-box.box-after h4 {
  color: var(--accent-green);
}

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

/* Pathways & Pricing Section */
.path-section {
  background: var(--bg-darker);
}

.path-selector-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  color: var(--text-muted);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: var(--text-light);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, #ad8a1c 100%);
  color: var(--bg-darker);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.path-content-wrapper {
  position: relative;
  min-height: 400px;
}

.path-pane {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.path-pane.active {
  display: block;
}

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

.path-overview-card {
  background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(14, 29, 51, 0.5) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-premium);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.calc-container {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 25px;
}

.calc-title {
  color: var(--text-light);
  margin-bottom: 15px;
}

.calc-label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.calc-result-box {
  background: rgba(4, 9, 20, 0.5);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

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

.calc-val-number {
  font-size: 24px;
  font-weight: 700;
  margin-left: 10px;
}

.calc-val-duration {
  color: var(--text-light);
  font-weight: 600;
}

.privacy-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.4;
}



.path-overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.path-overview-header h3 {
  font-size: 28px;
  color: var(--gold);
}

.path-meta-pill {
  background: var(--navy-light);
  border: 1px solid var(--navy-bright);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.step-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.flow-node {
  background: var(--navy-mid);
  border: 1px solid var(--glass-border);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.flow-node h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

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

.flow-arrow {
  color: var(--gold);
  font-weight: bold;
  font-size: 20px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  background: linear-gradient(180deg, rgba(23, 43, 76, 0.5) 0%, rgba(14, 29, 51, 0.4) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 35px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--navy-light);
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.05) 0%, rgba(14, 29, 51, 0.6) 100%);
  box-shadow: 0 15px 30px rgba(201, 162, 39, 0.08);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-bg);
  border: 1px solid var(--gold);
  color: var(--gold-glow);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.price-header {
  margin-bottom: 24px;
}

.price-tag {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  margin: 10px 0 5px 0;
}

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

.price-time {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-normal);
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.guarantee-box-small {
  background: rgba(23, 43, 76, 0.6);
  border: 1px dashed var(--gold);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.guarantee-box-small h5 {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 4px;
}

.guarantee-box-small p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Success Stories Section */
.case-section {
  background: var(--bg-dark);
}

.brand-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.brand-logo-item {
  height: 48px;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.brand-logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.brand-logo-item img, .brand-logo-item svg {
  height: 100%;
  object-fit: contain;
}

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

.testimonial-card {
  background: linear-gradient(135deg, rgba(14, 29, 51, 0.6) 0%, rgba(7, 15, 30, 0.4) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 4px solid var(--gold);
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: -10px;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
}

.testimonial-logo {
  height: 32px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 4px;
  border-radius: 4px;
}

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

.testimonial-meta h5 {
  font-size: 14px;
  color: var(--text-light);
}

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

/* About Section */
.about-section {
  background: var(--bg-darker);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-photo-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.about-photo-wrapper img {
  width: 100%;
  display: block;
}

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

.bio-card {
  background: rgba(14, 29, 51, 0.4);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: var(--radius-md);
}

.bio-card h4 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
}

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

/* Contact/Inquiry Section */
.contact-section {
  background: var(--bg-dark);
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.contact-methods {
  margin: 30px 0;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-bg);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}

.contact-method-detail h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-method-detail p {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 600;
}

.qr-box-wrapper {
  background: rgba(14, 29, 51, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 400px;
}

.qr-image {
  width: 140px;
  height: 140px;
  background: white;
  padding: 8px;
  border-radius: var(--radius-md);
}

.qr-image img {
  width: 100%;
  height: 100%;
}

.qr-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.qr-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrapper {
  background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(14, 29, 51, 0.6) 100%);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  background: rgba(4, 9, 20, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-light);
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  padding: 15px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-size: 14px;
  display: none;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-green);
  color: #34d399;
  display: block;
}

.form-feedback.error {
  background: rgba(239, 104, 104, 0.15);
  border: 1px solid var(--accent-red);
  color: #f87171;
  display: block;
}

/* Footer */
footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-sidebar {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .brand-logos {
    gap: 30px;
  }

  /* Mobile Menu Toggle button (moved to 1024px) */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  
  .menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
  }
  
  /* Hamburger Menu to 'X' Animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  nav {
    position: relative;
  }
  
  /* Mobile Drawer Menu style (moved to 1024px) */
  nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(14, 29, 51, 0.98);
    backdrop-filter: blur(15px);
    border-left: 1px solid var(--glass-border);
    padding: 100px 30px 40px 30px;
    gap: 24px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  nav ul.active {
    right: 0;
  }
}

/* Mobile Toggle Default Hidden (Desktop) */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .pain-grid {
    grid-template-columns: 1fr;
  }
  
  .slider-container {
    height: 350px;
  }
  
  .slider-caption-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  /* Make pricing calculator single column on mobile */
  .calc-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}
