/* =====================================================
   Motiv8 Consulting — Global Stylesheet
   White background · Navy/Teal brand palette · Hex motif
   ===================================================== */

:root {
  /* Brand */
  --navy-900: #0E2A3A;
  --navy-800: #14384B;
  --navy-700: #1B4D5F;
  --teal-700: #1B7A8C;
  --teal-500: #2BB3C0;
  --teal-300: #7BD3DC;
  --teal-50:  #E8F4F6;
  --teal-25:  #F4FAFB;

  /* Neutrals */
  --white: #FFFFFF;
  --ink:   #0E2A3A;
  --ink-2: #2C4858;
  --slate: #5C7A8A;
  --line:  #DCE7EB;
  --bg:    #FFFFFF;
  --bg-alt:#F7FBFC;

  /* Functional */
  --success: #16A34A;
  --warning: #D97706;
  --danger:  #DC2626;
  --shadow-sm: 0 1px 2px rgba(14,42,58,.06), 0 1px 3px rgba(14,42,58,.05);
  --shadow:    0 4px 12px rgba(14,42,58,.08), 0 2px 4px rgba(14,42,58,.04);
  --shadow-lg: 0 16px 40px rgba(14,42,58,.10), 0 4px 12px rgba(14,42,58,.06);

  /* Type */
  --font-heading: 'Space Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-label: 'Rajdhani', system-ui, sans-serif;

  /* Layout */
  --max: 1200px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy-900); }

/* Typography */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--ink); line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--ink-2); }
.label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  font-size: .82rem;
  color: var(--teal-700);
  margin-bottom: 12px;
}

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy-900); color: #E8F4F6; }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: #FFFFFF; }
.section-navy p { color: #B7CDD6; }
.section-navy .label { color: var(--teal-300); }

.section-header { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-header p { color: var(--slate); margin-top: 14px; font-size: 1.05rem; }

.divider { height: 1px; background: linear-gradient(to right, transparent, var(--line), transparent); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px;
  font-family: var(--font-heading); font-weight: 600; font-size: .98rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer; transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(43,179,192,.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(43,179,192,.40); color: #FFFFFF; }
.btn-navy { background: var(--navy-900); color: #FFFFFF; }
.btn-navy:hover { background: var(--navy-700); color: #FFFFFF; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy-900); border-color: var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: #FFFFFF; }
.btn-ghost { background: var(--teal-50); color: var(--navy-900); }
.btn-ghost:hover { background: var(--teal-300); color: var(--navy-900); }
.btn-sm { padding: 9px 18px; font-size: .88rem; }
.btn-block { width: 100%; }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex; gap: 4px; list-style: none; align-items: center;
}
.nav-links a {
  display: inline-block; padding: 10px 16px;
  font-family: var(--font-heading); font-weight: 500; font-size: .95rem;
  color: var(--navy-900); border-radius: 8px;
  transition: all .2s ease;
}
.nav-links a:hover { background: var(--teal-50); color: var(--teal-700); }
.nav-links a.active { color: var(--teal-700); }
.nav-links li.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #FFFFFF; border: 1px solid var(--line); border-radius: 14px;
  padding: 10px; min-width: 260px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
  list-style: none;
}
.nav-dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: .92rem; color: var(--navy-900); font-weight: 500;
}
.nav-dropdown a:hover { background: var(--teal-50); color: var(--teal-700); }
.nav-dropdown small {
  display: block; color: var(--slate); font-weight: 400; font-size: .78rem; margin-top: 2px;
}
.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: all .25s ease; }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: #FFFFFF; border-bottom: 1px solid var(--line);
    padding: 16px; gap: 4px;
  }
  .nav-mobile-open .nav-cta { display: inline-flex; margin: 12px 16px; }
  .nav-mobile-open .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 16px; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--teal-25) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(43,179,192,.08), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(14,42,58,.06), transparent 45%);
  pointer-events: none;
}
.hex-pattern {
  position: absolute; inset: 0; opacity: .25; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 52'><polygon points='30,2 56,16 56,40 30,54 4,40 4,16' fill='none' stroke='%231B7A8C' stroke-width='1' opacity='.35'/></svg>");
  background-size: 80px 70px;
}
.hero-content { position: relative; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--teal-50); color: var(--teal-700);
  font-family: var(--font-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  border: 1px solid var(--teal-300);
  margin-bottom: 22px;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(43,179,192,.18); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:.7} }

