/* ===========================================================================
   CarBlox — design system
   Static HTML/CSS/PHP rebuild — zero client-side JavaScript, zero inline
   styles. Colours/spacing ported directly from the live site's compiled
   Tailwind output (media.base44.com build), not approximated.
   =========================================================================== */

:root {
  --primary: #003D4C;
  --primary-hover: #00526a;
  --dark: #1A1A1A;
  --dark-hover: #000000;
  --foreground: #1A1A1A;
  --bg-page: #FDFCFA;
  --bg-alt: #F0F2F3;
  --footer-from: #F4F6F7;
  --footer-to: #EEF1F2;
  --card: #ffffff;
  --border: rgba(0,0,0,.05);
  --radius: 1rem;
  --container-width: 1280px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--bg-page);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
svg { flex-shrink: 0; }

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

/* ---- Buttons -------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 999px; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.01em; transition: background-color .2s, color .2s; border: none; }
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 0.9rem 2rem; }
.btn-md { padding: 0.75rem 1.75rem; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline { background: transparent; border: 1px solid rgba(0,61,76,.3); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-hover); }

/* ---- Navbar ----------------------------------------------------------------- */
.nav-toggle-input { position: absolute; }
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(255,255,255,.85); backdrop-filter: blur(10px); transition: background-color .3s; }
.navbar-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: flex; align-items: center; height: 48px; width: 160px; flex-shrink: 0; }
.logo img { height: 100%; width: 100%; object-fit: contain; }
.nav-links { display: none; align-items: center; gap: 2.25rem; }
.nav-links a { font-size: 0.875rem; letter-spacing: 0.01em; color: rgba(26,26,26,.7); position: relative; padding: 0.25rem 0; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-underline { position: absolute; bottom: -2px; left: 0; height: 1px; width: 0; background: var(--primary); transition: width .3s; }
.nav-links a:hover .nav-underline, .nav-links a.active .nav-underline { width: 100%; }
.nav-enquire { display: none; align-items: center; border-radius: 999px; background: var(--primary); color: #fff; font-size: 0.875rem; padding: 0.65rem 1.25rem; transition: background-color .2s; }
.nav-enquire:hover { background: var(--primary-hover); }
.hamburger-btn { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 10px; color: var(--dark); margin-left: auto; }
.hamburger-btn svg { width: 22px; height: 22px; }

.mobile-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 49; max-height: calc(100vh - 64px); overflow-y: auto; background: #fff; border-bottom: 1px solid var(--border); }
.mobile-nav-inner { display: flex; flex-direction: column; padding: 0.75rem 24px 1.25rem; gap: 0.15rem; }
.mobile-nav-inner a { padding: 0.75rem 0.5rem; border-radius: 10px; font-size: 0.9rem; font-weight: 500; }
.mobile-nav-inner a:hover { background: var(--bg-alt); }
.mobile-nav-enquire { margin-top: 0.5rem; background: var(--primary); color: #fff; border-radius: 999px; text-align: center; }
.nav-toggle-input:checked ~ .mobile-nav { display: block; }

@media (min-width: 768px) {
  .navbar-inner { height: 80px; }
  .nav-links { display: flex; }
  .nav-enquire { display: inline-flex; }
  .hamburger-btn { display: none; }
}

/* ---- Hero ------------------------------------------------------------------- */
.ghost-rules { position: absolute; inset: 0; background-image: repeating-linear-gradient(to right, transparent 0, transparent calc(100% / 12 - 1px), rgba(0,0,0,.035) calc(100% / 12 - 1px), rgba(0,0,0,.035) calc(100% / 12)); }

.hero { position: relative; padding-top: 64px; overflow: hidden; background: #fff; }
.hero-rules { opacity: 0.6; }
.hero-inner { position: relative; display: grid; gap: 3rem; align-items: center; padding: 4rem 0 5rem; }
.hero-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }
.hero-title { margin-top: 1.25rem; font-size: 2.25rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
.hero-desc { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(26,26,26,.65); max-width: 28rem; }
.hero-ctas { margin-top: 2.25rem; display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem; }
.hero-ctas .btn { width: 100%; }
.hero-media { position: relative; }
.hero-media-inner { position: relative; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; }
.hero-media-inner img { width: 100%; height: 100%; object-fit: contain; }

@media (min-width: 768px) {
  .hero { padding-top: 80px; }
  .hero-inner { grid-template-columns: 1fr 1fr; padding: 6rem 0 7rem; }
  .hero-title { font-size: 3.75rem; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .hero-ctas .btn { width: auto; }
}

/* ---- Trust bar ---------------------------------------------------------------- */
.trust-bar { padding: 3.5rem 0; background: var(--primary); }
.trust-label { text-align: center; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,.55); }
.trust-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
.trust-item svg { width: 28px; height: 28px; color: rgba(255,255,255,.8); }
.trust-item span { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,.85); letter-spacing: 0.01em; }

@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(6, 1fr); } }

/* ---- Range section -------------------------------------------------------------- */
.range-section { padding: 5rem 0; border-top: 1px solid var(--border); }
.range-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem; }
.range-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }
.range-title { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; max-width: 36rem; }
.range-desc { color: rgba(26,26,26,.6); max-width: 24rem; }
.range-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.range-card { display: flex; flex-direction: column; align-items: center; }
.range-swatch { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 1rem; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 10px -3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04); transition: box-shadow .3s; }
.range-card:hover .range-swatch { box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 12px 36px -18px rgba(15,23,42,.16); }
.range-swatch-inner { width: 92%; aspect-ratio: 1 / 1; position: relative; }
.range-swatch-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.range-label { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.01em; }
.range-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

@media (min-width: 640px) {
  .range-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .range-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) { .range-title { font-size: 3rem; } }
@media (min-width: 1024px) { .range-grid { grid-template-columns: repeat(6, 1fr); } }

/* ---- Features section ------------------------------------------------------------- */
.features-section { padding: 5rem 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-title { font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; max-width: 42rem; }
.features-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
.feature-card { background: #fff; border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); box-shadow: 0 2px 10px -3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04); transition: box-shadow .3s; }
.feature-card:hover { box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 12px 36px -18px rgba(15,23,42,.16); }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 0.75rem; background: rgba(0,61,76,.08); transition: background-color .2s; }
.feature-card:hover .feature-icon { background: rgba(0,61,76,.12); }
.feature-icon svg { width: 22px; height: 22px; color: var(--primary); }
.feature-card h3 { margin-top: 1rem; font-size: 1rem; font-weight: 600; }
.feature-card p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(26,26,26,.6); }

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .features-title { font-size: 3rem; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(5, 1fr); } }

