/* ═══════════════════════════════════════════════════════════
   CREST CUSTOMS SOLUTIONS — Premium Design System
   Inspired by Clearit.ca UX Philosophy
   Colors: Deep Navy + Teal + Gold | Fonts: Manrope + Inter
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:        #0B2240;
  --navy-mid:    #1A3A5C;
  --navy-light:  #EBF0F7;
  --navy-border: #D0DCE8;
  --teal:        #00C9C8;
  --teal-dark:   #00A5A4;
  --teal-light:  #E0FAFA;
  --gold:        #F59E0B;
  --gold-dark:   #D97706;
  --gold-light:  #FEF3C7;
  --white:       #FFFFFF;
  --grey:        #F7F9FC;
  --grey-mid:    #EEF2F7;
  --border:      #E2E8F0;
  --text:        #0F172A;
  --text-mid:    #334155;
  --text-light:  #64748B;
  --red:         #EF4444;
  --green:       #10B981;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:      0 4px 16px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --transition:  all 0.22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-mid); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.6; }
h1, h2, h3, h4, h5 { font-family: 'Manrope', sans-serif; color: var(--text); line-height: 1.2; font-weight: 800; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'Inter', sans-serif; border: none; outline: none; }
ul { list-style: none; }
input, select, textarea { font-family: 'Inter', sans-serif; }

/* ── LAYOUT UTILS ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 28px; }
.container-xs { max-width: 680px; margin: 0 auto; padding: 0 28px; }

/* ── UTILITY BAR ── */
.util-bar { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 9px 0; }
.util-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.util-left, .util-right { display: flex; align-items: center; gap: 20px; }
.util-link { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.7); transition: var(--transition); white-space: nowrap; }
.util-link:hover { color: var(--teal); }
.util-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.util-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.util-badge { background: rgba(0,201,200,0.15); border: 1px solid rgba(0,201,200,0.3); color: var(--teal); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.3px; }

