/* =============================================
   CSS VARIABLES - React App Colors
============================================= */
:root {
  --navy: #1B365D;
  --navy-dark: #12243d;
  --orange: #FF6B00;
  --orange-hover: #e66000;
  --white: #ffffff;
  --off-white: #F8F9FA;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --black: #0f172a;
  --success: #22c55e;
  --error: #ef4444;
  
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --max-width: 1100px;
  --radius: 2px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px -10px rgba(0,0,0,0.2);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
}

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

.container-narrow {
  max-width: 800px;
}

.text-white { color: var(--white); }
.text-orange { color: var(--orange); }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 18px;
  min-height: 60px;
}

.btn-full { width: 100%; }

/* =============================================
   HEADER
============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .logo {
    font-size: 36px;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--orange-hover);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }
  .nav.active { display: flex; }
  .nav a {
    padding: 12px 0;
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .nav { display: flex; }
  .mobile-toggle { display: none; }
}

/* =============================================
   HERO
============================================= */
.hero {
  padding: 130px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 900px) {
  .hero-content { text-align: left; }
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
}

@media (min-width: 900px) {
  .hero-sub { margin-left: 0; }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

@media (min-width: 900px) {
  .hero-trust { justify-content: flex-start; }
}

.hero-trust .sep { color: rgba(255,255,255,0.3); }

.hero-image {
  display: none;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero-image { display: flex; }
}

.hero-image img {
  max-width: 100%;
  max-height: 450px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* =============================================
   SECTIONS
============================================= */
.section {
  padding: 80px 0;
  text-align: center;
}

.section-gray {
  background: var(--off-white);
}

.section-navy {
  background: var(--navy);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-tag-light {
  color: rgba(255,255,255,0.6);
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-intro {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-600);
  max-width: 650px;
  margin: 0 auto 40px;
}

/* =============================================
   PROBLEM SECTION
============================================= */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 600px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: #fef2f2;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--error);
}

.problem-card p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gray-800);
  margin: 0;
}

/* =============================================
   STEPS
============================================= */
.steps {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-600);
  margin: 0;
}

/* =============================================
   CHECKLIST
============================================= */
.checklist-box {
  max-width: 450px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid rgba(27,54,93,0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}

.check-icon {
  width: 32px;
  height: 32px;
  background: var(--success);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

/* =============================================
   PRICING
============================================= */
.pricing-card {
  max-width: 500px;
  margin: 0 auto 32px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.pricing-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.pricing-body {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
}

.price-amount.orange {
  color: var(--orange);
}

.price-label {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}

.price-plus {
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  margin: 0 8px;
}

/* ROI Box */
.roi-box {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255,107,0,0.1);
  border: 2px solid rgba(255,107,0,0.3);
  border-radius: var(--radius);
  padding: 24px;
}

.roi-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.roi-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.roi-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,107,0,0.2);
  color: var(--gray-800);
}

.roi-table tr:last-child td {
  border-bottom: none;
}

.roi-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--navy);
}

.roi-table .highlight {
  color: var(--success);
  font-size: 18px;
}

.roi-note {
  margin-top: 20px;
  color: var(--navy);
  text-align: center;
}

.roi-note strong {
  color: var(--orange);
}

/* =============================================
   INDUSTRIES
============================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 40px auto 0;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 16px;
  color: var(--white);
  transition: all 0.2s ease;
  cursor: pointer;
}

.industry-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.industry-card svg {
  color: var(--orange);
}

.industry-card span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.industries-note {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 32px;
}

/* =============================================
   FAQ
============================================= */
.faq-list {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--navy);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-600);
}

/* =============================================
   CONTACT FORM
============================================= */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
}

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

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 18px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  color: var(--gray-800);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,54,93,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231B365D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.sms-consent-group {
  margin-top: 8px;
}

.sms-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.sms-consent-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--navy);
}

.sms-consent-text {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.sms-consent-text a {
  color: var(--navy);
  text-decoration: underline;
}

.ghl-form-wrapper {
  width: 100%;
  min-height: 627px;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 16px;
}

.form-success {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-600);
}

.contact-form.hidden {
  display: none;
}

/* =============================================
   DEMO SECTION
============================================= */
.demo-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 48px;
  text-align: left;
}

.demo-phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.demo-trigger-btn {
  font-size: 15px;
  padding: 12px 28px;
  min-height: 44px;
}

