/* =========================================
   Allied Parts Wholesale - Master Stylesheet
   Dropshipper Wholesale Connection Network
   ========================================= */

:root {
  --navy: #0B1C3D;
  --navy-2: #1A3A6B;
  --navy-3: #2E578F;
  --orange: #FF7A00;
  --orange-2: #E66C00;
  --orange-3: #C75200;
  --orange-tint: rgba(255,122,0,0.08);
  --gold: #FFB266;

  --bg: #FFFFFF;
  --off-white: #F8F9FB;
  --light-bg: #F1F4F9;
  --text: #0B1C3D;
  --text-body: #1F2937;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --success: #16A34A;
  --danger: #DC2626;

  --r: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(11,28,61,0.05), 0 1px 3px rgba(11,28,61,0.08);
  --shadow-md: 0 4px 8px rgba(11,28,61,0.06), 0 8px 16px rgba(11,28,61,0.08);
  --shadow-lg: 0 12px 24px rgba(11,28,61,0.08), 0 20px 40px rgba(11,28,61,0.12);
  --shadow-orange: 0 8px 24px rgba(255,122,0,0.28);

  --ease: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-fast: 140ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open { overflow: hidden !important; }

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1.15rem; color: var(--navy); }

p { margin: 0 0 1em; color: var(--text-body); }
a { color: var(--orange-3); text-decoration: none; transition: color var(--ease-fast); }
a:hover { color: var(--orange); }

ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

img, svg, picture { max-width: 100%; display: block; }
picture { line-height: 0; }

/* Utility */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.serif { font-family: 'DM Serif Display', serif; font-weight: 400; }
.serif-i { font-family: 'DM Serif Display', serif; font-weight: 400; font-style: italic; color: var(--orange); }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange-3); margin-bottom: 12px;
  display: inline-block;
}
.divider { width: 60px; height: 3px; background: var(--orange); margin: 24px 0; border-radius: 2px; }
.divider-c { margin-left: auto; margin-right: auto; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }

/* Accessibility */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--navy); color: #fff;
  padding: 10px 16px; text-decoration: none;
  font-weight: 600; font-size: 14px; z-index: 9999;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { top: 0; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
*:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: var(--r);
}

/* Nav */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: all var(--ease);
}
nav.site-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo-img { height: 44px; width: 52px; object-fit: contain; transition: opacity var(--ease-fast); }
.logo-img:hover { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500;
  color: var(--text-body); padding: 6px 0;
  position: relative; transition: color var(--ease-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--orange-3) !important; color: #fff !important;
  padding: 11px 22px !important; border-radius: var(--r);
  font-weight: 600 !important; box-shadow: var(--shadow-sm);
  transition: all var(--ease-fast) !important;
}
.nav-cta:hover {
  background: var(--orange-2) !important;
  transform: translateY(-1px); box-shadow: var(--shadow-orange);
}

/* Hamburger */
.hamburger {
  display: none; cursor: pointer; background: none; border: none;
  padding: 10px; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: relative; z-index: 201; color: var(--navy);
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
}
.hamburger:hover { background: rgba(26,58,107,0.06); }
.hamburger-icon {
  width: 24px; height: 24px; pointer-events: none;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: opacity 0.18s ease;
}
.hamburger-close { opacity: 0; }
.hamburger.open .hamburger-open { opacity: 0; }
.hamburger.open .hamburger-close { opacity: 1; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-md);
  border: none; cursor: pointer;
  transition: all var(--ease-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary { background: var(--orange-3); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); box-shadow: var(--shadow-orange); color: #fff; }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-2); transform: translateY(-1px); color: #fff; box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--navy); background: var(--off-white); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--off-white); color: var(--navy); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-block { display: flex; width: 100%; }

/* Sections */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-bg { background: var(--off-white); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.92); }
.section-dark .eyebrow { color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 96px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FB 100%);
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,28,61,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,28,61,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 920px; margin: 0 auto; text-align: center; }
.hero h1 { color: var(--navy); margin-bottom: 24px; }
.hero h1 .serif-i { display: block; }
.hero-sub {
  font-size: 1.2rem; color: var(--text-body); max-width: 720px;
  margin: 0 auto 36px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; background: rgba(255,122,0,0.08);
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: 999px;
  font-size: 13px; color: var(--navy-2); font-weight: 600;
}
.hero-trust-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; }

/* Hero stats strip */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 80px;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: #fff; box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hstat { padding: 28px 24px; text-align: center; border-right: 1px solid var(--border); }
.hstat:last-child { border-right: none; }
.hstat-num {
  font-family: 'DM Serif Display', serif; font-size: 2.4rem;
  color: var(--navy); line-height: 1;
}
.hstat-lbl {
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 10px;
}

