/* ============================================================
   AIReady Australia — style.css
   Dark navy (#0A0E1A) · Electric blue (#00D4FF) · White text
   Clean SaaS layout · Mobile-first · No external dependencies
   ============================================================ */

/* ---- RESET & BASE ---- */

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

:root {
  --navy:        #0A0E1A;
  --navy-mid:    #111827;
  --navy-light:  #1A2235;
  --navy-card:   #141B2D;
  --blue:        #00D4FF;
  --blue-dim:    #00B8DD;
  --blue-glow:   rgba(0, 212, 255, 0.15);
  --blue-glow-strong: rgba(0, 212, 255, 0.3);
  --white:       #FFFFFF;
  --text-primary:   #E8EAED;
  --text-secondary: #9AA5B4;
  --text-muted:     #637080;
  --border:      rgba(255, 255, 255, 0.08);
  --border-blue: rgba(0, 212, 255, 0.25);
  --success:     #22C55E;
  --danger:      #EF4444;

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.15);

  --transition: 200ms ease;
  --transition-slow: 400ms ease;

  --max-width: 1180px;
  --section-pad: 100px;
  --section-pad-sm: 64px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--navy);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

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

img, svg { display: block; }

ul { list-style: none; }

/* ---- CONTAINERS ---- */

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

/* ---- TYPOGRAPHY ---- */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.break-lg { display: none; }
@media (min-width: 900px) { .break-lg { display: block; } }

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--blue);
  color: var(--navy);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #33DDFF;
  border-color: #33DDFF;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--navy-light);
  border-color: var(--blue);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--border-blue);
}
.btn-outline:hover {
  background: var(--blue-glow);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-xl  { padding: 20px 48px; font-size: 1.15rem; border-radius: var(--radius-md); }
.btn-block { width: 100%; margin-top: auto; }

/* ---- SECTION SHARED ---- */

.section {
  padding: var(--section-pad) 0;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--white); }

.logo-mark {
  background: var(--blue);
  color: var(--navy);
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-link:hover { color: var(--white); background: var(--navy-light); }

.nav-cta {
  background: var(--blue);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 8px 18px;
}
.nav-cta:hover {
  background: #33DDFF;
  color: var(--navy) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 68px 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    border-top: 1px solid var(--border);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-link {
    font-size: 1rem;
    padding: 14px 16px;
  }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--blue-glow);
  border: 1px solid var(--border-blue);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  gap: 0;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}

.proof-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.proof-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero { padding: 80px 0 64px; }
  .hero-proof { flex-direction: column; padding: 24px; gap: 20px; }
  .proof-item { padding: 0; }
  .proof-divider { width: 80px; height: 1px; }
}

/* ============================================================
   PROBLEM
   ============================================================ */

.problem-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.problem-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
}

.problem-icon {
  color: var(--blue);
  margin-bottom: 20px;
}

.problem-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.problem-card-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 680px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SOLUTION
   ============================================================ */

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

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.solution-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.solution-text .btn { margin-top: 12px; }

.solution-outcomes {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.outcomes-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.outcomes-list { display: flex; flex-direction: column; gap: 16px; }

.outcomes-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.outcomes-check {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.industries-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.industries-note strong { color: var(--text-primary); }

@media (max-width: 840px) {
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.hiw-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step-card {
  flex: 1;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: border-color var(--transition);
}
.step-card:hover { border-color: var(--border-blue); }

.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-blue), var(--border-blue));
  align-self: center;
  flex-shrink: 0;
  position: relative;
  margin-top: -60px;
}
.step-connector::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.step-icon {
  color: var(--blue);
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}

.step-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .steps-grid { flex-direction: column; }
  .step-connector {
    width: 2px;
    height: 40px;
    align-self: center;
    margin-top: 0;
    background: linear-gradient(180deg, var(--border-blue), var(--border-blue));
  }
  .step-connector::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -16px;
    transform: translateX(50%);
  }
}

