/* ============================================================
   Rentivo AI Solutions — Global Stylesheet
   Colors: Navy #1a2942 | Orange #ff6b35 | Light gray #f7f8fa
   Font: Inter (Google Fonts)
   ============================================================ */

:root {
  --navy: #1a2942;
  --navy-mid: #243b55;
  --navy-light: #2e4d6e;
  --orange: #ff6b35;
  --orange-dark: #e85d28;
  --orange-light: #ff8f65;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #d8dce6;
  --gray-400: #9aa3b4;
  --gray-600: #5a6478;
  --gray-800: #2d3446;
  --text: #1a2942;
  --text-muted: #5a6478;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────── */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

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

.display-xl { font-size: clamp(2.6rem, 5.5vw, 4.5rem); letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.025em; }
.display-md { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em; }
.text-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-muted); line-height: 1.7; }

/* ── Layout ──────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 14px 20px;
}
.btn-ghost:hover { color: var(--orange); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 41, 66, 0.25);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 41, 66, 0.35);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

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

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img { height: 36px; width: auto; }

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--gray-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(255,107,53,0.3);
}
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile.open { display: flex; }

.nav-mobile .nav-link {
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 10px;
}

.nav-mobile .nav-cta {
  margin-top: 12px;
  text-align: center;
  padding: 14px 20px;
}

/* Page offset for fixed nav */
.page-top { padding-top: 68px; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 55%, #1e3a5f 100%);
  color: var(--white);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 130%;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--orange-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .accent { color: var(--orange); }

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-trust-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.call-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.call-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

.call-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.call-card-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.call-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.status-live { color: #4ade80; }
.status-live::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

.call-card-title {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}

.call-card-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.call-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 14px;
}

.call-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  animation: progress 3s ease-in-out infinite alternate;
}

@keyframes progress {
  from { width: 30%; }
  to { width: 75%; }
}

.chat-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.chat-bubble.julie {
  border-left: 3px solid var(--orange);
}

.chat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.4);
}

.chat-label.orange { color: var(--orange); }

/* ── Social Proof Bar ────────────────────────────────── */
.social-proof {
  background: var(--gray-50);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
}

.social-proof-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

.proof-number span { color: var(--orange); }

.proof-desc {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 3px;
}

/* ── Pain Points ─────────────────────────────────────── */
.pain-points {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow {
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.pain-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gray-200);
  transition: background var(--transition);
}

.pain-card:hover { border-color: var(--gray-200); box-shadow: var(--shadow-md); }
.pain-card:hover::before { background: var(--orange); }

.pain-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── How It Works ────────────────────────────────────── */
.how-it-works {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,107,53,0.2));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* ── Features ────────────────────────────────────────── */
.features-section { background: var(--white); }

.features-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.feature-tile {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-tile:hover {
  border-color: rgba(255,107,53,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.feature-tile.wide { grid-column: span 7; }
.feature-tile.slim { grid-column: span 5; }
.feature-tile.half { grid-column: span 6; }
.feature-tile.third { grid-column: span 4; }

.feature-tile.dark {
  background: var(--navy);
  border-color: var(--navy-mid);
  color: var(--white);
}

.feature-tile.dark h3 { color: var(--white); }
.feature-tile.dark p { color: rgba(255,255,255,0.65); }

.feature-tile.orange {
  background: var(--orange);
  border-color: var(--orange-dark);
  color: var(--white);
}
.feature-tile.orange h3 { color: var(--white); }
.feature-tile.orange p { color: rgba(255,255,255,0.85); }

.tile-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: rgba(255,107,53,0.1);
}

.feature-tile.dark .tile-icon { background: rgba(255,255,255,0.1); }
.feature-tile.orange .tile-icon { background: rgba(255,255,255,0.2); }

.feature-tile h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-tile p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.feature-tag {
  background: rgba(255,107,53,0.1);
  color: var(--orange-dark);
  border: 1px solid rgba(255,107,53,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.feature-tile.dark .feature-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}

.feature-big-number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.feature-tile.dark .feature-big-number { color: var(--orange-light); }
.feature-tile.orange .feature-big-number { color: var(--white); }

/* ── Testimonials ────────────────────────────────────── */
.testimonials {
  background: var(--gray-50);
  padding: 96px 0;
}

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

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-title { font-size: 0.78rem; color: var(--gray-400); margin-top: 1px; }

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,107,53,0.12), transparent 60%);
}

.cta-section h2 { color: var(--white); position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.cta-section .btn-primary { position: relative; z-index: 1; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ── Features Detail Grid (features.html) ────────────── */
.features-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-detail-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.feature-detail-card:hover {
  border-color: rgba(255,107,53,0.2);
  box-shadow: var(--shadow-md);
}

.feature-detail-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(255,107,53,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.feature-detail-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-detail-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Demo Page ───────────────────────────────────────── */
.demo-hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.demo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255,107,53,0.15), transparent 60%);
}

.demo-hero h1 { color: var(--white); position: relative; z-index: 1; }
.demo-hero p { color: rgba(255,255,255,0.75); position: relative; z-index: 1; margin-top: 16px; }

.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 80px 0;
}

.demo-widget-wrapper {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}

.demo-widget-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.demo-widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.demo-widget-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.elevenlabs-widget {
  width: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendly-wrapper {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.calendly-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--gray-100);
}

.calendly-header h3 { font-size: 1.2rem; margin-bottom: 4px; }
.calendly-header p { font-size: 0.88rem; color: var(--text-muted); }

/* ── Contact Page ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(255,107,53,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.contact-item-label { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 2px; }
.contact-item-value { font-weight: 600; color: var(--navy); }

.contact-form {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group.full { grid-column: span 2; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,107,53,0.1), transparent 60%);
}

.page-hero .eyebrow { margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); position: relative; z-index: 1; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.72); position: relative; z-index: 1; font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}

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

.footer-brand .nav-logo-text {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.82rem; }

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

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Utilities ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 20px 0;
}

.divider-center { margin: 20px auto; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tag-orange { background: rgba(255,107,53,0.1); color: var(--orange-dark); }
.tag-navy { background: rgba(26,41,66,0.1); color: var(--navy); }

/* ── Animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-tile.wide, .feature-tile.slim { grid-column: span 12; }
  .feature-tile.half { grid-column: span 6; }
  .feature-tile.third { grid-column: span 4; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .demo-container { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .features-bento { grid-template-columns: 1fr; }
  .feature-tile.wide, .feature-tile.slim, .feature-tile.half, .feature-tile.third {
    grid-column: span 1;
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .contact-form { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
