/* ============================================================
   PALADEM Grow — HVAC Microsite Light Theme
   ============================================================ */

/* --- Design Tokens (same as main Grow site) --- */
:root {
  /* Official PALADEM Brand */
  --green: #2a7f50;
  --green-dark: #1e5e3b;
  --green-light: #34a065;
  --navy: #1b374d;
  --navy-light: #264b69;
  --orange: #ce5016;
  --orange-light: #e0672f;
  --orange-warm: #f4a261;
  --grey: #4e4e4e;

  /* Extended Palette */
  --mint: #e8f5ee;
  --mint-light: #f0faf4;
  --cream: #fefcf9;
  --bg-page: #fafbfc;
  --bg-white: #ffffff;
  --text-dark: #1b1b2f;
  --text-body: #3a3a4a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border-light: #e5e7eb;
  --border-subtle: #f0f1f3;

  /* HVAC Accent Colors */
  --red-alert: #e74c3c;
  --red-bg: #fef2f0;
  --blue-cool: #3b82f6;
  --blue-bg: #eff6ff;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(27, 55, 77, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 55, 77, 0.08);
  --shadow-lg: 0 8px 32px rgba(27, 55, 77, 0.1);
  --shadow-xl: 0 16px 48px rgba(27, 55, 77, 0.12);
  --shadow-glow: 0 0 40px rgba(42, 127, 80, 0.15);

  /* Spacing */
  --section-pad: 7rem;
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

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

/* --- Utilities --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(206, 80, 22, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(206, 80, 22, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--mint-light);
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(42, 127, 80, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 127, 80, 0.4);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo img {
  width: 400px;
  height: 98px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

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

.nav-links .btn-primary {
  color: #ffffff !important;
}

.nav-links .btn-primary:hover {
  color: #ffffff !important;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background: var(--bg-white);
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(42, 127, 80, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(206, 80, 22, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,1) 0%, var(--bg-page) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--mint);
  border: 1px solid rgba(42, 127, 80, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 .green-underline {
  position: relative;
  color: var(--green);
}

.hero h1 .green-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(42, 127, 80, 0.15);
  border-radius: 3px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ============================================================
   HVAC DISPATCH DASHBOARD MOCKUP
   ============================================================ */
.dispatch-preview {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.dispatch-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  padding: 1.75rem;
  position: relative;
}

.dispatch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.dispatch-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.dispatch-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background: var(--mint);
  color: var(--green);
  border-radius: 6px;
}

/* Dispatch ticket rows */
.dispatch-tickets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.dispatch-ticket {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.75rem;
  background: var(--bg-page);
  border-radius: 10px;
  font-size: 0.78rem;
  border-left: 3px solid var(--green);
  transition: all 0.3s var(--ease-out);
}

.dispatch-ticket:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}

.dispatch-ticket.urgent {
  border-left-color: var(--red-alert);
  background: var(--red-bg);
}

.dispatch-ticket.scheduled {
  border-left-color: var(--blue-cool);
  background: var(--blue-bg);
}

.dispatch-ticket.completed {
  border-left-color: var(--green-light);
}

.ticket-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ticket-status-dot.urgent { background: var(--red-alert); animation: pulse-dot 1.5s ease-in-out infinite; }
.ticket-status-dot.scheduled { background: var(--blue-cool); }
.ticket-status-dot.active { background: var(--green); animation: pulse-dot 2s ease-in-out infinite; }
.ticket-status-dot.completed { background: var(--green-light); }

.ticket-info {
  flex: 1;
  min-width: 0;
}

.ticket-info strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticket-info span {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.ticket-tech {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-white);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* Calls captured stat */
.dispatch-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--mint);
  border-radius: 10px;
}

.dispatch-stat-label {
  font-size: 0.75rem;
  color: var(--green-dark);
  font-weight: 600;
}

.dispatch-stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
}

/* Floating notification cards */
.float-card {
  position: absolute;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.float-card-icon.green { background: var(--mint); }
.float-card-icon.orange { background: #fef0e6; }
.float-card-icon.red { background: var(--red-bg); }

.float-card-text strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
}

.float-card-text span {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.float-card-1 {
  top: -15px;
  right: -25px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 30px;
  left: -55px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   PAIN POINTS SECTION
   ============================================================ */
.pain-section {
  padding: var(--section-pad) 0;
  background: var(--bg-page);
}

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

.pain-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--red-alert));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

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

.pain-card:hover::before {
  opacity: 1;
}

.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  background: var(--red-bg);
  transition: transform 0.3s var(--ease-spring);
}

.pain-card:hover .pain-icon {
  transform: scale(1.08);
}

.pain-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

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

/* ============================================================
   FEATURES GRID SECTION
   ============================================================ */
.features-section {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s var(--ease-spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
}

.feature-icon.green-bg { background: var(--mint); color: var(--green); }
.feature-icon.orange-bg { background: #fef0e6; color: var(--orange); }
.feature-icon.navy-bg { background: #e8edf2; color: var(--navy); }

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

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

/* ============================================================
   AI AGENTS SECTION
   ============================================================ */
.ai-section {
  padding: var(--section-pad) 0;
  background: var(--bg-page);
}

.ai-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.ai-feature:last-child {
  margin-bottom: 0;
}

.ai-feature.reverse {
  direction: rtl;
}

.ai-feature.reverse > * {
  direction: ltr;
}

.ai-text .ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.ai-text h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ai-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ai-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.ai-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-body);
}

.ai-benefits li .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-benefits li .check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--green);
}

