/* ==========================================================================
   Vorde Studio — Master Design System (Enhanced & Mobile-Optimized)
   Aesthetic: Ultra-Clean White & Emerald Luxe Direct Response
   Fonts: Outfit (Headings), Inter (Body)
   ========================================================================== */

:root {
  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --bg-subtle: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-input: #ffffff;
  
  --primary: #059669;
  --primary-hover: #047857;
  --primary-light: #ecfdf5;
  --primary-border: #a7f3d0;
  
  --accent-dark: #0f172a;
  --accent-navy: #1e293b;
  --accent-amber: #d97706;
  --accent-amber-light: #fffbeb;
  --accent-amber-border: #fde68a;
  
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-inverse: #ffffff;

  --border-light: #e2e8f0;
  --border-card: #e2e8f0;
  --border-focus: #059669;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 9999px;

  --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-btn: 0 2px 4px rgba(5, 150, 105, 0.2);

  --max-w: 1180px;
  --max-w-narrow: 820px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
}

h4 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  color: var(--text-body);
}

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

/* Announcement Bar */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #064e3b;
  color: #ecfdf5;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s ease;
  position: relative;
  z-index: 101;
}

.announcement-bar:hover {
  background: #044e37;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.highlight-price {
  color: #fde68a;
  font-weight: 700;
}

/* Visibility Utilities */
.mobile-only {
  display: none !important;
}

.desktop-only {
  display: inline-block;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  display: flex;
  align-items: center;
}

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

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

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  max-width: 200px;
}

.logo-icon-svg {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
  display: block;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

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

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-main);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  z-index: 200;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

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

.drawer-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px 8px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: auto;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.drawer-contact {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-main);
  border-color: var(--border-card);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  background-color: var(--bg-surface);
  border-color: var(--text-muted);
}

.btn-dark {
  background-color: var(--accent-dark);
  color: #ffffff;
}

.btn-dark:hover {
  background-color: var(--accent-navy);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

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

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

.section-header h2 {
  margin-top: 10px;
  margin-bottom: 12px;
}

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

/* Chips & Badges */
.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

/* ==========================================================================
   STABILIZED HERO HEADLINE & TYPING CONTAINER (Zero Layout Shift)
   ========================================================================== */
.hero-section {
  padding: 56px 0 72px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

.hero-heading {
  display: block;
  width: 100%;
  text-align: left;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
}

.hero-static-title {
  display: inline;
}

.hero-dynamic-line {
  display: block;
  min-height: 1.25em;
  line-height: 1.2;
  text-align: left;
}

.highlight-green {
  color: var(--primary);
}

.typing-cursor {
  display: inline-block;
  opacity: 1;
  animation: blink 0.8s infinite;
  color: var(--primary);
  font-weight: 400;
}

.headline-nowrap {
  white-space: nowrap;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.6;
}

.hero-offer-box {
  background: var(--accent-amber-light);
  border: 1px solid var(--accent-amber-border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-subtle);
}

.hero-offer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-title {
  font-weight: 800;
  color: var(--accent-amber);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.offer-desc {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
}

.offer-tag {
  background: var(--accent-amber);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
}

.hero-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-bullet-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-subtle);
}

.trust-bullet-card svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Multi-Step Form Card */
.form-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.form-header {
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.step-indicator {
  margin-bottom: 22px;
}

.step-counter {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.step-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--bg-subtle);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.step-progress-fill {
  height: 100%;
  width: 25%;
  background: var(--primary);
  border-radius: var(--radius-pill);
  transition: width 0.3s ease;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.option-card {
  position: relative;
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-card label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 48px;
}

.option-card input[type="radio"]:checked + label {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-hover);
  box-shadow: 0 0 0 1px var(--primary);
}

.option-card label:hover {
  border-color: var(--primary-border);
}

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

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-main);
  background: var(--bg-input);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* Inline Form Success Message Box */
.form-success-box {
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  animation: fadeIn 0.4s ease;
  box-shadow: var(--shadow-subtle);
}

.form-success-box .success-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

.form-success-box h4 {
  color: #065f46;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-success-box p {
  color: #064e3b;
  font-size: 0.98rem;
  line-height: 1.6;
}

.form-actions-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.reassurance-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Comparison Section */
.comparison-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-col {
  padding: 36px;
}

.comparison-col.bad {
  background: #fff5f5;
  border-right: 1px solid #fed7d7;
}

.comparison-col.good {
  background: var(--primary-light);
}

.comparison-col h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 22px;
}

.comparison-col.bad h4 {
  color: #9b2c2c;
}

.comparison-col.good h4 {
  color: #065f46;
}

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

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-list li span {
  flex: 1;
  min-width: 0;
}