.phone-shell {
  width: 272px;
  background: #1c1c1e;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.phone-notch {
  width: 96px;
  height: 20px;
  background: #1c1c1e;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 4px;
}

.phone-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 490px;
}

.sms-header {
  background: #f2f2f7;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #e0e0e5;
  text-align: center;
}

.sms-contact {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #1c1c1e;
}

.sms-sub {
  font-size: 13px;
  color: #8e8e93;
  margin-top: 2px;
}

.sms-body {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 400px;
}

.sms-idle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: #8e8e93;
  padding: 16px;
  font-family: var(--font-body);
}

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

.sms-missed span {
  display: inline-block;
  background: #fff0f0;
  color: #dc2626;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #fecaca;
  font-family: var(--font-body);
}

.sms-bubble {
  display: flex;
}

.sms-bubble.out { justify-content: flex-end; }
.sms-bubble.in  { justify-content: flex-start; }

.bubble-inner {
  max-width: 80%;
}

.bubble-text {
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  font-family: var(--font-body);
}

.sms-bubble.out .bubble-text {
  background: #007aff;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.sms-bubble.in .bubble-text {
  background: #e9e9eb;
  color: #1c1c1e;
  border-bottom-left-radius: 4px;
}

.bubble-time {
  font-size: 12px;
  color: #8e8e93;
  margin-top: 3px;
  font-family: var(--font-body);
}

.sms-bubble.out .bubble-time { text-align: right; }

.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 8px 12px;
  background: #007aff;
  border-radius: 18px;
  border-bottom-right-radius: 4px;
  width: fit-content;
  margin-left: auto;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
}

/* Demo Explainer */
.demo-explainer {
  flex: 1;
  min-width: 260px;
  max-width: 460px;
}

.demo-explainer h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.demo-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.demo-step-num {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.demo-step strong {
  display: block;
  font-size: 16px;
  color: var(--gray-800);
  margin-bottom: 3px;
}

.demo-step p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

.demo-stat-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.demo-stat-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.demo-stat-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

.demo-stat-box strong { color: #fff; }

/* =============================================
   PRICING TIERS
============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.pricing-tier {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.pricing-tier.tier-popular {
  background: var(--navy);
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255,107,0,0.2);
  transform: scale(1.02);
}

.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.tier-popular .tier-name { color: var(--white); }

.tier-desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

.tier-popular .tier-desc { color: rgba(255,255,255,0.65); }

.tier-price {
  margin-bottom: 4px;
}

.tier-amount {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
}

.tier-popular .tier-amount { color: var(--orange); }

.tier-per {
  font-size: 16px;
  color: var(--gray-600);
  margin-left: 4px;
}

.tier-popular .tier-per { color: rgba(255,255,255,0.6); }

.tier-roi {
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.tier-popular .tier-roi {
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  border-color: rgba(74,222,128,0.25);
}

.tier-setup {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.tier-popular .tier-setup { color: rgba(255,255,255,0.4); }

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.4;
}

.tier-popular .tier-features li { color: rgba(255,255,255,0.85); }

.tier-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-popular .tier-features li::before { color: var(--orange); }

.btn-tier {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.btn-tier:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-tier-primary {
  background: var(--orange);
}

/* =============================================
   METRICS + TESTIMONIALS
============================================= */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 48px;
}

@media (min-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
}

.metric-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.metric-icon { font-size: 24px; margin-bottom: 8px; }

.metric-val {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.metric-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
}

.stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 20px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255,107,0,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

.author-company {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--black);
  padding: 48px 0 24px;
}

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

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand .logo {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 4px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   RESPONSIVE IMPROVEMENTS
============================================= */

/* Reduce section padding on mobile */
@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }
  .hero {
    padding: 90px 0 52px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }
  .hero {
    padding: 80px 0 44px;
  }
}

/* Center hero-sub on mobile */
@media (max-width: 899px) {
  .hero-sub {
    margin: 0 auto 32px;
  }
}

/* Wider FAQ list on large screens */
@media (min-width: 900px) {
  .faq-list {
    max-width: 720px;
  }
}

/* Pricing grid — improve spacing on tablet */
@media (min-width: 768px) and (max-width: 960px) {
  .pricing-tier {
    padding: 22px 18px;
  }
  .tier-amount {
    font-size: 30px;
  }
}

/* ROI table — stack trade labels on small mobile */
@media (max-width: 480px) {
  .roi-table td {
    font-size: 14px;
    padding: 10px 0;
  }
}
