/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --navy:       #172A3A;
  --bg:         #FAF7F0;
  --beige:      #F1E8DA;
  --amber:      #D98C3A;
  --sage:       #7A9E8B;
  --text:       #1F2933;
  --muted:      #667085;
  --border:     #E2DED6;
  --white:      #FFFFFF;

  --amber-hover: #C47C2E;
  --amber-light: #FDF3E7;
  --navy-light:  #213D54;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 4px rgba(23,42,58,.07);
  --shadow-md:  0 4px 16px rgba(23,42,58,.10);
  --shadow-lg:  0 8px 32px rgba(23,42,58,.13);

  --font: 'Inter', system-ui, sans-serif;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

section { padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(217,140,58,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}
.btn-sm {
  font-size: .85rem;
  padding: 9px 18px;
}

/* =============================================
   HEADER / NAV
============================================= */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,247,240,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
  letter-spacing: -.01em;
}
.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* =============================================
   HERO
============================================= */
#hero {
  padding: 52px 0 64px;
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 47fr 53fr;
  gap: 56px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-microcopy {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-chip-icon {
  width: 22px; height: 22px;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 11px;
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-image-wrap img {
  width: 100%;
  display: block;
}


/* =============================================
   PROBLEM SECTION
============================================= */
#problem {
  background: var(--beige);
  padding: 80px 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.problem-icon {
  width: 44px; height: 44px;
  background: #FDE8D1;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.problem-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.problem-text { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* =============================================
   BEFORE / AFTER SECTION
============================================= */
#before-after {
  background: var(--bg);
  padding: 80px 0;
}
.ba-carousel-wrap {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   SERVICES
============================================= */
#services { background: var(--beige); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.service-icon.amber { background: var(--amber-light); }
.service-icon.sage { background: rgba(122,158,139,.15); }
.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.service-tag {
  display: inline-block;
  background: var(--beige);
  color: var(--amber);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(217,140,58,.25);
}
.service-card.featured {
  border-color: var(--amber);
  background: linear-gradient(135deg, #FDF8F3 0%, #FEF4E8 100%);
}
.service-card.ai-card {
  border-color: var(--sage);
  background: linear-gradient(135deg, #F5FAF7 0%, #EDF5F0 100%);
}

/* =============================================
   PROCESS
============================================= */
#process { background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--sage) 100%);
  opacity: .4;
}
.process-step { text-align: center; position: relative; }
.process-number {
  width: 64px; height: 64px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(217,140,58,.3);
  position: relative;
  z-index: 1;
}
.process-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.process-text { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* =============================================
   ABOUT
============================================= */
#about { background: var(--beige); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-value-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--amber-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.about-value-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-value-text { font-size: .85rem; color: var(--muted); }

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-avatar {
  width: 72px; height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  color: white;
}
.about-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.about-role { font-size: .85rem; color: var(--amber); font-weight: 600; margin-bottom: 16px; }
.about-quote {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--amber);
  padding-left: 16px;
  margin-bottom: 20px;
}
.about-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.about-badge {
  background: var(--beige);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* =============================================
   PRICING
============================================= */
#pricing { background: var(--bg); }
.pricing-framing {
  text-align: center;
  margin-top: 16px;
  font-size: .95rem;
  color: var(--muted);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pricing-card.featured {
  border: 2px solid var(--amber);
  position: relative;
  overflow: hidden;
}
.pricing-featured-badge {
  position: absolute;
  top: 16px; right: -24px;
  background: var(--amber);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(35deg);
  letter-spacing: .05em;
}
.pricing-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.pricing-name { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pricing-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 1rem; }
.pricing-price-note { font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.pricing-desc { font-size: .82rem; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: .85rem;
  color: var(--muted);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card-cta {
  margin-top: 20px;
}
.pricing-card-cta .btn {
  width: 100%;
  justify-content: center;
}
.pricing-fine {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* Free card */
.pricing-card.free { background: var(--navy); border-color: var(--navy); }
.pricing-card.free .pricing-name { color: rgba(255,255,255,.9); }
.pricing-card.free .pricing-price { color: var(--amber); }
.pricing-card.free .pricing-price-note { color: rgba(255,255,255,.5); }
.pricing-card.free .pricing-desc { color: rgba(255,255,255,.6); }
.pricing-card.free .pricing-features li { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.1); }
.pricing-card.free .pricing-features li::before { color: var(--sage); }
.pricing-card.free .pricing-icon { background: rgba(255,255,255,.1); }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: .88rem;
  color: var(--muted);
}

/* =============================================
   AI TOOLS SECTION
============================================= */
#ai-tools { background: var(--beige); }
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ai-tools-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.ai-tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.ai-tool-card:hover { box-shadow: var(--shadow-md); }
.ai-tool-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(122,158,139,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--sage);
}
.ai-tool-name { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ai-tool-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.ai-tool-badge {
  display: inline-block;
  margin-top: 6px;
  background: rgba(122,158,139,.12);
  color: var(--sage);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.ai-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.ai-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(122,158,139,.2) 0%, transparent 70%);
}
.ai-chat-window {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}
.ai-chat-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ai-chat-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.ai-chat-name { font-size: .85rem; font-weight: 700; }
.ai-chat-status { font-size: .72rem; color: var(--sage); }
.ai-message {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.ai-message.user { flex-direction: row-reverse; }
.ai-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.ai-avatar.bot { background: var(--sage); }
.ai-avatar.user-av { background: var(--amber); }
.ai-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: .8rem;
  line-height: 1.5;
}
.ai-bubble.bot { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); border-bottom-left-radius: 2px; }
.ai-bubble.user { background: var(--amber); color: white; border-bottom-right-radius: 2px; }
.ai-input-row {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 8px 12px;
  align-items: center;
}
.ai-input-placeholder { flex: 1; font-size: .8rem; color: rgba(255,255,255,.4); }
.ai-send-btn {
  background: var(--amber);
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  color: white;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
}
.ai-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ai-stat {
  text-align: center;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
}
.ai-stat-val { font-size: 1.3rem; font-weight: 800; color: var(--amber); }
.ai-stat-label { font-size: .68rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* =============================================
   FAQ
============================================= */
#faq { background: var(--bg); }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .2s;
}
.faq-question:hover { color: var(--amber); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--amber);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* =============================================
   PILOT / SOCIAL PROOF SECTION
============================================= */
#pilot {
  background: var(--beige);
  padding: 64px 0;
}
.pilot-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pilot-icon {
  width: 56px; height: 56px;
  background: var(--amber-light);
  border: 1px solid rgba(217,140,58,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
}
.pilot-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.pilot-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.pilot-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122,158,139,.1);
  border: 1px solid rgba(122,158,139,.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 28px;
}

/* =============================================
   CONTACT
============================================= */
#contact { background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-email-icon {
  width: 36px; height: 36px;
  background: var(--amber-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--amber);
  flex-shrink: 0;
}
.contact-features { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.contact-feature {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: .88rem;
  color: var(--muted);
}
.contact-feature-check {
  width: 20px; height: 20px;
  background: rgba(122,158,139,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--sage);
  flex-shrink: 0;
  font-weight: 700;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}
.form-required { color: var(--amber); margin-left: 2px; }
.form-control.error { border-color: #E53E3E; box-shadow: 0 0 0 3px rgba(229,62,62,.1); }
.form-validation-msg {
  display: none;
  font-size: .85rem;
  color: #C53030;
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.form-validation-msg.visible { display: block; }
.form-control {
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
  appearance: none;
}
.form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(217,140,58,.12);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-risk-reversal {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
}
.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--amber); }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 280px; }
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .85rem;
  color: var(--amber);
  font-weight: 600;
}
.footer-col-title { font-size: .8rem; font-weight: 700; color: white; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,.7); }

/* =============================================
   UTILITY
============================================= */
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

/* =============================================
   RESPONSIVE
============================================= */

/* Tablet — 2-col grids, tighten hero gap */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile landscape / large phone */
@media (max-width: 768px) {
  section { padding: 56px 0; }

  /* Navigation */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #hero { padding: 36px 0 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: 1.85rem; letter-spacing: -.01em; }
  .hero-sub { font-size: .97rem; margin-bottom: 24px; }
  .hero-microcopy { font-size: .76rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-row { gap: 12px; }
  .trust-chip { font-size: .78rem; }

  /* Carousel (Before/After section) */
  .ba-carousel-wrap { margin-top: 32px; }
  .carousel-btn { width: 44px; height: 44px; font-size: 17px; }
  .carousel-dot { width: 9px; height: 9px; }
  .carousel-dots { bottom: 12px; gap: 9px; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-steps::before { display: none; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* AI section */
  .ai-inner { grid-template-columns: 1fr; gap: 40px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  /* 1rem (16px) prevents iOS Safari from auto-zooming on input focus */
  .form-control { font-size: 1rem; padding: 13px 14px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 48px 0; }
  #hero { padding: 28px 0 36px; }
  .hero-title { font-size: 1.65rem; }
  .hero-sub { font-size: .93rem; }
  .service-card { padding: 20px 16px; }
  .pricing-card { padding: 24px 20px; }
  .contact-form { padding: 24px 18px; }
  .about-card { padding: 24px; }
}

/* =============================================
   DARK NAV BUTTON
============================================= */
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(23,42,58,.25);
}

/* =============================================
   HERO IMAGE CAROUSEL
============================================= */
.hero-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--beige);
  user-select: none;
}
.carousel-slide { display: none; }
.carousel-slide.active {
  display: block;
  animation: carouselFade .75s ease-in-out;
}
@keyframes carouselFade {
  from { opacity: 0; transform: scale(1.012); }
  to   { opacity: 1; transform: scale(1); }
}
.carousel-slide img {
  width: 100%;
  display: block;
}
.carousel-arrows {
  position: absolute;
  top: 50%; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  transform: translateY(-50%);
  pointer-events: none;
}
.carousel-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
  transition: background .2s, box-shadow .2s;
  color: var(--navy);
}
.carousel-btn:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.carousel-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--white);
  transform: scale(1.3);
}
.carousel-caption {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  letter-spacing: .01em;
}

/* Swipe hint — mobile only */
.carousel-swipe-hint {
  display: none;
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: .04em;
  opacity: .65;
}
@media (max-width: 768px) {
  .carousel-swipe-hint { display: block; }
}
