/* ═══════════════════════════════════════
   AD COLLAB — SITE STYLES
   Brand: Navy #1B3A5C | Blue #0088FF | Cyan #00D4FF
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy: #1B3A5C;
  --deep-navy: #233B6E;
  --navy-dark: #122740;
  --blue: #0088FF;
  --cyan: #00D4FF;
  --light-blue: #E8F4FD;
  --ice: #F0F8FF;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --green: #22C55E;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(27,58,92,0.06);
  --shadow-md: 0 4px 16px rgba(27,58,92,0.08);
  --shadow-lg: 0 12px 40px rgba(27,58,92,0.12);
  --shadow-xl: 0 20px 60px rgba(27,58,92,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,58,92,0.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--deep-navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white) !important;
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  margin: 5px 0; transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
}

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,136,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 80px 0;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-label span {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,136,255,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* ════════════════════════════════════════
   SECTION STYLES
   ════════════════════════════════════════ */
.section {
  padding: 100px 0;
}
.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.65;
}
.section-header {
  margin-bottom: 56px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

.section--light { background: var(--ice); }
.section--navy { background: var(--navy); }
.section--navy .section-label { color: var(--cyan); }
.section--navy .section-title { color: var(--white); }
.section--navy .section-subtitle { color: rgba(255,255,255,0.6); }
.section--gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%); }

/* ════════════════════════════════════════
   DIFFERENTIATOR CARDS
   ════════════════════════════════════════ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr 1fr; } }

.diff-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.diff-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  border-radius: 10px;
  margin-bottom: 18px;
}
.diff-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.diff-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.diff-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   DIVISION CARDS
   ════════════════════════════════════════ */
.div-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 700px) { .div-grid { grid-template-columns: 1fr; } }

.div-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.div-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.div-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.div-card .div-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light-blue);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.div-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.div-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}
.div-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.div-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.div-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}

/* ════════════════════════════════════════
   TIMELINE (How It Works)
   ════════════════════════════════════════ */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 700px) { .timeline-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; } }

.timeline-step { text-align: center; padding: 0 20px; position: relative; }
.timeline-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.15);
}
.timeline-step:last-child::after { display: none; }
.timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.timeline-num.blue { background: var(--blue); color: var(--white); }
.timeline-num.cyan { background: var(--cyan); color: var(--navy); }
.timeline-num.green { background: var(--green); color: var(--white); }
.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-step .timeline-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.timeline-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-tier {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 18px; font-weight: 500; color: var(--gray-400); }
.pricing-spend {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 10px;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.pricing-note {
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
  max-width: 700px;
  margin: 32px auto 0;
  text-align: center;
  line-height: 1.6;
}

/* ════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 50%, var(--navy-dark) 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  position: relative;
}
.cta-banner .btn-primary { position: relative; font-size: 17px; padding: 18px 40px; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  padding: 48px 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { height: 32px; width: auto; }
.footer-tagline {
  font-size: 13px;
  color: var(--gray-400);
  border-left: 1px solid var(--gray-700);
  padding-left: 16px;
}
.footer-right {
  font-size: 13px;
  color: var(--gray-500);
}
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; }
  .footer-tagline { border: none; padding: 0; }
}

/* ════════════════════════════════════════
   PAGE HERO (subpages)
   ════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.65;
  position: relative;
}

/* ════════════════════════════════════════
   PROOF BAR (audit page)
   ════════════════════════════════════════ */
.proof-bar {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
}
.proof-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
@media (max-width: 500px) { .proof-bar { flex-direction: column; gap: 12px; } }

/* ════════════════════════════════════════
   FORM EMBED
   ════════════════════════════════════════ */
.form-section { padding: 80px 0; }
.form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   VALUES GRID
   ════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr 1fr; } }

.value-card { text-align: center; padding: 32px 20px; }
.value-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  border-radius: 14px;
  margin: 0 auto 18px;
}
.value-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   CONTACT LAYOUT
   ════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-item-value {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
}

/* ════════════════════════════════════════
   ABOUT STORY
   ════════════════════════════════════════ */
.story-content {
  max-width: 700px;
  margin: 0 auto;
}
.story-content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
}
.story-content p:first-child {
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
}

/* ════════════════════════════════════════
   AUDIT PAGE — WHAT YOU GET
   ════════════════════════════════════════ */
.audit-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .audit-features { grid-template-columns: 1fr 1fr; } }

.audit-feature {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.audit-feature-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  border-radius: 12px;
  margin: 0 auto 16px;
}
.audit-feature-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.audit-feature h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.audit-feature p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   INLINE FORM STYLES
   (matching the standalone forms)
   ════════════════════════════════════════ */
.ac-field { margin-bottom: 20px; }
.ac-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.ac-field label .ac-required { color: var(--blue); margin-left: 2px; }
.ac-field label .ac-optional { color: var(--gray-400); font-weight: 400; font-size: 12px; margin-left: 4px; }
.ac-field input,
.ac-field select,
.ac-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.ac-field input::placeholder,
.ac-field textarea::placeholder { color: var(--gray-400); }
.ac-field input:focus,
.ac-field select:focus,
.ac-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,136,255,0.1);
}
.ac-field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.ac-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .ac-field-row { grid-template-columns: 1fr; gap: 0; } }
.ac-select-wrap { position: relative; }
.ac-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--gray-400);
  pointer-events: none;
}
.ac-submit {
  width: 100%;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.ac-submit:hover { background: var(--deep-navy); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.ac-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.ac-form-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-400);
}

.ac-success { display: none; text-align: center; padding: 48px 24px; }
.ac-success.visible { display: block; }
.ac-success-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ac-success-icon svg { width: 28px; height: 28px; stroke: white; stroke-width: 2.5; fill: none; }
.ac-success h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ac-success p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}
.ac-success .ac-timeline {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--light-blue);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