.hero h1 { color: var(--navy-900); margin-bottom: 22px; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--teal-700), var(--teal-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.15rem; color: var(--ink-2); margin-bottom: 32px; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.stat-num { font-family: var(--font-heading); font-weight: 700; font-size: 2rem; color: var(--navy-900); }
.stat-label { font-size: .85rem; color: var(--slate); margin-top: 4px; }
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Cards */
.card {
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-300); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-25));
  color: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
  border: 1px solid var(--teal-300);
}
.card h3, .card h4 { color: var(--navy-900); margin-bottom: 8px; }
.card p { color: var(--slate); font-size: .94rem; }

/* Service pillar cards (home/services) */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: all .3s ease;
}
.pillar::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-700), var(--teal-500));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-300); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-num { font-family: var(--font-heading); font-weight: 700; font-size: 3rem; color: var(--teal-50); line-height: 1; margin-bottom: 8px; }
.pillar h3 { color: var(--navy-900); margin-bottom: 12px; }
.pillar p { color: var(--ink-2); margin-bottom: 22px; font-size: .95rem; }
.pillar ul { list-style: none; margin-bottom: 24px; }
.pillar ul li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 6px 0; color: var(--ink-2); font-size: .92rem;
}
.pillar ul li i { color: var(--teal-500); margin-top: 4px; flex-shrink: 0; }

/* Feature checks */
.feature-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal-50); color: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; flex-shrink: 0;
}

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }
.price-card {
  background: #FFFFFF; border: 1.5px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative; transition: all .3s ease;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.popular {
  border-color: var(--teal-500);
  box-shadow: 0 12px 32px rgba(43,179,192,.18);
  transform: scale(1.02);
}
.price-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: #FFFFFF; font-family: var(--font-label);
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 600;
  padding: 6px 16px; border-radius: 999px;
}
.price-tier {
  font-family: var(--font-label); text-transform: uppercase;
  letter-spacing: .16em; font-weight: 600; color: var(--teal-700);
  font-size: .82rem; margin-bottom: 8px;
}
.price-name { font-family: var(--font-heading); font-weight: 700; color: var(--navy-900); font-size: 1.5rem; margin-bottom: 4px; }
.price-tag { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 8px; }
.price-amt { font-family: var(--font-heading); font-weight: 700; color: var(--navy-900); font-size: 2.6rem; line-height: 1; }
.price-cycle { color: var(--slate); font-size: .95rem; }
.price-tagline { color: var(--ink-2); margin-bottom: 22px; font-size: .94rem; }
.price-features { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.price-features li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
  color: var(--ink-2); font-size: .92rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features i { color: var(--teal-500); margin-top: 4px; flex-shrink: 0; }
.price-features li.muted { color: var(--slate); opacity: .55; }
.price-features li.muted i { color: var(--slate); }

/* How it works (3-step) */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; text-align: center;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: #FFFFFF; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(43,179,192,.30);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .94rem; }

/* AI service "demo" cards */
.ai-demo-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
@media (max-width: 900px) { .ai-demo-grid { grid-template-columns: 1fr; } }
.ai-demo {
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 0; overflow: hidden;
  transition: all .3s ease;
  display: grid; grid-template-columns: 1.1fr 1fr;
  min-height: 220px;
}
@media (max-width: 700px) { .ai-demo { grid-template-columns: 1fr; } }
.ai-demo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-300); }
.ai-demo-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.ai-demo-body h3 { color: var(--navy-900); margin-bottom: 8px; font-size: 1.2rem; }
.ai-demo-body p { color: var(--slate); font-size: .92rem; margin-bottom: 14px; }
.ai-demo-body ul { list-style: none; }
.ai-demo-body ul li {
  font-size: .85rem; color: var(--ink-2);
  padding: 4px 0 4px 18px; position: relative;
}
.ai-demo-body ul li::before {
  content: "▸"; color: var(--teal-500); position: absolute; left: 0;
}
.ai-demo-visual {
  background: linear-gradient(135deg, var(--teal-25), var(--teal-50));
  position: relative; padding: 24px;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--line);
}
@media (max-width: 700px) { .ai-demo-visual { border-left: none; border-top: 1px solid var(--line); min-height: 200px; } }

