/* 3rd Party Fulfillment — Main Stylesheet */
/* Navy + Orange B2B brand */

:root {
  --navy: #0f1e3d;
  --navy-light: #162a52;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #0f172a;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --max-w: 1200px;
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { font-size: 1rem; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--tight { padding: 52px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: .95rem; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── Nav ── */
.nav { position: sticky; top: 0; z-index: 999; background: rgba(10,20,50,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { font-size: 1.35rem; font-weight: 800; color: var(--white); letter-spacing: -.03em; }
.nav__logo span { color: var(--orange); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .2s; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links > a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: color .2s cubic-bezier(.16,1,.3,1), background .2s cubic-bezier(.16,1,.3,1); }
.nav__links > a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav__cta { margin-left: 12px !important; }
/* Dropdown */
.nd { position: relative; }
.nd-btn { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; padding: 6px 14px; border-radius: 6px; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: color .2s, background .2s; white-space: nowrap; }
.nd-btn:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nd-chevron { transition: transform .2s cubic-bezier(.16,1,.3,1); }
.nd:hover .nd-chevron, .nd.open .nd-chevron { transform: rotate(180deg); }
.nd-panel { position: absolute; top: 100%; left: 0; min-width: 220px; background: rgba(10,20,50,.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 14px 6px 6px; margin-top: -6px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .25s cubic-bezier(.16,1,.3,1), transform .25s cubic-bezier(.16,1,.3,1), visibility .25s; z-index: 200; box-shadow: 0 12px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.07); }
.nd:hover .nd-panel, .nd.open .nd-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nd:not(:hover):not(.open) .nd-panel { transition-delay: .1s; }
.nd-panel a { display: block; color: rgba(255,255,255,.72); font-size: .875rem; padding: 8px 12px; border-radius: 6px; transition: color .15s, background .15s; }
.nd-panel a:hover { color: var(--white); background: rgba(255,255,255,.08); }
/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav__links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: rgba(10,20,50,.98); flex-direction: column; align-items: stretch; padding: 12px 16px 20px; border-bottom: 1px solid rgba(255,255,255,.08); gap: 2px; }
  .nav__links.open { display: flex; }
  .nav__links > a { padding: 10px 14px; }
  .nd { width: 100%; }
  .nd-btn { width: 100%; justify-content: space-between; padding: 10px 14px; }
  .nd-panel { position: static; opacity: 1; visibility: hidden; transform: none; max-height: 0; overflow: hidden; background: rgba(255,255,255,.04); border: none; border-radius: 6px; padding: 0; box-shadow: none; transition: max-height .3s cubic-bezier(.16,1,.3,1), visibility .3s; }
  .nd.open .nd-panel { visibility: visible; max-height: 500px; padding: 6px; }
  .nav__cta { margin-left: 0 !important; margin-top: 8px; }
}

/* ── Hero ── */
.hero { background: var(--navy); padding: 100px 0 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(249,115,22,.08), transparent); pointer-events: none; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.25); color: var(--orange); font-size: .8rem; font-weight: 600; padding: 5px 14px; border-radius: 99px; margin-bottom: 24px; letter-spacing: .06em; text-transform: uppercase; }
.hero__title { color: var(--white); margin-bottom: 20px; max-width: 680px; }
.hero__title em { color: var(--orange); font-style: normal; }
.hero__sub { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 560px; margin-bottom: 40px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { margin-top: 56px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: .85rem; }
.hero__trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ── Stats Bar ── */
.stats-bar { background: var(--orange); padding: 28px 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stats-bar__item { padding: 0 20px; border-right: 1px solid rgba(255,255,255,.25); }
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stats-bar__label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .eyebrow { display: inline-block; color: var(--orange); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── Service Cards ── */
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; transition: all var(--transition); }
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card__icon { width: 48px; height: 48px; background: rgba(249,115,22,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--orange); font-size: 1.4rem; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--gray-600); font-size: .9rem; line-height: 1.55; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-size: .85rem; font-weight: 600; margin-top: 14px; }
.service-card__link:hover { gap: 10px; }

/* ── Services Section ── */
.services-section { background: var(--gray-50); }
.services-tabs { display: flex; gap: 0; margin-bottom: 40px; background: var(--gray-200); border-radius: var(--radius); padding: 4px; width: fit-content; margin-left: auto; margin-right: auto; }
.services-tab { padding: 8px 24px; border-radius: 6px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all var(--transition); color: var(--gray-600); border: none; background: none; }
.services-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow); }