/* ── NAVIGATION ── */
.main-nav { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.15; flex-shrink: 0; }
.nav-logo-name { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; }
.nav-logo-sub { font-size: 8.5px; font-weight: 600; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { font-size: 13.5px; font-weight: 500; color: var(--text-mid); padding: 8px 12px; border-radius: var(--radius-sm); transition: var(--transition); display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.nav-link:hover { color: var(--navy); background: var(--grey); }
.nav-link svg.chevron { width: 13px; height: 13px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg.chevron { transform: rotate(180deg); }
/* Dropdown */
.nav-dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 10px; min-width: 230px; box-shadow: var(--shadow-lg); z-index: 500; }
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown-link { display: flex; align-items: center; gap: 10px; padding: 9px 14px; font-size: 13px; color: var(--text-mid); border-radius: var(--radius-sm); transition: var(--transition); }
.nav-dropdown-link:hover { background: var(--navy-light); color: var(--navy); }
.nav-dropdown-link svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
/* NAV CTA */
.nav-cta-group { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-nav-secondary { font-size: 13px; font-weight: 600; color: var(--navy); padding: 9px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--navy-border); transition: var(--transition); }
.btn-nav-secondary:hover { background: var(--navy-light); }
.btn-nav-primary { font-size: 13px; font-weight: 700; color: var(--white); background: var(--gold); padding: 9px 20px; border-radius: var(--radius-sm); transition: var(--transition); }
.btn-nav-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,158,11,0.3); }
/* Mobile */
.nav-hamburger { display: none; background: none; border: none; padding: 6px; color: var(--text); }
.nav-hamburger svg { width: 22px; height: 22px; }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 600; overflow-y: auto; padding: 20px 28px 40px; }
.mobile-nav.open { display: block; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-close { background: none; border: none; padding: 4px; }
.mobile-close svg { width: 24px; height: 24px; color: var(--text); }
.mobile-links { display: flex; flex-direction: column; }
.mobile-link { font-size: 15px; font-weight: 600; color: var(--text); padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-link.sub { font-size: 13.5px; font-weight: 500; color: var(--text-light); padding: 10px 0 10px 16px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; border-radius: var(--radius-sm); transition: var(--transition); cursor: pointer; border: none; font-family: 'Inter', sans-serif; white-space: nowrap; }
.btn-lg { font-size: 15px; padding: 15px 32px; }
.btn-md { font-size: 14px; padding: 12px 24px; }
.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 4px 14px rgba(245,158,11,0.3); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,0.4); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn svg { width: 18px; height: 18px; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #0d2d4e 40%, #0a3a5c 100%); padding: 96px 0 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,201,200,0.08) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal)); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-bottom: 80px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,201,200,0.12); border: 1px solid rgba(0,201,200,0.3); color: var(--teal); font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); }
.hero-trust-item svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }
/* Hero Visual Panel */
.hero-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); padding: 36px; backdrop-filter: blur(10px); }
.hero-panel-title { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.hero-panel-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.hero-steps { display: flex; flex-direction: column; gap: 16px; }
.hero-step { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.07); border-radius: var(--radius); padding: 14px 18px; border: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
.hero-step:hover { background: rgba(255,255,255,0.12); border-color: rgba(0,201,200,0.3); }
.hero-step-num { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.hero-step-text { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-step-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hero-panel-cta { margin-top: 24px; }
/* Hero Stats Strip */
.hero-stats { background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stat { padding: 22px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 11.5px; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 0.3px; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 24px 0; }
.trust-items { display: flex; align-items: center; justify-content: space-evenly; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--navy-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 20px; height: 20px; color: var(--navy); }
.trust-text-main { font-size: 13.5px; font-weight: 700; color: var(--text); line-height: 1.2; }
.trust-text-sub { font-size: 11.5px; color: var(--text-light); }
.trust-divider { width: 1px; height: 36px; background: var(--border); }

/* ── SECTION BASICS ── */
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.section-white { background: var(--white); }
.section-grey { background: var(--grey); }
.section-navy { background: var(--navy); }
.section-navy-mid { background: var(--navy-mid); }
.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header-left { margin-bottom: 40px; }
.sec-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.sec-eyebrow::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--teal); border-radius: 2px; }
.sec-eyebrow.white { color: rgba(255,255,255,0.6); }
.sec-eyebrow.white::before { background: rgba(255,255,255,0.4); }
.sec-h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.sec-h2.white { color: var(--white); }
.sec-sub { font-size: 16px; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.75; }
.sec-sub.white { color: rgba(255,255,255,0.65); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 30px; transition: var(--transition); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--navy)); opacity: 0; transition: var(--transition); }
.service-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.sc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0; }
.sc-icon-navy { background: var(--navy-light); }
.sc-icon-teal { background: var(--teal-light); }
.sc-icon svg { width: 26px; height: 26px; }
.sc-icon-navy svg { color: var(--navy); }
.sc-icon-teal svg { color: var(--teal-dark); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; flex-grow: 1; margin-bottom: 18px; }
.sc-link { font-size: 13.5px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.sc-link:hover { color: var(--teal); gap: 10px; }
.sc-link svg { width: 16px; height: 16px; }
/* CARM card highlight */
.service-card.featured { border-color: var(--gold); }
.service-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--teal)); opacity: 1; }
.sc-tag { display: inline-block; background: var(--gold-light); color: var(--gold-dark); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; letter-spacing: 0.5px; margin-bottom: 10px; text-transform: uppercase; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 32px; left: calc(12.5%); width: calc(75%); height: 2px; background: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 8px, transparent 8px, transparent 16px); z-index: 0; }
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: 3px solid var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 20px; box-shadow: 0 0 0 6px var(--teal-light); }
.step-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 0 0 6px var(--navy-light); }
.step-icon svg { width: 28px; height: 28px; color: var(--teal); }
.step-item h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-item p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* ── WHY US PILLARS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); transition: var(--transition); }
.pillar-card:hover { border-color: var(--navy-border); box-shadow: var(--shadow); }
.pillar-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: var(--navy-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pillar-icon-wrap svg { width: 24px; height: 24px; color: var(--navy); }
.pillar-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pillar-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ── INDUSTRY TAGS ── */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.industry-tag { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px 20px; display: flex; align-items: center; gap: 14px; transition: var(--transition); cursor: default; }
.industry-tag:hover { border-color: var(--teal); background: var(--teal-light); }
.industry-tag-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--grey); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; transition: var(--transition); }
.industry-tag:hover .industry-tag-icon { background: var(--white); }
.industry-tag-name { font-size: 14px; font-weight: 600; color: var(--text); }