/* ============================================================
   DELIVERABLES
   ============================================================ */

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

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

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: border-color var(--transition);
}
.deliverable-item:hover { border-color: var(--border-blue); }
.deliverable-item strong { color: var(--white); }

.deliverable-check {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .deliverables-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.pricing-card:hover { border-color: var(--border-blue); transform: translateY(-4px); }

.pricing-card--featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, rgba(0, 212, 255, 0.06) 0%, var(--navy-card) 60%);
  box-shadow: var(--shadow-glow);
}
.pricing-card--featured:hover { border-color: #33DDFF; }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-tier {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 16px;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-best-for {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.45;
}

.feature-check {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.feature-excluded {
  color: var(--text-muted) !important;
}

.feature-x {
  color: var(--text-muted);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-top: 48px;
}

.guarantee-icon { color: var(--success); flex-shrink: 0; }
.guarantee-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }
.guarantee-text strong { color: var(--white); }

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .pricing-guarantee { flex-direction: column; text-align: center; }
}

/* ============================================================
   ABOUT / TRUST
   ============================================================ */

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

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text .section-eyebrow { display: block; margin-bottom: 12px; }
.about-text .section-title { margin-bottom: 24px; }
.about-text p { color: var(--text-secondary); }

.about-summary {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--navy-card);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.97rem !important;
}
.about-summary strong { color: var(--white); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition);
}
.stat-card:hover { border-color: var(--border-blue); }

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

@media (max-width: 840px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--border-blue);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover { color: var(--blue); }

.faq-answer {
  padding: 0 28px 24px;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}

.cta-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-xl { margin-bottom: 28px; display: inline-flex; }

.cta-support {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.cta-email {
  color: var(--blue);
}
.cta-email:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--blue); }

.footer-legal {
  text-align: right;
}
.footer-legal p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-legal p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand { align-items: center; }
  .footer-legal { text-align: center; }
}

/* ============================================================
   UTILITIES
   ============================================================ */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background: rgba(0, 212, 255, 0.25);
  color: var(--white);
}

/* Scrollbar (webkit) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============================================================
   CREDIBILITY SECTION
   ============================================================ */

.credibility-section {
  background: var(--navy-dark, #060c18);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.credibility-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .credibility-inner {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
  }
}

.credibility-body {
  color: var(--text-muted, #94a3b8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 1.25rem;
}

.credibility-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cred-stat-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.cred-stat-tile:hover {
  background: rgba(0,212,255,0.06);
  border-color: rgba(0,212,255,0.25);
}

.cred-stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue, #00d4ff);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.cred-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted, #94a3b8);
  line-height: 1.4;
}

/* ============================================================
   ENTERPRISE WAITLIST NOTE
   ============================================================ */

.pricing-waitlist-note {
  font-size: 0.78rem;
  color: var(--text-muted, #94a3b8);
  text-align: center;
  margin-top: 0.65rem;
  font-style: italic;
  line-height: 1.5;
}

/* ============================================================
   WE RUN ON AI OURSELVES SECTION
   ============================================================ */

.ai-ops-section {
  background: #0a0f1a;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ai-ops-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.ai-ops-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.ai-ops-card:hover {
  background: rgba(0,212,255,0.05);
  border-color: rgba(0,212,255,0.22);
}

.ai-ops-icon {
  color: #00d4ff;
  margin-bottom: 1.1rem;
}

.ai-ops-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.ai-ops-card-body {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.75;
}

.ai-ops-callout {
  margin-top: 3rem;
  text-align: center;
}

.ai-ops-quote {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: #f1f5f9;
  border-left: 4px solid #00d4ff;
  padding: 1rem 1.75rem;
  background: rgba(0,212,255,0.06);
  border-radius: 0 12px 12px 0;
  max-width: 680px;
  text-align: left;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .ai-ops-quote {
    font-size: 1.05rem;
  }
}