/* ── Integration Logos ── */
.integrations { background: var(--white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 32px 0; }
.integrations__label { text-align: center; font-size: .8rem; font-weight: 600; color: var(--gray-400); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px; }
.integrations__logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.integrations__logo { color: var(--gray-400); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; transition: color var(--transition); }
.integrations__logo:hover { color: var(--gray-800); }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item { padding: 28px; background: var(--white); border-radius: var(--radius-lg); border-left: 4px solid var(--orange); }
.why-item__num { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.why-item h3 { margin-bottom: 8px; }
.why-item p { color: var(--gray-600); font-size: .9rem; }

/* ── Industries ── */
.industry-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 99px; font-size: .875rem; font-weight: 500; color: var(--gray-800); transition: all var(--transition); cursor: pointer; }
.industry-chip:hover { border-color: var(--orange); color: var(--orange); }
.industries-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ── CTA Band ── */
.cta-band { background: var(--navy); padding: 80px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: #080f1e; color: rgba(255,255,255,.7); padding: 60px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; }
.footer__col h4 { color: var(--white); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a { display: block; color: rgba(255,255,255,.5); font-size: .875rem; margin-bottom: 8px; transition: color var(--transition); }
.footer__col a:hover { color: var(--white); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.footer__contact-item a { color: rgba(255,255,255,.8); }
.footer__contact-item a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── Inner Page Hero ── */
.page-hero { background: var(--navy); padding: 60px 0 56px; }
.page-hero__breadcrumb { color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: 16px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,.5); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.75rem, 3vw, 2.4rem); }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 600px; }

/* ── Content Layout ── */
.content-section { padding: 64px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.content-grid--rev { grid-template-columns: 380px 1fr; }
.sidebar-card { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 32px; position: sticky; top: 88px; }
.sidebar-card h3 { color: var(--white); margin-bottom: 20px; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* ── Spec Table ── */
.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.spec-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-size: .85rem; font-weight: 600; }
.spec-table td { padding: 11px 16px; border-bottom: 1px solid var(--gray-200); font-size: .9rem; }
.spec-table td:first-child { font-weight: 600; color: var(--gray-800); width: 40%; }
.spec-table tr:hover td { background: var(--gray-50); }

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q { width: 100%; text-align: left; padding: 18px 0; font-weight: 600; font-size: .95rem; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:after { content: '+'; font-size: 1.4rem; color: var(--orange); flex-shrink: 0; }
.faq-item.open .faq-q:after { content: '−'; }
.faq-a { display: none; padding: 0 0 18px; color: var(--gray-600); font-size: .95rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── Priority Table ── */
.priority-table { width: 100%; border-collapse: collapse; }
.priority-table th { background: var(--gray-100); padding: 12px 16px; text-align: left; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-600); border-bottom: 2px solid var(--gray-200); }
.priority-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); font-size: .9rem; vertical-align: top; }
.priority-table tr:hover td { background: var(--gray-50); }

/* ── Badges ── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 99px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.badge-orange { background: rgba(249,115,22,.12); color: #c2410c; }
.badge-navy { background: rgba(15,30,61,.1); color: var(--navy); }
.badge-green { background: rgba(34,197,94,.12); color: #15803d; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.25); padding: 14px 0; }
  .stats-bar__item:last-child, .stats-bar__item:nth-child(even) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .nav__links { display: none; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  h1 { font-size: 1.75rem; }
}

/* ══════════════════════════════════════════════
   INNER PAGE & SHARED COMPONENTS
   ══════════════════════════════════════════════ */

/* ── Site Header (inner pages use .site-header) ── */
.site-header { position: sticky; top: 0; z-index: 999; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.logo .orange { color: var(--orange); }
.logo-full { font-size: 1rem; font-weight: 600; opacity: .75; margin-left: 4px; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; padding: 6px 14px; border-radius: 6px; transition: color var(--transition), background var(--transition); }
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.btn-sm { padding: 7px 18px; font-size: .85rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .2s; }
@media (max-width: 900px) {
  .nav-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 16px 24px 24px; border-bottom: 1px solid rgba(255,255,255,.08); gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* ── Breadcrumb ── */
.breadcrumb { color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span:last-child { color: rgba(255,255,255,.8); }

/* ── Page Hero ── */
.page-hero { background: var(--navy); padding: 60px 0 56px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.75rem, 3vw, 2.4rem); }
.page-hero__sub { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 600px; margin-bottom: 28px; }
.page-hero .btn-primary { margin-top: 8px; }

/* ── Content Section ── */
.content-section { padding: 64px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.content-main h2 { margin: 32px 0 14px; font-size: 1.5rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin: 24px 0 10px; font-size: 1.1rem; }
.content-main p { color: var(--gray-600); line-height: 1.75; margin-bottom: 14px; }

/* ── Feature List ── */
.feature-list { list-style: none; margin: 14px 0 20px; }
.feature-list li { padding: 6px 0 6px 28px; position: relative; color: var(--gray-600); font-size: .95rem; line-height: 1.6; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ── Spec Table Wrap ── */
.spec-table-wrap { overflow-x: auto; margin: 20px 0 28px; border-radius: var(--radius); border: 1px solid var(--gray-200); }
.spec-table-wrap .spec-table { margin: 0; }

/* ── FAQ Block ── */
.faq-block { margin-top: 48px; }
.faq-block h2 { margin-bottom: 24px; }
.faq-icon { display: none; } /* hide span, use CSS :after from faq-q */

/* ── Mini Cards / Card Grid 2 ── */
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.mini-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; }
.mini-card strong { display: block; font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.mini-card p { color: var(--gray-600); font-size: .875rem; margin: 0; }

/* ── Sidebar ── */
.content-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-cta { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 28px; }
.sidebar-cta h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.sidebar-cta p { color: rgba(255,255,255,.72); font-size: .9rem; margin-bottom: 20px; line-height: 1.6; }
.btn-block { width: 100%; justify-content: center; display: flex; margin-bottom: 10px; }
.sidebar-cta .btn-outline { border-color: rgba(255,255,255,.3); color: var(--white); }
.sidebar-cta .btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.sidebar-stats { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat-item span { font-size: .78rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.sidebar-related { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; }
.sidebar-related h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-600); margin-bottom: 12px; }
.related-link { display: block; color: var(--navy); font-size: .875rem; font-weight: 500; padding: 6px 0; border-bottom: 1px solid var(--gray-100); transition: color var(--transition); }
.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--orange); }
.sidebar-hours { font-size: .8rem; color: rgba(255,255,255,.5); text-align: center; margin-top: 6px; }
.sidebar-trust h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-600); margin-bottom: 12px; }
.process-steps { padding-left: 20px; color: var(--gray-600); font-size: .875rem; line-height: 1.7; }
.process-steps li { margin-bottom: 6px; }

/* ── CTA Band (inner page variant) ── */
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band-inner h2 { color: var(--white); margin-bottom: 8px; }
.cta-band-inner p { color: rgba(255,255,255,.7); font-size: 1rem; }

/* ── Site Footer (inner pages use .site-footer) ── */
.site-footer { background: #080f1e; color: rgba(255,255,255,.7); padding: 60px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { margin-bottom: 10px; display: block; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.65; }
.footer-links { display: contents; }
.footer-links > div { display: flex; flex-direction: column; }
.footer-links strong { color: var(--white); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .875rem; margin-bottom: 8px; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-block h2 { margin-bottom: 28px; }
.contact-method { margin-bottom: 24px; }
.contact-method strong { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-600); margin-bottom: 4px; }
.contact-method a { color: var(--orange); font-size: 1.05rem; font-weight: 600; display: block; }
.contact-method span { display: block; color: var(--gray-600); font-size: .875rem; }
.contact-form-block h2 { margin-bottom: 20px; }
.contact-form, .quote-form { display: flex; flex-direction: column; gap: 0; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 5px; color: var(--gray-800); }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: .95rem; font-family: inherit; color: var(--text); background: var(--white); transition: border-color var(--transition); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--orange); }
.form-row textarea { resize: vertical; }
.form-note { text-align: center; font-size: .8rem; color: var(--gray-400); margin-top: 10px; }
.form-privacy { text-align: center; font-size: .78rem; color: var(--gray-400); margin-top: 8px; }
fieldset { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
legend { font-weight: 700; font-size: .9rem; padding: 0 8px; color: var(--navy); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: .9rem; cursor: pointer; }
.checkbox-label input { width: auto; }

/* ── Case Studies ── */
.case-study-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; margin-bottom: 32px; }
.cs-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cs-industry { background: rgba(15,30,61,.08); color: var(--navy); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 99px; }
.cs-result { background: rgba(249,115,22,.1); color: var(--orange-dark); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 10px; border-radius: 99px; }
.case-study-card h2 { font-size: 1.25rem; margin-bottom: 16px; }
.case-study-card p { color: var(--gray-600); font-size: .95rem; margin-bottom: 12px; line-height: 1.7; }
.case-study-card .feature-list { margin-top: 8px; }