/* Phone mockup */
.phone-mock {
  width: 160px; height: 280px;
  background: var(--navy-900); border-radius: 22px;
  padding: 8px; box-shadow: var(--shadow-lg);
}
.phone-screen {
  width: 100%; height: 100%; background: #FFFFFF; border-radius: 16px;
  padding: 12px 10px; display: flex; flex-direction: column; gap: 6px;
  font-size: .68rem; color: var(--ink-2); overflow: hidden;
}
.phone-bubble {
  padding: 7px 10px; border-radius: 12px;
  max-width: 80%; line-height: 1.35;
}
.phone-bubble.in { background: #EEF3F5; color: var(--ink); align-self: flex-start; }
.phone-bubble.out { background: linear-gradient(135deg, var(--teal-700), var(--teal-500)); color: #FFFFFF; align-self: flex-end; }
.phone-time { color: var(--slate); font-size: .62rem; text-align: center; }

/* CRM pipeline mock */
.crm-mock { width: 100%; }
.crm-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.crm-col { background: #FFFFFF; border: 1px solid var(--line); border-radius: 10px; padding: 8px; }
.crm-col-head { font-family: var(--font-label); font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-700); margin-bottom: 6px; }
.crm-card-mini { background: var(--teal-25); border-left: 3px solid var(--teal-500); padding: 6px 8px; border-radius: 4px; margin-bottom: 5px; font-size: .65rem; color: var(--ink); }
.crm-card-mini strong { display: block; color: var(--navy-900); font-weight: 600; }

/* Review widget mock */
.review-mock { width: 100%; max-width: 240px; background: #FFFFFF; border: 1px solid var(--line); border-radius: 12px; padding: 14px; box-shadow: var(--shadow-sm); }
.review-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 6px; }
.review-text { font-size: .76rem; color: var(--ink-2); line-height: 1.4; }
.review-author { display: flex; align-items: center; gap: 8px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.review-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-700), var(--teal-500)); color: #FFFFFF; display: inline-flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 600; }
.review-name { font-size: .72rem; color: var(--navy-900); font-weight: 600; }

/* Calendar mock */
.cal-mock { width: 100%; max-width: 220px; background: #FFFFFF; border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-family: var(--font-heading); font-weight: 600; color: var(--navy-900); font-size: .8rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; font-size: .62rem; text-align: center; }
.cal-grid > div { padding: 4px 0; color: var(--slate); border-radius: 4px; }
.cal-grid > div.day { color: var(--ink); }
.cal-grid > div.active { background: var(--teal-500); color: #FFFFFF; font-weight: 600; }
.cal-grid > div.booked { background: var(--teal-50); color: var(--teal-700); }
.cal-head-row > div { font-weight: 600; color: var(--slate) !important; }

/* Email/sequence mock */
.seq-mock { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.seq-step {
  display: flex; align-items: center; gap: 10px;
  background: #FFFFFF; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 12px; font-size: .72rem; color: var(--ink-2);
}
.seq-step .seq-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--teal-50); color: var(--teal-700);
  display: inline-flex; align-items: center; justify-content: center; font-size: .8rem;
}
.seq-step strong { color: var(--navy-900); display: block; font-size: .78rem; }
.seq-step small { color: var(--slate); font-size: .65rem; }
.seq-arrow { text-align: center; color: var(--teal-300); font-size: .8rem; }

/* Reminder mock */
.reminder-mock { width: 100%; max-width: 230px; }
.reminder-card { background: #FFFFFF; border: 1px solid var(--line); border-left: 3px solid var(--teal-500); border-radius: 10px; padding: 10px 12px; box-shadow: var(--shadow-sm); margin-bottom: 8px; }
.reminder-card .r-head { display: flex; justify-content: space-between; font-size: .68rem; color: var(--slate); margin-bottom: 4px; }
.reminder-card strong { color: var(--navy-900); font-size: .78rem; display: block; margin-bottom: 2px; }
.reminder-card .r-msg { font-size: .7rem; color: var(--ink-2); }

/* Web/landing mock */
.web-mock { width: 100%; max-width: 240px; background: #FFFFFF; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.web-bar { background: var(--bg-alt); padding: 6px 8px; display: flex; gap: 4px; }
.web-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.web-content { padding: 12px; }
.web-h { background: var(--navy-900); color: #FFFFFF; font-size: .68rem; padding: 8px; border-radius: 6px; text-align: center; font-weight: 600; margin-bottom: 8px; }
.web-skel { height: 6px; background: var(--bg-alt); border-radius: 3px; margin-bottom: 6px; }
.web-skel.short { width: 60%; }
.web-cta { background: linear-gradient(135deg, var(--teal-700), var(--teal-500)); color: #FFFFFF; font-size: .68rem; padding: 6px; border-radius: 6px; text-align: center; font-weight: 600; margin-top: 8px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: #FFFFFF; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; position: relative;
  transition: all .3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--teal-300); }
.testimonial-card .stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: var(--ink-2); font-size: .95rem; font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600;
}
.author-name { font-family: var(--font-heading); font-weight: 600; color: var(--navy-900); font-size: .95rem; }
.author-title { color: var(--slate); font-size: .82rem; }

/* Case study cards */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: #FFFFFF; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; transition: all .3s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-300); }
.case-tag { display: inline-block; background: var(--teal-50); color: var(--teal-700); font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.case-card h3 { margin-bottom: 12px; color: var(--navy-900); }
.case-card .case-summary { color: var(--ink-2); font-size: .94rem; margin-bottom: 22px; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 18px; background: var(--bg-alt); border-radius: 12px; margin-bottom: 18px; }
.case-stat-num { font-family: var(--font-heading); font-weight: 700; color: var(--teal-700); font-size: 1.4rem; line-height: 1; }
.case-stat-lbl { color: var(--slate); font-size: .72rem; margin-top: 4px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #FFFFFF; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: all .3s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-300); }
.blog-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--teal-50), var(--teal-25));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--teal-700);
}
.blog-body { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .78rem; color: var(--slate); margin-bottom: 10px; font-family: var(--font-label); text-transform: uppercase; letter-spacing: .1em; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy-900); }
.blog-card p { color: var(--ink-2); font-size: .9rem; flex-grow: 1; margin-bottom: 16px; }

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--font-heading); font-weight: 500;
  color: var(--navy-900); font-size: .9rem; margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 12px 14px;
  background: #FFFFFF; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus {
  outline: none; border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(43,179,192,.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* CTA section */
.cta-section { background: var(--navy-900); color: #FFFFFF; }
.cta-section h2 { color: #FFFFFF; }
.cta-section p { color: #B7CDD6; }
.cta-inner { text-align: center; max-width: 760px; margin: 0 auto; padding: 24px 0; }
.cta-inner .label { color: var(--teal-300); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.cta-section .btn-outline { color: #FFFFFF; border-color: rgba(255,255,255,.4); }
.cta-section .btn-outline:hover { background: #FFFFFF; color: var(--navy-900); border-color: #FFFFFF; }

/* Footer */
.footer {
  background: var(--navy-900); color: #B7CDD6;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 56px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { color: #8FA9B5; font-size: .92rem; max-width: 360px; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s ease; font-size: .95rem;
}
.footer-socials a:hover { background: var(--teal-500); transform: translateY(-2px); }
.footer-col h5 { color: #FFFFFF; font-family: var(--font-heading); font-size: .95rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #8FA9B5; font-size: .9rem; }
.footer-col ul a:hover { color: var(--teal-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: #6B8693;
}
.footer-bottom a { color: #8FA9B5; }
.footer-bottom a:hover { color: var(--teal-300); }

/* Page hero (smaller, used on inner pages) */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--teal-25) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 { color: var(--navy-900); margin-bottom: 14px; }
.page-hero p { color: var(--slate); font-size: 1.08rem; max-width: 680px; margin: 0 auto; }
.page-hero .label { display: inline-block; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Chat widget placeholder */
.chat-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer;
  box-shadow: 0 8px 24px rgba(43,179,192,.40);
  transition: transform .2s ease;
}
.chat-widget:hover { transform: scale(1.06); }

/* Logo carousel */
.logo-carousel-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logo-carousel { display: flex; gap: 60px; animation: scrollX 36s linear infinite; width: max-content; }
.logo-item {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  color: var(--slate); padding: 14px 28px; white-space: nowrap;
  border: 1px solid var(--line); border-radius: 999px;
}
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* FAQ */
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #FFFFFF; margin-bottom: 14px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  padding: 18px 22px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-heading); font-weight: 600; color: var(--navy-900);
  font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q i { color: var(--teal-700); transition: transform .25s ease; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0; overflow: hidden;
  color: var(--ink-2); font-size: .94rem;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { padding: 0 22px 18px; max-height: 320px; }

/* Hex bg accent block */
.hex-accent {
  position: absolute; opacity: .12; pointer-events: none;
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 24px; }
.mt-4 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 48px; }
.flex { display: flex; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