/* AI Visual Card */
.ai-visual {
  position: relative;
}

.ai-visual-card {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--mint) 100%);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-visual-card.orange-theme {
  background: linear-gradient(135deg, #fef8f3 0%, #fef0e6 100%);
}

.ai-visual-card.navy-theme {
  background: linear-gradient(135deg, #f0f3f7 0%, #e3e8ef 100%);
}

/* Conversation mockup */
.convo-mockup {
  width: 100%;
  max-width: 320px;
}

.convo-bubble {
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  max-width: 90%;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  animation: bubbleIn 0.5s var(--ease-out) forwards;
}

.convo-bubble.incoming {
  background: var(--bg-white);
  color: var(--text-body);
  border: 1px solid var(--border-light);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.convo-bubble.outgoing {
  background: var(--green);
  color: #ffffff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.convo-bubble:nth-child(1) { animation-delay: 0.3s; }
.convo-bubble:nth-child(2) { animation-delay: 1.2s; }
.convo-bubble:nth-child(3) { animation-delay: 2.1s; }
.convo-bubble:nth-child(4) { animation-delay: 3s; }
.convo-bubble:nth-child(5) { animation-delay: 3.9s; }

@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Follow-up timeline mockup */
.followup-mockup {
  width: 100%;
}

.followup-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0;
  position: relative;
}

.followup-step:last-child .followup-connector {
  display: none;
}

.followup-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.followup-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--green);
  position: relative;
  z-index: 1;
}

.followup-dot.orange { background: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.followup-dot.navy { background: var(--navy); box-shadow: 0 0 0 2px var(--navy); }

.followup-connector {
  width: 2px;
  height: 32px;
  background: var(--border-light);
}

.followup-content {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-sm);
  flex: 1;
  margin-bottom: 0.5rem;
}

.followup-content strong {
  display: block;
  font-size: 0.78rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.followup-content span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Reactivation mockup */
.reactivation-mockup {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reactivation-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
}

.reactivation-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: var(--mint);
}

.reactivation-icon.orange { background: #fef0e6; }
.reactivation-icon.blue { background: var(--blue-bg); }

.reactivation-info {
  flex: 1;
}

.reactivation-info strong {
  display: block;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
}

.reactivation-info span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.reactivation-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.reactivation-badge.green {
  background: var(--mint);
  color: var(--green);
}

.reactivation-badge.orange {
  background: #fef0e6;
  color: var(--orange);
}

/* ============================================================
   USE CASES / INDUSTRY SECTION
   ============================================================ */
.usecase-section {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.usecase-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.25rem;
  text-align: center;
  transition: all 0.35s var(--ease-out);
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.usecase-card .usecase-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.usecase-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

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

/* ============================================================
   PRICING TEASER SECTION
   ============================================================ */
.pricing-teaser {
  padding: var(--section-pad) 0;
  background: var(--mint-light);
}

.pricing-teaser-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pricing-teaser-inner .section-subtitle {
  max-width: 720px;
}

.pricing-teaser-paragraph {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
}

.pricing-teaser-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s var(--ease-out);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  transition: transform 0.3s var(--ease-out);
}

.faq-item.active .faq-icon {
  background: var(--green);
}

.faq-item.active .faq-icon svg {
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer-inner a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer-inner a:hover {
  color: var(--green-dark);
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42, 127, 80, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-section .section-title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-phone {
  margin-top: 1rem;
}

.cta-phone a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  transition: color 0.3s var(--ease-out);
}

.cta-phone a:hover {
  color: var(--orange-warm);
}

.cta-phone a svg {
  width: 22px;
  height: 22px;
}

.cta-phone-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 3rem 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 200px;
  height: auto;
  opacity: 0.85;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .hero-inner { gap: 3rem; }
  .ai-feature { gap: 3rem; }
  .section-title { font-size: 2.25rem; }

  .header-logo img { width: 300px; height: auto; }
  .footer-brand img { width: 180px; height: auto; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; }

  .hero-cta {
    justify-content: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .dispatch-preview { max-width: 420px; }

  .float-card-1 { right: -10px; }
  .float-card-2 { left: -10px; }

  .pain-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ai-feature.reverse {
    direction: ltr;
  }

  .usecase-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .header-logo img { width: 240px; height: auto; }
  .footer-brand img { width: 160px; height: auto; }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 4.5rem;
  }

  .container { padding: 0 1.25rem; }

  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-description { font-size: 1rem; }

  .section-title { font-size: 1.85rem; }
  .section-subtitle { font-size: 1rem; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    gap: 0.75rem;
  }

  .nav-toggle { display: flex; }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .float-card { display: none; }

  .ai-visual-card { padding: 1.75rem; min-height: 280px; }

  .pricing-teaser-paragraph { font-size: 1rem; }

  .header-logo img { width: 180px; height: auto; }
  .footer-brand img { width: 140px; height: auto; }
}