/* ---- Steps section ------------------------------------------------------------------ */
.steps-section { padding: 5rem 0 2.5rem; border-top: 1px solid var(--border); }
.steps-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }
.steps-title { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; max-width: 42rem; text-wrap: balance; }
.steps-grid { margin-top: 3.5rem; display: grid; gap: 2rem; }
.step-top { display: flex; align-items: center; gap: 1rem; }
.step-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 1rem; background: var(--primary); color: #fff; flex-shrink: 0; }
.step-icon svg { width: 24px; height: 24px; }
.step-number { font-size: 3rem; font-weight: 600; letter-spacing: -0.02em; color: rgba(0,61,76,.15); }
.step-title { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.step-desc { margin-top: 0.75rem; color: rgba(26,26,26,.6); line-height: 1.7; max-width: 20rem; }

@media (min-width: 768px) { .steps-title { font-size: 3rem; } .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- CortegeBlox split section ------------------------------------------------------- */
.cortege-section { padding: 2.5rem 0 5rem; }
.cortege-card { position: relative; background: var(--card); border-radius: 2rem; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 12px 36px -18px rgba(15,23,42,.16); }
.cortege-grid { display: grid; align-items: stretch; }
.cortege-media { position: relative; min-height: 280px; }
.cortege-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cortege-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.cortege-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }
.cortege-title { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; text-wrap: balance; }
.cortege-desc { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(26,26,26,.65); max-width: 28rem; line-height: 1.7; }
.cortege-desc-sm { margin-top: 1rem; font-size: 1rem; color: rgba(26,26,26,.55); max-width: 28rem; line-height: 1.7; }
.cortege-cta { margin-top: 2rem; }

@media (min-width: 768px) {
  .cortege-media { min-height: 520px; }
  .cortege-grid { grid-template-columns: 1fr 1fr; }
  .cortege-body { padding: 3rem; }
  .cortege-title { font-size: 3rem; }
}
@media (min-width: 1024px) { .cortege-body { padding: 4rem; } }

/* ---- Footer -------------------------------------------------------------------------- */
.site-footer { position: relative; border-top: 1px solid var(--border); background: linear-gradient(to bottom, var(--footer-from), var(--footer-to)); }
.footer-grid { display: grid; gap: 2.5rem; padding: 4rem 0; }
.footer-logo { height: 48px; width: 144px; }
.footer-brand p { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(26,26,26,.6); max-width: 20rem; }
.footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.5); font-weight: 600; }
.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-col a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(26,26,26,.7); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-contact-address { align-items: flex-start; }
.footer-icon { width: 15px; height: 15px; flex-shrink: 0; }
.footer-contact-address .footer-icon { margin-top: 0.15rem; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1.5rem 0; border-top: 1px solid var(--border); margin-top: -1px; }
.footer-bottom p { font-size: 0.75rem; color: rgba(26,26,26,.45); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; }
}

/* ---- Shop: hero -------------------------------------------------------------------- */
.shop-hero { border-bottom: 1px solid var(--border); }
.shop-hero-inner { display: grid; gap: 3rem; align-items: center; padding: 4rem 0; }
.shop-hero-media { position: relative; border-radius: 1.5rem; overflow: hidden; background: #fff; border: 1px solid var(--border); aspect-ratio: 3 / 2; }
.shop-hero-media img { width: 100%; height: 100%; object-fit: contain; }
.page-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }
.page-title { margin-top: 0.75rem; font-size: 2.25rem; font-weight: 600; letter-spacing: -0.02em; max-width: 36rem; }
.page-desc { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(26,26,26,.65); max-width: 32rem; }

@media (min-width: 768px) {
  .shop-hero-inner { grid-template-columns: 1fr 1fr; padding: 6rem 0; }
  .page-title { font-size: 3.75rem; }
}

/* ---- Error page -------------------------------------------------------------------- */
.error-page { min-height: 55vh; display: flex; align-items: center; padding: 5rem 0; border-bottom: 1px solid var(--border); }
.error-page .btn { margin-top: 2rem; }

/* ---- Shop: product grid ------------------------------------------------------------- */
.shop-products-section { padding: 4rem 0; background: linear-gradient(to bottom, #F4F8F9, var(--bg-page)); }
.product-grid { display: grid; gap: 1.5rem; }
.product-card { display: flex; flex-direction: column; border-radius: 1rem; background: #fff; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .3s, transform .3s; }
.product-card:hover { box-shadow: 0 24px 60px -22px rgba(0,61,76,.3); transform: translateY(-4px); }
.product-card-media { position: relative; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; }
.product-card-media .ghost-rules { opacity: 0.4; }
.product-card-media-inner { position: relative; width: 66%; max-width: 200px; }
.product-card-media-inner.lg { width: 85%; max-width: 320px; }
.product-card-media-inner-sq { position: relative; aspect-ratio: 1 / 1; width: 100%; }
.product-card-media-inner-sq img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.product-card-tag { position: absolute; top: 1rem; left: 1rem; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(26,26,26,.4); }
.product-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.product-card-body h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.product-card-body p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(26,26,26,.6); line-height: 1.6; flex: 1; }
.product-card-footer { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.75rem; }

.pricing-notes { margin-top: 3rem; display: grid; gap: 0.75rem; }
.pricing-note-card { background: var(--card); box-shadow: 0 1px 2px #0f172a0a, 0 12px 36px -18px #0f172a29; border-radius: 1rem; border: 1px solid var(--border); padding: 1.25rem; }
.pricing-note-price { margin-top: 0.4rem; font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.pricing-note-sub { margin-top: 0.25rem; font-size: 0.875rem; color: rgba(26,26,26,.6); }
.shop-fine-print { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(26,26,26,.5); }
.shop-fine-print + .shop-fine-print { margin-top: 0.5rem; }

@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } .pricing-notes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- Shop: product configurator modals (Block / Board / Bundle) --------------------- */
.shopcfg-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.55); display: flex; align-items: center; justify-content: center; padding: 1.5rem; z-index: 200; }
.shopcfg-overlay[hidden] { display: none; }
.shopcfg-panel { position: relative; background: #fff; border-radius: 1.5rem; max-width: 58rem; width: 100%; max-height: 90vh; overflow-y: auto; display: grid; box-shadow: 0 40px 80px -20px rgba(0,0,0,.4); }
@media (min-width: 768px) {
  .shopcfg-panel { grid-template-columns: 1fr 1.15fr; max-height: 85vh; }
  .shopcfg-panel .shopcfg-body { padding-top: 3.75rem; }
}

.shopcfg-close { position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(15,23,42,.06); display: flex; align-items: center; justify-content: center; cursor: pointer; color: rgba(15,23,42,.6); z-index: 2; transition: background-color .2s; }
.shopcfg-close:hover { background: rgba(15,23,42,.12); }
.shopcfg-close svg { width: 16px; height: 16px; }

.shopcfg-media { background: #F7F8F9; display: flex; align-items: center; justify-content: center; padding: 2.5rem; min-height: 220px; }
.shopcfg-media img { width: 100%; max-width: 260px; aspect-ratio: 1 / 1; object-fit: contain; }

.shopcfg-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.5rem; }
.shopcfg-sr-title { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.shopcfg-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.5); margin-bottom: 0.75rem; }
.shopcfg-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.shopcfg-section-head .shopcfg-label { margin-bottom: 0; }
.shopcfg-count { font-size: 0.8125rem; color: rgba(26,26,26,.5); }

.shopcfg-tabs { display: flex; border: 1px solid var(--border); border-radius: 0.85rem; padding: 0.25rem; gap: 0.25rem; }
.shopcfg-tab { flex: 1; padding: 0.6rem 1rem; border-radius: 0.6rem; border: none; background: transparent; font-size: 0.875rem; font-weight: 600; color: rgba(26,26,26,.6); cursor: pointer; font-family: inherit; transition: background-color .2s, color .2s; }
.shopcfg-tab.is-active { background: var(--primary); color: #fff; }

.shopcfg-starting-number { margin-top: 1rem; display: none; }
.shopcfg-starting-number.is-visible { display: block; }
.shopcfg-mini-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.5); margin-bottom: 0.5rem; }
.shopcfg-number-input { width: 7rem; border-radius: 0.75rem; border: 1px solid var(--border); padding: 0.65rem 1rem; font-size: 1rem; font-family: inherit; }
.shopcfg-number-input:focus { outline: none; border-color: var(--primary); }

