/* ============================================================
   AML-READY | Main Stylesheet
   ============================================================ */

/* ── 1. FONT IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ── 2. CSS VARIABLES ── */
:root {
  --navy: #0A192F;
  --navy-light: #112B50;
  --teal: #0D7377;
  --teal-light: #14A4AA;
  --teal-pale: #F0FDFD;
  --gold: #C9A84C;
  --gold-hover: #DDBB5D;
  --gold-light: #FBF8F0;
  --bg-page: #FAFAFB;
  --bg-card: #FFFFFF;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --font-main: 'DM Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 4px rgba(10, 25, 47, 0.04), 0 1px 2px rgba(10, 25, 47, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(10, 25, 47, 0.06), 0 4px 6px -4px rgba(10, 25, 47, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(10, 25, 47, 0.08), 0 8px 10px -6px rgba(10, 25, 47, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
}

/* ── 3. RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--teal-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
  color: var(--gold);
}

/* ── 4. HEADER & NAV ── */
.site-header {
  background: var(--bg-card);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-brand img {
  height: 44px;
}

.header-tagline {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 16px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--gold);
}

/* ── 5. HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  margin: 3px 0;
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ── 6. ALERT BANNER ── */
.alert-banner {
  background-color: var(--gold-light);
  border-bottom: 1px solid #EBE1C5;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #7B6015;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

a.alert-banner:hover {
  background-color: #F5EDD8;
  color: #5C460A;
}

.alert-banner strong {
  color: #5C460A;
}

.alert-banner a {
  color: #5C460A;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── 7. HERO SECTIONS ── */
.hero,
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 96px 40px 80px;
}

.page-hero {
  padding: 64px 40px 56px;
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(13, 115, 119, 0.15), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  z-index: 1;
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.page-hero p {
  font-size: 1.1rem;
  color: #CBD5E1;
  max-width: 640px;
  margin: 0 auto;
}

.deadline-pill {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

/* ── 8. LAYOUT ── */
.main-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
}

.main-container.narrow {
  max-width: 780px;
}

.section-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-heading.left {
  text-align: left;
}

.section-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.body-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-main);
  max-width: 700px;
}

.body-text-muted {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── 9. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 115, 119, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.25);
}

.btn-login {
  background: var(--teal);
  color: #fff !important;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  margin-left: 12px;
}

.btn-full {
  width: 100%;
}

/* ── 10. INDUSTRY CARDS ── */
.industry-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 115, 119, 0.2);
}

.industry-card h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.industry-card p {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 32px;
}

.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}

.card-badge.live {
  background: #DCFCE7;
  color: #166534;
}

.card-badge.waitlist {
  background: var(--gold-light);
  color: #854D0E;
  border: 1px solid #EBE1C5;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-links {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── 11. ROADMAP ── */
.roadmap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

.roadmap-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  flex: 1 1 120px;
  max-width: 140px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.roadmap-step .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.roadmap-step .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
}

.roadmap-step.highlight {
  border: 2px solid var(--teal);
  background: var(--teal-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.roadmap-step.highlight .num,
.roadmap-step.highlight .label {
  color: var(--navy);
}

/* ── 12. PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card.featured {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-header {
  padding: 40px 32px 32px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing-card.featured .pricing-header {
  background: var(--navy);
  color: #fff;
  border-bottom: none;
}

.pricing-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-label {
  color: var(--gold);
}

.pricing-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-name {
  color: #fff;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-price {
  color: var(--gold);
}

.pricing-price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card.featured .pricing-price-note {
  color: #94A3B8;
}

.pricing-body {
  padding: 40px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.feature-list li {
  font-size: 0.95rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .check {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-list .cross {
  color: #CBD5E1;
  font-size: 1.1rem;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* ── 13. TIMELINE ── */
.timeline {
  max-width: 640px;
  margin: 0 auto 80px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light), rgba(13, 115, 119, 0.15));
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 0 0 40px 0;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(10, 25, 47, 0.18);
  border: 3px solid var(--bg-page);
}

.timeline-item:last-child .timeline-num {
  background: var(--teal);
  color: #fff;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  flex-grow: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-top: 8px;
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 115, 119, 0.25);
  transform: translateX(4px);
}

.timeline-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 14. FORMS ── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.form-header {
  margin-bottom: 40px;
  text-align: center;
}