/* ── CARM BANNER ── */
.carm-banner { background: linear-gradient(135deg, var(--gold) 0%, #e67e00 100%); border-radius: var(--radius-lg); padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.carm-banner-icon { font-size: 48px; flex-shrink: 0; }
.carm-banner h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.carm-banner p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; max-width: 540px; }
.carm-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── FAQ ── */
.faq-container { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-trigger { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; cursor: pointer; transition: var(--transition); }
.faq-trigger:hover { background: var(--grey); }
.faq-trigger.active { background: var(--navy-light); }
.faq-question { font-family: 'Manrope', sans-serif; font-size: 15.5px; font-weight: 700; color: var(--text); }
.faq-trigger.active .faq-question { color: var(--navy); }
.faq-chevron { width: 22px; height: 22px; flex-shrink: 0; color: var(--teal); transition: transform 0.25s; }
.faq-trigger.active .faq-chevron { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 14.5px; color: var(--text-light); line-height: 1.8; background: var(--navy-light); }
.faq-answer.show { display: block; }

/* ── CTA BANNER ── */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(0,201,200,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { font-size: clamp(30px, 4vw, 46px); color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 36px; line-height: 1.75; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 96px 0 80px; }
.page-hero-inner { max-width: 820px; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.5); }
.page-breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.page-breadcrumb a:hover { color: var(--teal); }
.page-breadcrumb svg { width: 14px; height: 14px; }
.page-hero-tag { display: inline-block; background: rgba(0,201,200,0.12); border: 1px solid rgba(0,201,200,0.3); color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--white); margin-bottom: 18px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 640px; }

/* ── CHECK LIST ── */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 14px; }
.check-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-dot svg { width: 13px; height: 13px; color: var(--teal); stroke-width: 3; }
.check-text { font-size: 15px; color: var(--text-mid); line-height: 1.6; }

/* ── INFO BOXES ── */
.info-box { background: var(--navy-light); border-left: 4px solid var(--navy); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.warn-box { background: var(--gold-light); border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.teal-box { background: var(--teal-light); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── FORM ── */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,34,64,0.08); }
.form-group textarea { resize: vertical; }
.btn-form-submit { width: 100%; background: var(--gold); color: var(--white); font-size: 15px; font-weight: 700; padding: 16px; border-radius: var(--radius-sm); border: none; margin-top: 6px; cursor: pointer; transition: var(--transition); }
.btn-form-submit:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.btn-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-msg { display: none; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; margin-top: 12px; text-align: center; }
.form-msg.success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; display: block; }
.form-msg.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; display: block; }

/* ── CONTACT CARDS ── */
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: var(--transition); }
.contact-card:hover { border-color: var(--navy-border); box-shadow: var(--shadow); transform: translateY(-2px); }
.cc-icon { font-size: 32px; margin-bottom: 12px; }
.cc-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 6px; }
.cc-value { font-size: 15px; font-weight: 600; color: var(--text); }
.cc-value a { color: var(--text); transition: var(--transition); }
.cc-value a:hover { color: var(--navy); }
.cc-note { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ── PRICING CARDS ── */
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-xl); padding: 36px; transition: var(--transition); }
.pricing-card.featured { border-color: var(--navy); box-shadow: var(--shadow-md); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-badge { display: inline-block; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; margin-bottom: 14px; letter-spacing: 0.5px; text-transform: uppercase; }
.pricing-name { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pricing-price { font-family: 'Manrope', sans-serif; font-size: 42px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 8px; }
.pricing-period { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pf-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); }
.pf-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .footer-logo-name { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.3px; }
.footer-brand .footer-logo-sub { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.35); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 20px; }
.footer-license { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 10px 16px; font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-col h4 { font-family: 'Manrope', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--teal); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-bottom span { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-bottom span a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom span a:hover { color: var(--teal); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--teal); }

/* ── STAT BOXES ── */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; }
.stat-box .stat-num { font-family: 'Manrope', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-box .stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* ── TESTIMONIAL ── */
.testimonial { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--border); max-width: 780px; margin: 0 auto; position: relative; }
.testimonial::before { content: '\201C'; position: absolute; top: 16px; left: 28px; font-size: 80px; color: var(--navy-light); font-family: Georgia, serif; line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 17px; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 24px; padding-top: 8px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 18px; color: var(--white); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--text); }
.testimonial-role { font-size: 12.5px; color: var(--text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta-group { display: none; }
  .nav-hamburger { display: block; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 0; }
  .hero h1 { font-size: 34px; }
  .two-col, .three-col, .four-col { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .carm-banner { flex-direction: column; text-align: center; }
  .carm-banner-icon { font-size: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .util-right { display: none; }
  .hero-inner { padding: 0 0 60px; }
  .trust-items { justify-content: flex-start; gap: 12px; }
  .trust-divider { display: none; }
}
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr; }
  .hero-stat-num { font-size: 22px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