.shopcfg-color-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.shopcfg-color-row { border: 1px solid var(--border); border-radius: 1rem; padding: 0.85rem 1rem; }
.shopcfg-color-row-head { display: flex; align-items: center; gap: 0.6rem; }
.shopcfg-color-row-index { font-size: 0.6875rem; font-weight: 600; color: rgba(26,26,26,.35); }
.shopcfg-color-row-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }
.shopcfg-color-row-name { font-size: 0.9375rem; font-weight: 600; }
.shopcfg-color-row-qty { margin-top: 0.75rem; display: flex; align-items: center; justify-content: space-between; }

.shopcfg-stepper { display: flex; align-items: center; gap: 0.5rem; }
.shopcfg-stepper-btn { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 0.5rem; border: 1px solid var(--border); background: #fff; color: rgba(26,26,26,.7); cursor: pointer; transition: background-color .2s; }
.shopcfg-stepper-btn:hover { background: #F7F8F9; }
.shopcfg-stepper-btn:disabled { cursor: not-allowed; opacity: .5; }
.shopcfg-stepper-btn svg { width: 14px; height: 14px; }
.shopcfg-stepper-value { width: 2rem; text-align: center; font-variant-numeric: tabular-nums; font-weight: 600; }

.shopcfg-add-color-wrap { margin-top: 1rem; }
.shopcfg-add-color-label { font-size: 0.75rem; color: rgba(26,26,26,.45); margin-bottom: 0.5rem; }
.shopcfg-add-color-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.shopcfg-add-chip { display: flex; align-items: center; gap: 0.5rem; border-radius: 999px; border: 1px solid var(--border); background: #fff; padding: 0.35rem 0.75rem 0.35rem 0.35rem; cursor: pointer; font-family: inherit; transition: background-color .2s, border-color .2s; }
.shopcfg-add-chip:hover { background: #F7F8F9; border-color: rgba(0,61,76,.3); }
.shopcfg-add-chip-dot { width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); flex-shrink: 0; }
.shopcfg-add-chip-name { font-size: 0.8125rem; color: rgba(26,26,26,.7); }
.shopcfg-add-chip svg { width: 12px; height: 12px; color: rgba(26,26,26,.4); }

.shopcfg-check-row { display: flex; align-items: center; gap: 0.65rem; cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; text-align: left; }
.shopcfg-board-qty-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.5); }
.shopcfg-check-btn { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--border); background: #fff; color: transparent; cursor: pointer; flex-shrink: 0; transition: background-color .2s, border-color .2s, color .2s; }
.shopcfg-check-btn svg { width: 13px; height: 13px; }
.shopcfg-check-row.is-checked .shopcfg-check-btn { background: var(--primary); border-color: var(--primary); color: #fff; }
.shopcfg-check-text { font-size: 0.875rem; font-weight: 500; }

.shopcfg-board-qty-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.85rem; }
.shopcfg-board-hint { margin-top: 0.6rem; font-size: 0.8125rem; color: rgba(26,26,26,.5); }

.shopcfg-buybar { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.shopcfg-price { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.shopcfg-price-sub { margin-top: 0.2rem; font-size: 0.8125rem; color: rgba(26,26,26,.55); }

.shopcfg-contact-row { display: grid; gap: 0.75rem; grid-template-columns: 1fr 1fr; }

body.shopcfg-lock-scroll { overflow: hidden; }

/* Accessory configurators: product story at left, controls and checkout at right. */
.shopcfg-panel-accessory { max-width: 56rem; }
.shopcfg-product-aside { display: flex; flex-direction: column; background: #fff; border-right: 1px solid var(--border); }
.shopcfg-product-media { flex: 1; min-height: 250px; display: flex; align-items: center; justify-content: center; padding: 2.5rem; overflow: hidden; }
.shopcfg-product-media img { width: 100%; height: 100%; max-width: 260px; max-height: 300px; object-fit: contain; }
.shopcfg-product-media-wide img { max-width: 330px; }
.shopcfg-product-copy { padding: 0 2rem 1.75rem; }
.shopcfg-product-copy h2 { font-size: 1.25rem; font-weight: 600; letter-spacing: -.02em; }
.shopcfg-product-copy p { margin-top: .5rem; color: rgba(26,26,26,.62); font-size: .875rem; line-height: 1.65; }
.shopcfg-accessory-body { min-width: 0; }
.shopcfg-progress { height: 6px; margin: -.25rem 0 1rem; border-radius: 999px; overflow: hidden; background: #eef0f1; }
.shopcfg-progress span { display: block; height: 100%; width: 0; border-radius: inherit; background: var(--primary); transition: width .2s ease; }
.shopcfg-keytag-rows { display: flex; flex-direction: column; gap: .65rem; }
.shopcfg-keytag-row { display: flex; align-items: center; gap: .65rem; min-height: 54px; padding: .65rem .85rem; border: 1px solid var(--border); border-radius: .8rem; box-shadow: 0 1px 2px rgba(15,23,42,.04); }
.shopcfg-keytag-name { flex: 1; font-size: .875rem; font-weight: 600; }
.shopcfg-allocation-hint { margin-top: .75rem; color: rgba(26,26,26,.5); font-size: .75rem; }
.shopcfg-sets-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .85rem; border-top: 1px solid var(--border); }
.shopcfg-sets-row .shopcfg-label { margin-bottom: .15rem; }
.shopcfg-buybar .btn:disabled { cursor: not-allowed; opacity: .5; }

@media (max-width: 767px) {
  .shopcfg-overlay { padding: .75rem; align-items: flex-start; }
  .shopcfg-panel-accessory { max-height: calc(100vh - 1.5rem); }
  .shopcfg-product-aside { border-right: 0; border-bottom: 1px solid var(--border); }
  .shopcfg-product-media { min-height: 190px; padding: 1.5rem; }
  .shopcfg-product-copy { padding: 0 1.5rem 1.5rem; }
  .shopcfg-accessory-body { padding: 1.5rem; }
}

/* ---- Shop: accessories -------------------------------------------------------------- */
.accessories-section { padding: 4rem 0; border-top: 1px solid var(--border); }
.accessories-header { margin-bottom: 2.5rem; max-width: 42rem; }
.accessories-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }
.accessories-eyebrow-line { height: 1px; width: 2rem; background: rgba(0,61,76,.4); }
.accessories-title { margin-top: 1.25rem; font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; text-wrap: balance; line-height: 1.1; }
.accessories-desc { margin-top: 1rem; font-size: 1.125rem; color: rgba(26,26,26,.6); line-height: 1.6; }

.accessory-card { background: var(--card); box-shadow: 0 1px 2px #0f172a0a, 0 12px 36px -18px #0f172a29; border-radius: 1rem; border: 1px solid var(--border); overflow: hidden; display: grid; }
.accessory-card + .accessory-card, .accessory-card + .partner-card, .partner-card + .accessory-card, .partner-card + .partner-card { margin-top: 1.5rem; }
.accessory-media { position: relative; background: #fff; display: flex; align-items: center; justify-content: center; padding: 2rem; min-height: 280px; }
.accessory-media-inner { position: relative; height: 100%; max-height: 320px; width: auto; aspect-ratio: 3 / 4; }
.accessory-media-inner.wide { aspect-ratio: 3 / 2; }
.accessory-media-inner img { width: 100%; height: 100%; object-fit: contain; }
.accessory-body { padding: 1.5rem; display: flex; flex-direction: column; }
.accessory-kicker { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.accessory-title { margin-top: 0.5rem; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.accessory-desc { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(26,26,26,.6); line-height: 1.6; }
.accessory-colors-label { margin-top: 1.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.5); }
.swatch-row { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.65rem; }
.swatch-btn { height: 36px; width: 36px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); padding: 0; cursor: pointer; transition: transform .2s; appearance: none; }
.swatch-btn:hover { transform: scale(1.05); }
.swatch-input { position: absolute; opacity: 0; pointer-events: none; }
.swatch-input:checked + .swatch-btn { outline: 2px solid var(--primary); outline-offset: 2px; transform: scale(1.05); }
.swatch-static { height: 36px; width: 36px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); display: inline-block; }
.accessory-footer { margin-top: auto; padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.accessory-price { font-size: 1rem; font-weight: 600; letter-spacing: -0.02em; }
.accessory-price-sub { display: block; font-size: 0.75rem; font-weight: 400; color: rgba(26,26,26,.55); }
.configure-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); background: none; border: none; padding: 0; cursor: pointer; }
.configure-link svg { width: 14px; height: 14px; }

.partner-card { background: var(--card); box-shadow: 0 1px 2px #0f172a0a, 0 12px 36px -18px #0f172a29; border-radius: 1rem; border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column-reverse; }
.partner-body { flex: 1; padding: 1.5rem; display: flex; flex-direction: column; }
.partner-kicker-row { display: flex; align-items: center; gap: 0.65rem; }
.partner-kicker { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.partner-badge { flex-shrink: 0; border-radius: 999px; background: rgba(0,0,0,.04); padding: 0.15rem 0.65rem; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(26,26,26,.55); }
.partner-title { margin-top: 0.5rem; font-size: 1rem; font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.partner-desc { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(26,26,26,.6); line-height: 1.6; }
.partner-checklist { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.partner-checklist li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(26,26,26,.7); }
.partner-checklist svg { width: 15px; height: 15px; margin-top: 0.15rem; flex-shrink: 0; color: var(--primary); }
.partner-cta { margin-top: auto; padding-top: 1.5rem; }
.btn-primary-sm { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 999px; background: var(--primary); padding: 0.6rem 1.25rem; font-size: 0.875rem; font-weight: 600; color: #fff; box-shadow: 0 2px 10px -3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04); transition: background-color .2s; }
.btn-primary-sm:hover { background: #002A35; }
.btn-primary-sm svg { width: 15px; height: 15px; }
.partner-media { flex-shrink: 0; height: 176px; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.partner-media img { width: 100%; height: 100%; max-height: 176px; object-fit: contain; }

@media (min-width: 768px) { .accessory-card { grid-template-columns: 1fr 1fr; } .accessory-body { padding: 2rem; } .accessories-title { font-size: 2.25rem; } }
@media (min-width: 640px) { .partner-card { flex-direction: row; } .partner-media { height: auto; width: 224px; } }
@media (min-width: 768px) { .partner-media { width: 256px; } }

/* ---- Shop: bottom CTA band ----------------------------------------------------------- */
.shop-cta-band { padding: 4rem 0; background: var(--primary); }
.shop-cta-grid { display: grid; gap: 1rem; }
.shop-cta-card { display: block; background: var(--card); box-shadow: 0 1px 2px #0f172a0a, 0 12px 36px -18px #0f172a29; border-radius: 1rem; border: 1px solid var(--border); padding: 1.5rem; transition: box-shadow .3s; }
.shop-cta-card:hover { box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 12px 36px -18px rgba(15,23,42,.16); }
.shop-cta-kicker { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.shop-cta-title { margin-top: 0.5rem; font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.shop-cta-desc { margin-top: 0.4rem; font-size: 0.875rem; color: rgba(26,26,26,.6); }
.shop-cta-link { margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.shop-cta-link svg { width: 14px; height: 14px; }

@media (min-width: 640px) { .shop-cta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- Shop: swatch colours (fixed enum, real product colours) ------------------------ */
.swatch-black  { background-color: rgb(0, 0, 0); }
.swatch-blue   { background-color: rgb(0, 0, 179); }
.swatch-green  { background-color: rgb(0, 130, 70); }
.swatch-orange { background-color: rgb(232, 119, 34); }
.swatch-red    { background-color: rgb(185, 60, 29); }
.swatch-silver { background-color: rgb(131, 136, 140); }
.swatch-white  { background-color: rgb(255, 255, 255); }
.swatch-yellow { background-color: rgb(228, 229, 66); }

.swatch-tag-red    { background-color: rgb(211, 47, 47); }
.swatch-tag-blue   { background-color: rgb(40, 53, 147); }
.swatch-tag-green  { background-color: rgb(46, 125, 50); }
.swatch-tag-yellow { background-color: rgb(244, 208, 63); }
.swatch-tag-orange { background-color: rgb(245, 124, 0); }

/* ---- Mirror Hangers colour swatches swap the displayed photo (CSS-only, no JS) ------- */
.mh-photo { display: none; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.accessory-card:has(#mirror-black:checked)  .mh-photo-black,
.accessory-card:has(#mirror-blue:checked)   .mh-photo-blue,
.accessory-card:has(#mirror-green:checked)  .mh-photo-green,
.accessory-card:has(#mirror-orange:checked) .mh-photo-orange,
.accessory-card:has(#mirror-red:checked)    .mh-photo-red,
.accessory-card:has(#mirror-silver:checked) .mh-photo-silver,
.accessory-card:has(#mirror-white:checked)  .mh-photo-white,
.accessory-card:has(#mirror-yellow:checked) .mh-photo-yellow {
  display: block;
}

/* ---- Shared surface card (used across About / Cortège / Fleet Management) ----------- */
.surface-card { background: #fff; border-radius: 1rem; border: 1px solid var(--border); box-shadow: 0 2px 10px -3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04); transition: box-shadow .3s; }
.surface-card:hover { box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 12px 36px -18px rgba(15,23,42,.16); }

/* ---- Cortège page (distinct prefix from the homepage's .cortege-* promo strip) ------- */
.ctg-hero { border-bottom: 1px solid var(--border); }
.ctg-hero-inner { display: grid; gap: 3rem; align-items: center; padding: 5rem 0 4rem; }
.ctg-hero-title { font-size: 3rem; font-weight: 600; letter-spacing: -0.02em; color: var(--dark); text-wrap: balance; }
.ctg-hero-desc { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(26,26,26,.65); max-width: 28rem; line-height: 1.7; }
.ctg-hero-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.ctg-hero-media { position: relative; border-radius: 1.5rem; overflow: hidden; aspect-ratio: 4 / 3; background: #E8E9EB; border: 1px solid var(--border); box-shadow: 0 30px 60px -30px rgba(0,0,0,.25); }
.ctg-hero-media img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 768px) {
  .ctg-hero-inner { grid-template-columns: 1fr 1fr; padding: 7rem 0 5rem; }
  .ctg-hero-title { font-size: 4.5rem; }
}

.ctg-intro { padding: 4rem 0 5rem; border-bottom: 1px solid var(--border); background: #fff; text-align: center; }
.ctg-intro-inner { max-width: 56rem; margin: 0 auto; padding: 0 24px; }
.ctg-intro-media { width: 7rem; margin: 0 auto 2rem; aspect-ratio: 1 / 1; position: relative; mix-blend-mode: multiply; }
.ctg-intro-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.ctg-intro-title { font-size: 2.25rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.ctg-intro-desc { margin-top: 1.25rem; font-size: 1.25rem; color: rgba(26,26,26,.6); }

@media (min-width: 768px) {
  .ctg-intro-media { width: 9rem; }
  .ctg-intro-title { font-size: 3.75rem; }
  .ctg-intro-desc { font-size: 1.5rem; }
}

.ctg-features { padding: 3rem 0 4rem; }
.ctg-features-grid { display: grid; gap: 1.5rem; }
.ctg-feature-card { padding: 2rem; }
.ctg-feature-card h3 { margin-top: 0; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.ctg-feature-card p { margin-top: 0.75rem; font-size: 1rem; color: rgba(26,26,26,.65); line-height: 1.7; }
.ctg-feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 0.75rem; background: rgba(0,61,76,.08); margin-bottom: 1.25rem; }
.ctg-feature-icon svg { width: 24px; height: 24px; color: var(--primary); }

@media (min-width: 768px) { .ctg-features-grid { grid-template-columns: repeat(2, 1fr); } }

.ctg-range { padding: 4rem 0 6rem; scroll-margin-top: 6rem; }
.ctg-range-title { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 2.5rem; }

@media (min-width: 768px) { .ctg-range-title { font-size: 2.25rem; } }

.ctg-links { padding-bottom: 4rem; }
.ctg-links-grid { display: grid; gap: 1rem; }
.ctg-link-card { display: block; padding: 1.5rem; }
.ctg-link-kicker { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.ctg-link-title { margin-top: 0.5rem; font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.ctg-link-desc { margin-top: 0.4rem; font-size: 0.875rem; color: rgba(26,26,26,.6); }
.ctg-link-cta { margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.ctg-link-cta svg { width: 14px; height: 14px; }

@media (min-width: 640px) { .ctg-links-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- Shared: narrower container variant (used by About / Fleet Management sections) -- */
.container-narrow { max-width: 72rem; margin: 0 auto; padding: 0 24px; }

/* ---- Shared: form fields (Contact page + Fleet Management quote request) ------------- */
.cb-field { display: block; }
.cb-field-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.55); }
.cb-field-label .optional { margin-left: 0.5rem; text-transform: none; letter-spacing: normal; color: rgba(26,26,26,.35); }
.cb-input, .cb-textarea { width: 100%; margin-top: 0.5rem; border: 1px solid rgba(0,0,0,.12); border-radius: 0.75rem; padding: 0.8rem 1rem; font-size: 1rem; font-family: inherit; background: #FAFAFA; transition: border-color .2s, box-shadow .2s, background .2s; }
.cb-input::placeholder, .cb-textarea::placeholder { color: rgba(0,0,0,.3); }
.cb-input:focus, .cb-textarea:focus { outline: none; background: #fff; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,61,76,.12); }
.cb-textarea { resize: vertical; min-height: 8rem; font-family: inherit; }
.cb-field-error { margin-top: 0.4rem; font-size: 0.8125rem; color: #B3261E; }
.cb-form-note { font-size: 0.75rem; color: rgba(26,26,26,.4); line-height: 1.6; }

.cb-flash-success { display: flex; align-items: center; gap: 0.65rem; border-radius: 0.9rem; border: 1px solid rgba(0,61,76,.2); background: rgba(0,61,76,.06); color: var(--primary); padding: 1rem 1.25rem; font-size: 0.9rem; font-weight: 500; margin: 1.25rem 0; }
.cb-flash-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.cb-flash-cancel { border-radius: 0.9rem; border: 1px solid rgba(179,38,30,.25); background: rgba(179,38,30,.06); color: #B3261E; padding: 1rem 1.25rem; font-size: 0.9rem; font-weight: 500; margin: 1.25rem 0; }

/* ---- Fleet Management page ------------------------------------------------------------ */
.fm-hero { position: relative; background: #fff; border-bottom: 1px solid var(--border); overflow: hidden; }
.fm-hero-rules { opacity: .5; }
.fm-hero-inner { position: relative; display: grid; gap: 3rem; align-items: center; padding: 4rem 0; }
.fm-hero-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }
.fm-hero-title { margin-top: 1.25rem; font-size: 2.25rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; text-wrap: balance; }
.fm-hero-desc { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(26,26,26,.65); max-width: 28rem; line-height: 1.7; }
.fm-hero-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.fm-hero-media { position: relative; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; border-radius: 1.5rem; background: #fff; border: 1px solid var(--border); box-shadow: 0 30px 60px -30px rgba(0,0,0,.18); overflow: hidden; }
.fm-hero-media img { width: 100%; height: 100%; object-fit: contain; }

@media (min-width: 768px) { .fm-hero-inner { grid-template-columns: 1fr 1fr; padding: 6rem 0; } .fm-hero-title { font-size: 3.75rem; } }

.fm-practice { padding: 4rem 0; }
.fm-practice-head { max-width: 42rem; margin-bottom: 3rem; }
.fm-practice-head h2 { margin-top: 1.25rem; font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.fm-practice-head p { margin-top: 1.25rem; font-size: 1.125rem; color: rgba(26,26,26,.6); line-height: 1.7; }
.fm-practice-grid { display: grid; gap: 1.5rem; }
.fm-practice-card { padding: 2rem; }
.fm-practice-card h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.fm-practice-card p { margin-top: 0.75rem; font-size: 1rem; color: rgba(26,26,26,.65); line-height: 1.7; }
.fm-practice-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 0.75rem; background: rgba(0,61,76,.08); margin-bottom: 1.25rem; }
.fm-practice-icon svg { width: 24px; height: 24px; color: var(--primary); }

@media (min-width: 768px) { .fm-practice-head h2 { font-size: 3rem; } .fm-practice-grid { grid-template-columns: repeat(2, 1fr); } }

.fm-pricing-strip { padding: 2.5rem 0; border-top: 1px solid var(--border); background: #F7F8F9; }
.fm-pricing-grid { display: grid; gap: 1rem; }
.fm-pricing-card { padding: 1.5rem; }
.fm-pricing-kicker { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }
.fm-pricing-figure { margin-top: 0.4rem; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.fm-pricing-note { margin-top: 0.4rem; font-size: 0.875rem; color: rgba(26,26,26,.6); }

@media (min-width: 640px) { .fm-pricing-grid { grid-template-columns: repeat(2, 1fr); } }

.fm-config { padding: 4rem 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); scroll-margin-top: 5rem; }
.fm-config-head { max-width: 42rem; margin-bottom: 2.5rem; }
.fm-config-head h2 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; }
.fm-config-head p { margin-top: 1rem; font-size: 1.125rem; color: rgba(26,26,26,.6); }

.fm-config-card { border-radius: 2rem; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 20px 50px -24px rgba(15,23,42,.2); }
.fm-builder { display: grid; }

/* -- left panel: numbering / colours / board, real inputs styled dark ----------------- */
.fm-builder-panel { background: var(--primary); color: #fff; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.fm-builder-block { border-radius: 1rem; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); padding: 1.25rem; }
.fm-builder-block-head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.fm-builder-block-head .num { font-size: 0.625rem; font-weight: 600; color: rgba(255,255,255,.4); }
.fm-builder-block-head .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,.6); }

.fm-toggle-btn { display: flex; align-items: center; gap: 0.75rem; background: none; border: none; padding: 0; cursor: pointer; text-align: left; font-family: inherit; }
.fm-toggle-box { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 6px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: transparent; flex-shrink: 0; transition: background-color .2s, border-color .2s, color .2s; }
.fm-toggle-box svg { width: 13px; height: 13px; }
.fm-toggle-btn.is-checked .fm-toggle-box { background: #fff; border-color: #fff; color: var(--primary); }
.fm-toggle-text { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,.85); }

.fm-starting-number { margin-top: 1rem; display: none; }
.fm-starting-number.is-visible { display: block; }
.fm-mini-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,.6); }
.fm-number-input { margin-top: 0.5rem; width: 7rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); padding: 0.7rem 1rem; font-size: 1rem; color: #fff; font-family: inherit; }
.fm-number-input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.15); }
.fm-hint { margin-top: 0.5rem; font-size: 0.8125rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.fm-hint strong { font-weight: 500; color: #fff; }

.fm-block-head-between { display: flex; align-items: center; justify-content: space-between; }
.fm-block-head-between > span:first-child { display: flex; align-items: center; gap: 0.5rem; }
.fm-color-count { font-size: 0.8125rem; color: rgba(255,255,255,.6); }

.fm-color-rows { display: flex; flex-direction: column; gap: 0.6rem; }
.fm-color-row { display: flex; align-items: center; gap: 0.75rem; border-radius: 0.75rem; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.22); padding: 0.6rem 0.75rem; }
.fm-color-row-dot { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.fm-color-row-name { flex: 1; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,.95); }

.fm-stepper { display: flex; align-items: center; gap: 0.35rem; }
.fm-stepper-btn { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 0.5rem; border: none; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; transition: background-color .2s; }
.fm-stepper-btn:hover { background: rgba(255,255,255,.2); }
.fm-stepper-btn svg { width: 14px; height: 14px; }
.fm-stepper-value { width: 2.25rem; text-align: center; font-variant-numeric: tabular-nums; font-size: 0.875rem; font-weight: 500; color: #fff; }

.fm-add-color-wrap { margin-top: 1rem; }
.fm-add-color-label { font-size: 0.75rem; color: rgba(255,255,255,.5); margin-bottom: 0.5rem; }
.fm-add-color-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.fm-add-chip { display: flex; align-items: center; gap: 0.5rem; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 0.3rem 0.7rem 0.3rem 0.3rem; cursor: pointer; transition: background-color .2s; font-family: inherit; }
.fm-add-chip:hover { background: rgba(255,255,255,.1); }
.fm-add-chip-dot { width: 22px; height: 22px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); flex-shrink: 0; }
.fm-add-chip-name { font-size: 0.75rem; color: rgba(255,255,255,.7); }
.fm-add-chip svg { width: 13px; height: 13px; color: rgba(255,255,255,.5); }

.fm-color-dot-dark-blue { background: rgb(0, 34, 119); }
.fm-color-dot-green     { background: rgb(51, 153, 68); }
.fm-color-dot-orange    { background: rgb(255, 119, 34); }
.fm-color-dot-red       { background: rgb(187, 17, 17); }
.fm-color-dot-white     { background: rgb(232, 232, 232); }
.fm-color-dot-yellow    { background: rgb(255, 204, 0); }

.fm-board-row { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; }
.fm-board-thumb-col { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.fm-board-thumb { width: 84px; height: 84px; border-radius: 0.9rem; background: #fff; padding: 0.6rem; }
.fm-board-thumb img { width: 100%; height: 100%; object-fit: contain; }
.fm-board-options { display: flex; flex-direction: column; gap: 0.85rem; transition: opacity .2s; }
.fm-board-options.is-disabled { opacity: .45; }
.fm-toggle-btn:disabled,
.fm-stepper-btn:disabled { cursor: not-allowed; }

/* -- right panel: static "your set" preview + price reference + contact fields -------- */
.fm-summary-panel { background: #fff; padding: 1.5rem; }
.fm-summary-head { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.6); }
.fm-summary-head svg { width: 16px; height: 16px; }
.fm-summary-media { margin-top: 1.25rem; min-height: 150px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.25rem; }
.fm-summary-empty { font-size: 0.875rem; color: rgba(26,26,26,.5); text-align: center; }
.fm-example-block { position: relative; width: 108px; }
.fm-example-block img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.fm-example-badge { position: absolute; top: -6px; right: -6px; min-width: 24px; height: 24px; padding: 0 6px; border-radius: 999px; background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.fm-summary-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.fm-summary-row { display: flex; align-items: center; gap: 0.65rem; font-size: 0.875rem; color: rgba(26,26,26,.8); }
.fm-summary-row svg { width: 15px; height: 15px; color: rgba(26,26,26,.4); flex-shrink: 0; }
.fm-summary-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }

.fm-quote-price { margin-top: 1.5rem; border-radius: 1rem; border: 1px solid var(--border); background: #F7F8F9; padding: 1.25rem; }
.fm-quote-price-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; color: rgba(26,26,26,.65); }
.fm-quote-price-row + .fm-quote-price-row { margin-top: 0.5rem; }
.fm-quote-price-total { margin-top: 0.65rem; padding-top: 0.65rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.fm-quote-price-total span:first-child { font-size: 0.875rem; font-weight: 600; }
.fm-quote-price-total span:last-child { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.fm-quote-price-sub { margin-top: 0.65rem; font-size: 0.75rem; color: rgba(26,26,26,.5); }

.fm-contact-mini { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.fm-contact-mini-row { display: grid; gap: 1rem; }

.fm-summary-panel > .btn { margin-top: 1.5rem; width: 100%; }

@media (min-width: 480px) { .fm-contact-mini-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .fm-builder { grid-template-columns: 3fr 2fr; } }

.fm-fleets { padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.fm-fleets h2 { font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; max-width: 36rem; margin-bottom: 3rem; }
.fm-fleets-grid { display: grid; gap: 1.5rem; }
.fm-fleets-card { padding: 1.5rem; }
.fm-fleets-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 0.75rem; background: rgba(0,61,76,.08); margin-bottom: 1rem; }
.fm-fleets-icon svg { width: 22px; height: 22px; color: var(--primary); }
.fm-fleets-card h3 { font-size: 1rem; font-weight: 600; }
.fm-fleets-card p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(26,26,26,.6); }

@media (min-width: 768px) { .fm-fleets h2 { font-size: 3rem; } }
@media (min-width: 640px) { .fm-fleets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fm-fleets-grid { grid-template-columns: repeat(4, 1fr); } }

.fm-final-cta { padding: 4rem 0; text-align: center; }
.fm-final-cta-inner { max-width: 42rem; margin: 0 auto; }
.fm-final-cta h2 { font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; text-wrap: balance; }
.fm-final-cta p { margin-top: 1rem; font-size: 1.125rem; color: rgba(26,26,26,.6); max-width: 28rem; margin-left: auto; margin-right: auto; }
.fm-final-cta-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }

@media (min-width: 768px) { .fm-final-cta h2 { font-size: 2.25rem; } }

/* ---- FAQ page --------------------------------------------------------------------------- */
.faq-hero { position: relative; overflow: hidden; background: #F7F8F9; border-bottom: 1px solid var(--border); }
.faq-hero-rules { position: absolute; inset: 0; opacity: .5; }
.faq-hero-inner { position: relative; display: grid; gap: 3rem; align-items: center; padding: 4rem 0; }
.faq-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; background: rgba(0,61,76,.08); padding: 0.4rem 1rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 1.5rem; }
.faq-hero-badge svg { width: 13px; height: 13px; }
.faq-hero-title { font-size: 2.5rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; text-wrap: balance; }
.faq-hero-desc { margin-top: 1.25rem; font-size: 1.125rem; color: rgba(26,26,26,.65); max-width: 28rem; line-height: 1.7; }
.faq-hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.faq-hero-media { display: none; }
.faq-hero-media-inner { position: relative; aspect-ratio: 1 / 1; max-width: 26rem; margin: 0 auto; mix-blend-mode: multiply; }
.faq-hero-media-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }

@media (min-width: 768px) { .faq-hero-inner { grid-template-columns: 1.3fr 1fr; padding: 6rem 0; } .faq-hero-title { font-size: 3.75rem; } .faq-hero-media { display: block; } }

.faq-body { padding: 4rem 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.faq-layout { display: grid; gap: 2.5rem; }
.faq-topics { display: none; }
.faq-topics-inner { position: sticky; top: 7rem; }
.faq-topics-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.4); margin-bottom: 1rem; padding: 0 0.75rem; }
.faq-topics-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.faq-topics-nav a { padding: 0.65rem 0.75rem; border-radius: 0.6rem; font-size: 0.875rem; font-weight: 500; color: rgba(26,26,26,.6); }
.faq-topics-nav a:hover { background: rgba(255,255,255,.7); color: var(--dark); }
.faq-topics-card { margin-top: 2rem; border-radius: 1rem; border: 1px solid var(--border); background: #fff; padding: 1.25rem; }
.faq-topics-card p:first-child { font-size: 0.875rem; font-weight: 500; }
.faq-topics-card p:last-of-type { margin-top: 0.4rem; font-size: 0.75rem; color: rgba(26,26,26,.55); line-height: 1.6; }
.faq-topics-card .btn { margin-top: 1rem; width: 100%; }

.faq-mobile-pills { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 1.5rem; }
.faq-mobile-pills a { white-space: nowrap; border-radius: 999px; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; background: #fff; color: rgba(26,26,26,.6); border: 1px solid var(--border); }

.faq-categories { display: flex; flex-direction: column; gap: 3rem; }
.faq-category { scroll-margin-top: 7rem; }
.faq-category-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.faq-category-num { font-size: 0.75rem; font-weight: 600; color: var(--primary); }
.faq-category-head h2 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.faq-category-line { flex: 1; height: 1px; background: rgba(0,0,0,.05); }
.faq-list { background: #fff; border-radius: 1rem; border: 1px solid var(--border); padding: 0 0.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1rem; font-size: 1rem; font-weight: 500; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 16px; height: 16px; color: rgba(26,26,26,.4); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item-answer { padding: 0 1rem 1.25rem; font-size: 0.9375rem; color: rgba(26,26,26,.65); line-height: 1.7; }

@media (min-width: 1024px) { .faq-layout { grid-template-columns: 220px 1fr; } .faq-topics { display: block; } .faq-mobile-pills { display: none; } }

.faq-cta { padding: 4rem 0 5rem; text-align: center; }
.faq-cta-inner { max-width: 42rem; margin: 0 auto; }
.faq-cta h2 { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.faq-cta p { margin-top: 0.75rem; color: rgba(26,26,26,.6); }
.faq-cta-ctas { margin-top: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }

@media (min-width: 768px) { .faq-cta h2 { font-size: 1.875rem; } }

/* ---- Shared: soft two-tone corner decoration (About + Contact hero backgrounds) ------ */
.split-hero-decoration { position: absolute; inset: 0; opacity: .5; pointer-events: none; background-image: radial-gradient(900px 420px at 92% -10%, rgba(206,235,243,.6), transparent 60%), radial-gradient(640px 380px at -6% 110%, rgba(245,233,214,.5), transparent 58%); }

/* ---- About page ------------------------------------------------------------------------ */
.abt-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); background: #F7F8F9; }
.abt-hero-inner { position: relative; display: grid; gap: 3rem; align-items: center; padding: 4rem 0; }
.abt-hero-kicker { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }
.abt-hero-kicker-line { height: 1px; width: 2rem; background: rgba(0,61,76,.4); }
.abt-hero-title { margin-top: 1.25rem; font-size: 2.25rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; text-wrap: balance; }
.abt-hero-desc { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(26,26,26,.65); max-width: 32rem; line-height: 1.7; }
.abt-hero-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.abt-hero-media { position: relative; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; border-radius: 1.5rem; background: #fff; border: 1px solid var(--border); box-shadow: 0 30px 60px -30px rgba(0,0,0,.18); overflow: hidden; }
.abt-hero-media img { width: 100%; height: 100%; object-fit: contain; }

@media (min-width: 768px) { .abt-hero-inner { grid-template-columns: 1fr 1fr; padding: 6rem 0; } .abt-hero-title { font-size: 3.75rem; } }

.abt-section { padding: 4rem 0; }
.abt-section.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.abt-section-head { max-width: 42rem; }
.abt-section-head h2 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; text-wrap: balance; }
.abt-section-head p { margin-top: 1.25rem; font-size: 1.125rem; color: rgba(26,26,26,.65); line-height: 1.7; }

@media (min-width: 768px) { .abt-section-head h2 { font-size: 3rem; } }

.abt-card-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
.abt-icon-box { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 0.75rem; background: rgba(0,61,76,.08); margin-bottom: 1rem; }
.abt-icon-box svg { width: 22px; height: 22px; color: var(--primary); }
.abt-card { padding: 1.5rem; }
.abt-card h3 { font-size: 1rem; font-weight: 600; }
.abt-card p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(26,26,26,.6); line-height: 1.6; }

@media (min-width: 640px) { .abt-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .abt-card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } .abt-card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.abt-cta-band { position: relative; overflow: hidden; border-radius: 1.5rem; background: var(--primary); padding: 3.5rem 2rem; text-align: center; }
.abt-cta-decoration { position: absolute; inset: 0; opacity: .3; pointer-events: none; background-image: radial-gradient(700px 320px at 50% -20%, rgba(92,190,214,.5), transparent 60%); }
.abt-cta-inner { position: relative; }
.abt-cta-inner h2 { font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; color: #fff; text-wrap: balance; }
.abt-cta-inner p { margin-top: 1.25rem; font-size: 1.125rem; color: rgba(255,255,255,.7); max-width: 32rem; margin-left: auto; margin-right: auto; line-height: 1.7; }
.abt-cta-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: rgba(255,255,255,.9); }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

@media (min-width: 768px) { .abt-cta-band { padding: 5rem 4rem; } .abt-cta-inner h2 { font-size: 3rem; } }

/* ---- Contact page ------------------------------------------------------------------------ */
.ctc-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); background: #F7F8F9; }
.ctc-hero-inner { position: relative; padding: 4rem 0; }
.ctc-hero-grid { display: grid; gap: 2.5rem; align-items: end; }
.ctc-hero-kicker { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); }
.ctc-hero-kicker-line { height: 1px; width: 2rem; background: rgba(0,61,76,.4); }
.ctc-hero-title { margin-top: 1.25rem; font-size: 2.25rem; font-weight: 600; letter-spacing: -0.02em; max-width: 32rem; text-wrap: balance; }
.ctc-hero-desc { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(26,26,26,.65); max-width: 28rem; line-height: 1.7; }
.ctc-hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.ctc-hero-stat { border-radius: 1rem; background: #fff; border: 1px solid var(--border); padding: 1.25rem; box-shadow: 0 8px 30px -18px rgba(0,0,0,.15); }
.ctc-hero-stat-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.45); }
.ctc-hero-stat-value { margin-top: 0.5rem; display: block; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.ctc-hero-stat-value:hover { color: var(--primary); }

@media (min-width: 768px) { .ctc-hero-inner { padding: 6rem 0; } .ctc-hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; } .ctc-hero-title { font-size: 3.75rem; } }

.ctc-body { padding: 4rem 0 6rem; }
.ctc-body-grid { display: grid; gap: 2.5rem; align-items: stretch; }
.ctc-media-col { display: flex; flex-direction: column; gap: 1.5rem; }
.ctc-media-stack { position: relative; flex: 1; min-height: 320px; border-radius: 1.25rem; overflow: hidden; background: #F0F2F3; }
.ctc-media-stack > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.ctc-media-overlay { position: absolute; bottom: 0; right: 0; width: 45%; }
.ctc-media-overlay img { width: 100%; display: block; }
.ctc-info-card { display: flex; flex-direction: column; gap: 0.9rem; border-radius: 1rem; background: #fff; border: 1px solid var(--border); padding: 1.5rem; }
.ctc-info-row { display: flex; align-items: center; gap: 0.9rem; }
.ctc-info-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-alt); color: var(--primary); flex-shrink: 0; }
.ctc-info-icon svg { width: 17px; height: 17px; }
.ctc-info-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(26,26,26,.45); }
.ctc-info-value { margin-top: 0.15rem; font-size: 0.875rem; color: rgba(26,26,26,.8); }
.ctc-info-value a:hover { color: var(--primary); }
.ctc-info-divider { height: 1px; background: rgba(0,0,0,.05); }

.ctc-form-card { background: #fff; border-radius: 1.5rem; border: 1px solid var(--border); padding: 2rem; box-shadow: 0 30px 60px -40px rgba(0,0,0,.25); }
.ctc-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ctc-form-row { display: grid; gap: 1.25rem; }

@media (min-width: 640px) { .ctc-form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .ctc-body-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; } }

.ctc-guidance { padding: 4rem 0 5rem; background: var(--bg-alt); border-top: 1px solid var(--border); }
.ctc-guidance-head { max-width: 46rem; }
.ctc-guidance-head h2 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; text-wrap: balance; }
.ctc-guidance-head > p:last-child { margin-top: 1rem; color: rgba(26,26,26,.65); line-height: 1.7; }
.ctc-guidance-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.ctc-guidance-card { padding: 1.5rem; border-radius: 1rem; background: #fff; border: 1px solid var(--border); }
.ctc-guidance-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 0.75rem; background: rgba(0,61,76,.08); color: var(--primary); }
.ctc-guidance-icon svg { width: 21px; height: 21px; }
.ctc-guidance-card h3 { margin-top: 1rem; font-size: 1rem; font-weight: 600; }
.ctc-guidance-card p { margin-top: 0.6rem; font-size: 0.9rem; color: rgba(26,26,26,.62); line-height: 1.7; }

@media (min-width: 768px) {
  .ctc-guidance-head h2 { font-size: 2.5rem; }
  .ctc-guidance-grid { grid-template-columns: repeat(3, 1fr); }
}