.form-header-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.form-header h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.form-header p {
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-main);
  background: var(--bg-page);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px var(--teal-pale);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-error {
  display: none;
  font-size: 0.95rem;
  color: #DC2626;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* ── 15. INFO & WARNING BOXES ── */
.info-box,
.warning-box {
  border-radius: var(--radius-md);
  padding: 24px 32px;
  font-size: 1rem;
  margin-bottom: 48px;
  font-weight: 500;
}

.info-box {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  color: var(--navy);
}

.warning-box {
  background: #FFFBEB;
  border-left: 4px solid var(--gold);
  color: #78350F;
}

/* ── 16. BUNDLE ORDER ── */
.bundle-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.bundle-summary {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #fff;
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.bundle-summary-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.bundle-summary h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.summary-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
  font-size: 0.95rem;
  color: #94A3B8;
}

.summary-price-row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.summary-price-row .amount {
  font-weight: 700;
  color: #fff;
}

.summary-total {
  text-align: center;
  margin-bottom: 24px;
}

.summary-total-label {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 4px;
}

.summary-total-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.summary-total-note {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 6px;
}

.summary-includes {
  list-style: none;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.summary-includes li {
  font-size: 0.88rem;
  color: #CBD5E1;
  padding: 6px 0;
  display: flex;
  gap: 10px;
}

.summary-includes .check {
  color: var(--teal-light);
  font-weight: 700;
}

.price-display {
  display: none;
  background: var(--teal-pale);
  border: 1px solid rgba(13, 115, 119, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 1.05rem;
}

/* ── 17. ABOUT PAGE ── */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.about-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.about-feature-card .card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-feature-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.about-feature-card p {
  color: var(--text-muted);
}

.brand-callout {
  text-align: center;
  margin-top: 64px;
  padding: 40px;
  background: var(--gold-light);
  border-radius: var(--radius-lg);
}

.brand-callout .brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.brand-callout .brand-tagline {
  font-size: 1.1rem;
  color: var(--navy);
}

/* ── 18. FAQ PAGE ── */
.quick-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.quick-action-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.quick-action-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.quick-action-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.faq-list {
  margin-bottom: 48px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-content p+p {
  margin-top: 12px;
}

.support-box {
  background: var(--teal-pale);
  border: 1px solid rgba(13, 115, 119, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}

.support-box h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.support-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── 19. THANK YOU PAGE ── */
.thankyou-wrapper {
  text-align: center;
}

.thankyou-wrapper .icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.thankyou-wrapper h1 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.thankyou-wrapper .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.next-steps-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.next-steps-box h3 {
  color: var(--navy);
  margin-bottom: 28px;
  font-size: 1.2rem;
}

.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.next-step-item:last-child {
  border-bottom: none;
}

.next-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.next-step-text {
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 6px;
}

/* ── 20. FOOTER ── */
.site-footer {
  background: var(--navy);
  color: #94A3B8;
  font-size: 0.95rem;
  padding: 64px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #94A3B8;
  font-weight: 500;
}

.site-footer a:hover {
  color: #fff;
}

.footer-disclaimer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.6;
}

.footer-disclaimer a {
  color: #64748B;
  font-weight: 400;
}

.footer-disclaimer a:hover {
  color: #94A3B8;
}

/* ── 21. HERO CTA BUTTONS ── */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ── 22. PRICING TEASER (index.html) ── */
.pricing-teaser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: -28px auto 64px;
  max-width: 760px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.teaser-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  gap: 6px;
  transition: var(--transition);
}

.teaser-item:hover {
  background: var(--bg-page);
}

.teaser-item.featured {
  background: var(--navy);
}

.teaser-item.featured:hover {
  background: var(--navy-light);
}

.teaser-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 24px 0;
}

.teaser-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 4px;
}

.teaser-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.teaser-item.featured .teaser-label {
  color: #94A3B8;
}

.teaser-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.teaser-item.featured .teaser-price {
  color: var(--gold);
}

.teaser-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.teaser-item.featured .teaser-note {
  color: #64748B;
}

/* ── 23. JUMP-TO-PRICING LINK ── */
.jump-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: 16px;
  text-decoration: none;
  transition: var(--transition);
}

.jump-link:hover {
  color: var(--teal-light);
  gap: 10px;
}

/* ── 24. STICKY BUY BAR ── */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(10, 25, 47, 0.25);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-buy-bar.visible {
  transform: translateY(0);
}

.sticky-buy-bar.hidden {
  transform: translateY(100%);
}

.sticky-bar-label {
  font-size: 0.9rem;
  color: #94A3B8;
  font-weight: 500;
  white-space: nowrap;
}

.sticky-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-bar-price {
  font-size: 0.85rem;
  color: #CBD5E1;
  font-weight: 500;
  white-space: nowrap;
}

.sticky-dismiss {
  background: none;
  border: none;
  color: #64748B;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px;
  margin-left: 8px;
  transition: color 0.2s;
}

.sticky-dismiss:hover {
  color: #94A3B8;
}

/* ── 25. RESPONSIVE ── */
@media (max-width: 900px) {
  .bundle-layout {
    grid-template-columns: 1fr;
  }

  .bundle-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    padding: 0 24px;
  }

  .header-tagline {
    display: none;
  }

  .pricing-teaser {
    flex-direction: column;
    margin: -20px 24px 48px;
  }

  .teaser-divider {
    width: auto;
    height: 1px;
    margin: 0 24px;
  }

  .sticky-buy-bar {
    padding: 12px 20px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .sticky-bar-label {
    display: none;
  }

  .sticky-bar-actions {
    justify-content: center;
    width: 100%;
  }

  /* Mobile nav dropdown */
  .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    box-shadow: 0 10px 15px rgba(10, 25, 47, 0.08);
    gap: 8px;
    align-items: stretch;
    z-index: 1050;
  }

  .header-nav.mobile-open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-link {
    padding: 14px 20px;
    font-size: 1.05rem;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .btn-login {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 64px 24px 56px;
  }

  .page-hero {
    padding: 48px 24px 40px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .alert-banner {
    padding: 12px 24px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .main-container {
    padding: 56px 24px;
  }

  .industry-cards,
  .pricing-grid,
  .quick-action-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
    border-width: 1px;
  }

  .form-card {
    padding: 40px 24px;
  }

  .timeline::before {
    left: 28px;
  }

  .timeline-num {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }

  .timeline-content {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-disclaimer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .roadmap-step {
    max-width: none;
    flex: 1 1 100%;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }
}