/* ── CTA Inline ── */
.cta-inline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 32px; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.cta-inline h2, .cta-inline h3 { margin: 0 auto 0 0; font-size: 1.1rem; }

/* ── Process Steps / Ordered ── */
ol.process-steps { padding-left: 20px; margin: 12px 0; }

/* ════════════════════════════════════════════════
   PPC LANDING PAGES
   ════════════════════════════════════════════════ */
.ppc-page { background: var(--gray-50); }

.ppc-header { background: var(--navy); border-bottom: 2px solid var(--orange); padding: 14px 0; }
.ppc-header-inner { display: flex; align-items: center; justify-content: space-between; }
.ppc-phone { background: var(--orange); color: var(--white); font-weight: 700; font-size: 1rem; padding: 10px 22px; border-radius: var(--radius); transition: background var(--transition); }
.ppc-phone:hover { background: var(--orange-dark); }

.ppc-hero { background: var(--navy); padding: 64px 0 56px; }
.ppc-hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.ppc-hero-text h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.ppc-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 24px; }
.ppc-bullets { list-style: none; margin-bottom: 32px; }
.ppc-bullets li { color: rgba(255,255,255,.8); padding: 5px 0 5px 28px; position: relative; font-size: .95rem; }
.ppc-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.ppc-cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.ppc-call { font-size: .95rem; }
.ppc-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 600; padding: 5px 12px; border-radius: 99px; }