/* Section heads */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head h2 { margin-bottom: 0; }
.section-head p { font-size: 1.1rem; color: var(--text-body); margin-top: 16px; }

/* Steps / How It Works */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.step-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  position: relative; transition: all var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem; color: var(--orange);
  line-height: 1; margin-bottom: 12px;
  opacity: 0.85;
}
.step-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1.25rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 14.5px; margin: 0; }

/* Feature grid */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  transition: all var(--ease);
}
.feature-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(255,122,0,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--orange-3);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
.feature-card p { color: var(--text-muted); font-size: 14.5px; margin: 0; line-height: 1.7; }

/* Brands grid */
.brands-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.brand-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  text-align: center; transition: all var(--ease);
  display: block; color: var(--text-body);
}
.brand-card:hover {
  border-color: var(--orange); transform: translateY(-3px);
  box-shadow: var(--shadow-md); color: var(--navy);
}
.brand-card .brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; color: var(--navy); margin-bottom: 6px;
}
.brand-card .brand-tag {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.brand-card .brand-link {
  display: inline-block; margin-top: 14px;
  color: var(--orange-3); font-size: 13px; font-weight: 600;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--r-xl); padding: 72px 56px;
  text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.cta-banner h2 { color: #fff; margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin: 0 auto 32px; max-width: 580px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left;
  font-family: inherit; font-size: 15.5px; font-weight: 600;
  color: var(--navy);
  transition: background var(--ease-fast);
}
.faq-question:hover { background: var(--off-white); }
.faq-question::after {
  content: ''; width: 12px; height: 12px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg); margin-left: 14px;
  transition: transform var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(-135deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--ease);
  padding: 0 26px;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 26px 24px; }
.faq-answer p { color: var(--text-body); font-size: 14.5px; line-height: 1.75; margin: 0; }