.comparison-col.bad li { color: #742a2a; }
.comparison-col.good li { color: #064e3b; }

.comparison-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Metrics Strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.metric-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.metric-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Value Equation Section */
.value-equation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.equation-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.equation-card.pain {
  border-top: 4px solid #ef4444;
}

.equation-card.dream {
  border-top: 4px solid var(--primary);
}

.equation-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.equation-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.equation-card.pain .equation-icon-wrapper {
  background: #fee2e2;
  color: #dc2626;
}

.equation-card.dream .equation-icon-wrapper {
  background: var(--primary-light);
  color: var(--primary);
}

.equation-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.equation-point-item {
  display: flex;
  gap: 14px;
}

.equation-point-item .icon {
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 2px;
}

.equation-card.pain .icon { color: #dc2626; }
.equation-card.dream .icon { color: var(--primary); }

.equation-point-item h5 {
  font-size: 1.02rem;
  margin-bottom: 3px;
}

.equation-point-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Lost Revenue Calculator Widget */
.calc-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

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

.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.slider-value {
  color: var(--primary);
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  outline: none;
  accent-color: var(--primary);
}

.calc-result-box {
  background: var(--accent-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.calc-result-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 8px;
}

.calc-result-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #34d399;
  line-height: 1.1;
  margin-bottom: 12px;
}

.calc-result-sub {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-border);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.service-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.service-deliverables li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-deliverables li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Industry Showcase Tabs */
.industry-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.industry-tab-btn {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.industry-tab-btn.active, .industry-tab-btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
  border-color: var(--accent-dark);
}

.industry-content-box {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.industry-panel {
  display: none;
}

.industry-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.industry-panel-text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.industry-panel-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.industry-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.industry-panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.industry-panel-card {
  background: var(--bg-surface);
  border: 1px dashed var(--primary-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

/* How It Works (3 Steps) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.step-badge {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.pricing-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.pricing-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.pricing-feature-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-feature-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* Final CTA Section */
.cta-section {
  background: var(--accent-dark);
  color: #ffffff;
  border-radius: 0;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 32px auto;
}

/* Modal Booking Window */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-subtle);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* Offer Button & Badges */
.btn-offer {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff !important;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.88rem;
  border: 1px solid rgba(253, 230, 138, 0.3);
}

.btn-offer:hover {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
  color: #ffffff !important;
}

.btn-offer-outline {
  background: rgba(217, 119, 6, 0.1);
  color: #f59e0b !important;
  border: 1px solid rgba(245, 158, 11, 0.4);
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.88rem;
}

.btn-offer-outline:hover {
  background: rgba(217, 119, 6, 0.2);
  border-color: #f59e0b;
  color: #fbbf24 !important;
}

/* Why Grid (About Page & Features) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* Footer */
.footer {
  background: #090d16;
  color: #94a3b8;
  padding: 64px 0 30px 0;
  border-top: 1px solid #1e293b;
  font-size: 0.9rem;
}

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

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #cbd5e1;
}

.footer-contact-item a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-cta-box {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-links a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

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

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================================================
   SUPERIOR MOBILE RESPONSIVENESS & TOUCH OPTIMIZATION
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .calc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }
  .header {
    height: 60px;
  }
  .announcement-bar {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-block !important; }
  .hamburger-btn { display: inline-flex; padding: 4px; align-items: center; justify-content: center; }
  .hamburger-btn svg { width: 22px; height: 22px; }
  
  .container { padding: 0 16px; }
  section { padding: 44px 0; }
  .hero-section { padding: 24px 0 40px 0; }

  .logo-img { height: 36px; max-width: 170px; }
  .logo-text { font-size: 1.05rem; }
  .logo-sub { font-size: 0.6rem; }
  
  .hero-heading {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 1.12;
  }
  
  .hero-dynamic-line {
    min-height: 2.5em; /* Allows 2 lines on small phones without pushing content down */
  }

  .mobile-header-cta {
    display: inline-flex !important;
    padding: 5px 10px;
    font-size: 0.72rem;
    height: 30px;
    align-items: center;
    border-radius: var(--radius-pill);
  }

  .header-actions { gap: 5px; }

  .form-card {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }

  .option-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .option-card label {
    padding: 10px 8px;
    font-size: 0.82rem;
  }

  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-col { padding: 24px 18px; }
  .comparison-col.bad { border-right: none; border-bottom: 1px solid #fed7d7; }

  .metrics-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .metric-card { padding: 16px 12px; }
  .metric-number { font-size: 1.5rem; }

  .value-equation-grid { grid-template-columns: 1fr; }
  .equation-card { padding: 22px 16px; width: 100%; }

  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .why-card {
    padding: 22px 18px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { padding: 24px 18px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 20px; }

  .industry-nav { gap: 6px; }
  .industry-tab-btn { padding: 8px 14px; font-size: 0.8rem; }
  .industry-content-box { padding: 20px 16px; }
  .industry-panel.active { grid-template-columns: 1fr; gap: 20px; }

  .calc-wrapper { padding: 20px 16px; }
  .calc-result-box { padding: 24px 16px; }
  .calc-result-amount { font-size: 2.2rem; }

  .footer { padding: 44px 0 24px 0; }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-grid > .footer-col:last-child,
  .footer-cta-col {
    grid-column: 1 / -1;
  }
  .footer-brand p { max-width: 100%; }
  .footer-secondary { display: block; }
  .footer-col h5 { margin-bottom: 12px; font-size: 0.9rem; }
  .footer-links { gap: 10px; }
  .footer-links a { display: inline-block; padding: 3px 0; font-size: 0.9rem; }
  .footer-buttons-group { flex-direction: column; width: 100%; gap: 10px; }
  .footer-buttons-group .btn { width: 100%; text-align: center; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding-top: 20px; margin-top: 24px; font-size: 0.8rem; }
  .footer-legal-links { justify-content: center; width: 100%; }
  
  .modal-content { padding: 20px 16px; }
}