.ppc-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: 0 8px 40px rgba(0,0,0,.2); }
.ppc-form-title { font-size: 1.2rem; margin-bottom: 6px; color: var(--navy); }
.ppc-form-sub { font-size: .85rem; color: var(--gray-600); margin-bottom: 20px; }
.ppc-form .form-row { margin-bottom: 12px; }
.ppc-form input, .ppc-form select, .ppc-form textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: .9rem; font-family: inherit; }
.ppc-form input:focus, .ppc-form select:focus, .ppc-form textarea:focus { outline: none; border-color: var(--orange); }

.ppc-body { padding: 48px 0; }
.ppc-body-inner { background: var(--white); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--gray-200); }
.ppc-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.proof-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 4px; }
.proof-stat span { font-size: .8rem; color: var(--gray-600); font-weight: 600; }

.ppc-footer { background: var(--navy); padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); }
.ppc-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.ppc-footer-inner span, .ppc-footer-inner a { font-size: .8rem; color: rgba(255,255,255,.5); }
.ppc-footer-inner a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .ppc-hero-grid { grid-template-columns: 1fr; }
  .ppc-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .sidebar-stats { grid-template-columns: 1fr 1fr; }
  .ppc-cta-group { flex-direction: column; }
  .ppc-proof-grid { grid-template-columns: 1fr 1fr; }
}