/* Page header (non-home pages) */
.page-hdr {
  padding: 130px 0 64px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FB 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hdr h1 { margin-bottom: 16px; }
.page-hdr p { font-size: 1.15rem; color: var(--text-muted); max-width: 680px; margin: 0 auto; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.form-row { grid-column: span 2; }
.form-row-3 { grid-column: span 3; }
.form-group { display: flex; flex-direction: column; }
.form-label {
  font-size: 13px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px; letter-spacing: 0.01em;
}
.form-label .req { color: var(--orange-3); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-family: inherit; font-size: 15px; color: var(--text);
  background: #fff;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-select { appearance: none; padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 4.5l3 3 3-3' stroke='%231A3A6B' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-help { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.checkbox-group {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px;
}
.checkbox-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  font-size: 14px; transition: all var(--ease-fast);
  user-select: none;
}
.checkbox-item:hover { border-color: var(--orange); }
.checkbox-item input[type="checkbox"] {
  accent-color: var(--orange-3); width: 16px; height: 16px;
  flex-shrink: 0;
}
.checkbox-item input:checked + span { color: var(--navy); font-weight: 500; }
.checkbox-item:has(input:checked) {
  background: var(--orange-tint); border-color: var(--orange);
}
.form-consent {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px; background: var(--off-white);
  border-radius: var(--r); font-size: 13px;
  color: var(--text-muted); line-height: 1.55;
}
.form-consent input { margin-top: 3px; accent-color: var(--orange-3); flex-shrink: 0; }
.form-submit-row { margin-top: 24px; }

.form-message {
  padding: 16px 20px; border-radius: var(--r-md);
  margin-bottom: 20px; display: none;
  font-size: 14.5px; line-height: 1.6;
}
.form-message.show { display: block; }
.form-message.success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.form-message.error { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }

/* Footer */
footer.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.78); font-size: 14px; max-width: 340px; margin-top: 16px; line-height: 1.7; }
.footer-col h2 {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; line-height: 1.3;
}
.footer-col a { display: block; color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 10px; transition: color var(--ease-fast); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-legal a:hover { color: #fff; }
.footer-disclaimer {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11.5px; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 920px;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.78); font-weight: 600; }

/* Fade animations */
.fade-up { opacity: 0; transform: translate3d(0,20px,0); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translate3d(0,0,0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }

/* Brand page header strip */
.brand-hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.brand-hero.honda { background: linear-gradient(135deg, #fff 0%, #fff5f5 100%); border-bottom: 4px solid #CC0000; }
.brand-hero.toyota { background: linear-gradient(135deg, #fff 0%, #fff5f5 100%); border-bottom: 4px solid #EB0A1E; }
.brand-hero.subaru { background: linear-gradient(135deg, #fff 0%, #f5f8ff 100%); border-bottom: 4px solid #0041AA; }
.brand-hero.mitsubishi { background: linear-gradient(135deg, #fff 0%, #fff5f5 100%); border-bottom: 4px solid #E60012; }
.brand-tag-large {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 18px;
}
.brand-tag-large.honda { background: #FFE8E8; color: #CC0000; }
.brand-tag-large.toyota { background: #FFE8E8; color: #EB0A1E; }
.brand-tag-large.subaru { background: #E8EFFF; color: #0041AA; }
.brand-tag-large.mitsubishi { background: #FFE8E8; color: #E60012; }

/* Trust signal bar */
.trust-bar {
  background: var(--off-white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-bar-grid {
  display: flex; align-items: center; justify-content: space-around;
  gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--text-muted); font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--orange-3); flex-shrink: 0; }

/* Apply form layout */
.apply-layout {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; margin-top: 32px;
}
.apply-form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.apply-sidebar {
  position: sticky; top: 100px; align-self: start;
}
.apply-info-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  margin-bottom: 20px;
}
.apply-info-card h4 {
  font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 14px;
}
.apply-info-card ul { padding-left: 0; list-style: none; }
.apply-info-card li {
  padding: 8px 0; font-size: 14px;
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-body);
}
.apply-info-card li::before {
  content: '✓'; color: var(--orange-3); font-weight: 700;
  flex-shrink: 0;
}

/* Success state */
.success-state {
  text-align: center; padding: 48px 32px;
  display: none;
}
.success-state.show { display: block; }
.success-icon {
  width: 80px; height: 80px; background: #DCFCE7;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: #16A34A;
}
.success-icon svg { width: 40px; height: 40px; }
.success-state h3 { margin-bottom: 12px; }
.success-state p { color: var(--text-muted); margin-bottom: 8px; }
.success-state .reference {
  display: inline-block; background: var(--off-white); padding: 10px 18px;
  border-radius: var(--r); font-family: monospace; font-size: 13px;
  color: var(--navy); margin-top: 12px;
}

/* Why us list */
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; margin-top: 32px; }
.why-item { display: flex; gap: 12px; align-items: flex-start; }
.why-check {
  flex-shrink: 0; width: 24px; height: 24px;
  background: rgba(255,122,0,0.12); border-radius: 50%;
  color: var(--orange-3); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.why-item-text { font-size: 15px; line-height: 1.55; color: var(--text-body); }
.why-item-text strong { color: var(--navy); font-weight: 600; }

/* Blog */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.blog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--ease);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 11px; color: var(--orange-3); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h3 {
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 1.15rem; line-height: 1.35;
  margin-bottom: 10px; color: var(--navy);
}
.blog-card p { color: var(--text-muted); font-size: 14px; margin: 0 0 16px; flex: 1; }
.blog-card .read-more { color: var(--orange-3); font-weight: 600; font-size: 14px; }
.blog-coming-soon {
  text-align: center; padding: 80px 32px;
  background: var(--off-white); border-radius: var(--r-lg);
  border: 2px dashed var(--border-strong);
}

/* Article */
article.post-content {
  max-width: 760px; margin: 0 auto;
  font-size: 17px; line-height: 1.8; color: var(--text-body);
}
article.post-content h2 { font-size: 1.8rem; margin-top: 48px; margin-bottom: 16px; }
article.post-content h3 { font-size: 1.4rem; margin-top: 36px; margin-bottom: 12px; }
article.post-content p { margin-bottom: 20px; }
article.post-content ul { margin-bottom: 24px; }
article.post-content li { margin-bottom: 8px; }
article.post-content a { color: var(--orange-3); border-bottom: 1px solid currentColor; }

/* Responsive */
@media (max-width: 980px) {
  .apply-layout { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
}
@media (max-width: 880px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hstat:nth-child(2) { border-right: none; }
  .hstat:nth-child(1), .hstat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .steps-grid, .features-grid, .blog-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-list { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; }
  .page-hdr { padding: 110px 0 48px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: 0; inset: 0;
    background: #fff !important;
    padding: 80px 20px 32px !important;
    gap: 0 !important;
    z-index: 198 !important;
    overflow-y: auto !important;
    align-items: stretch !important;
    box-shadow: 0 8px 60px rgba(0,0,0,0.12);
    animation: menuSlide 0.22s ease-out;
  }
  @keyframes menuSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open a {
    font-size: 17px !important;
    padding: 18px 8px !important;
    border-bottom: 1px solid var(--border) !important;
    color: var(--navy) !important;
    font-weight: 500 !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
  }
  .nav-links.open .nav-cta {
    margin-top: 24px !important;
    text-align: center !important;
    border-radius: 8px !important;
    padding: 18px 24px !important;
    background: var(--orange-3) !important;
    color: #fff !important;
  }
  .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
  .form-row, .form-row-3 { grid-column: span 1; }
  .apply-form-card { padding: 28px 20px; }
  .cta-banner { padding: 48px 28px; }
  .checkbox-group { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
