/* Updated 2026-06-01 */
/* ============================================================
   BG Enterprises — Main Stylesheet
   https://b-g-enterprises.com
   ============================================================ */

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

/* -------- CSS Variables -------- */
:root {
  --primary-gold: #D49A2A;
  --secondary-gold: #E2B65A;
  --teal: #00D4E8;
  --royal-blue: #0A2F7A;
  --black: #000000;
  --white: #FFFFFF;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 32px 64px rgba(0,0,0,0.2);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
  --container-max: 1200px;
  --container-pad: 1.25rem;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --nav-height: 72px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* -------- Typography -------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(1.875rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.2rem; font-weight: 700; }
h5 { font-size: 1.05rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--gray-700); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* -------- Layout -------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--dark { background: var(--royal-blue); color: var(--white); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.82); }
.section--black { background: var(--black); color: var(--white); }
.section--gray { background: var(--gray-50); }
.section--gold { background: var(--primary-gold); }
.section--gold h2,.section--gold h3,.section--gold p { color: var(--white); }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.text-center { text-align: center; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow { display: inline-block; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.075rem; max-width: 640px; margin: 0 auto; }
.divider { height: 4px; background: linear-gradient(90deg, var(--primary-gold), var(--teal)); border-radius: var(--radius-full); width: 60px; margin: 1rem auto; }
.divider--left { margin-left: 0; }

/* -------- Buttons -------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 1.875rem; font-size: 0.9375rem; font-weight: 700; border-radius: var(--radius-full); transition: all var(--transition); cursor: pointer; border: 2px solid transparent; white-space: nowrap; font-family: var(--font-heading); letter-spacing: 0.02em; }
.btn-primary { background: var(--primary-gold); color: var(--white); border-color: var(--primary-gold); }
.btn-primary:hover { background: var(--secondary-gold); border-color: var(--secondary-gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,154,42,0.4); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--royal-blue); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary-gold); border-color: var(--primary-gold); }
.btn-outline:hover { background: var(--primary-gold); color: var(--white); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--royal-blue); border-color: var(--teal); font-weight: 800; }
.btn-teal:hover { background: #00bcd4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,232,0.3); }
.btn-blue { background: var(--royal-blue); color: var(--white); border-color: var(--royal-blue); }
.btn-blue:hover { background: #0d3a97; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,47,122,0.35); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.875rem; }

/* -------- Header / Navigation -------- */
.header-topbar { background: var(--black); padding: 0.5rem 0; font-size: 0.8rem; }
.header-topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.375rem; }
.header-topbar a { color: var(--gray-300); transition: color var(--transition-fast); }
.header-topbar a:hover { color: var(--secondary-gold); }
.topbar-contact { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-contact span { display: flex; align-items: center; gap: 0.4rem; color: var(--gray-300); }
.topbar-right { display: none; align-items: center; gap: 0.875rem; }
.topbar-right a { color: var(--gray-300); font-size: 0.8rem; }

.site-header { background: var(--royal-blue); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.3); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.45); }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); gap: 1rem; }
.logo { display: flex; flex-direction: row; align-items: center; flex-shrink: 0; gap: .75rem; text-decoration: none; }
.logo img { height: 44px; width: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: .18rem; }
.logo-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.01em; white-space: nowrap; }
.logo-tagline { font-size: .58rem; font-weight: 700; color: var(--secondary-gold); letter-spacing: .08em; text-transform: uppercase; line-height: 1; opacity: .9; white-space: nowrap; }
/* Logo tagline visible at all widths — sized down on small screens in the mobile block below */
@media(max-width: 480px) { .logo img { height: 36px; width: 36px; } .logo-name { font-size: 1rem; } .logo { gap: .5rem; } }
.footer-company-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--white); margin: .5rem 0 .25rem; letter-spacing: -.01em; }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; background: none; border: none; cursor: pointer; order: 3; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--royal-blue); padding: 1rem 0; box-shadow: 0 8px 30px rgba(0,0,0,0.3); max-height: calc(100vh - var(--nav-height)); overflow-y: auto; }
.nav-menu.active { display: flex; }
.nav-menu li a { display: block; padding: 0.6875rem var(--container-pad); color: var(--white); font-weight: 600; font-size: 0.9375rem; transition: all var(--transition-fast); border-left: 3px solid transparent; }
.nav-menu li a:hover,.nav-menu li a.active { color: var(--secondary-gold); border-left-color: var(--primary-gold); background: rgba(255,255,255,0.05); }
.nav-menu .has-dropdown > a { display: flex; align-items: center; justify-content: space-between; }
.nav-menu .has-dropdown > a::after { content: '▾'; font-size: 0.75rem; transition: transform var(--transition-fast); margin-left: 0.5rem; }
.nav-menu .has-dropdown.open > a::after { transform: rotate(180deg); }
.nav-menu .dropdown { display: none; background: rgba(0,0,0,0.2); }
.nav-menu .has-dropdown.open .dropdown { display: block; }
.nav-menu .dropdown li a { padding-left: calc(var(--container-pad) + 1.25rem); font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.82); border-left: none; }
.nav-menu .dropdown li a:hover { color: var(--secondary-gold); background: rgba(255,255,255,0.07); border-left: none; }
.nav-menu .nav-cta a { margin: 0.5rem var(--container-pad); border-radius: var(--radius-full); text-align: center; background: var(--primary-gold); border-left: none; padding-left: 1rem; padding-right: 1rem; }
.nav-menu .nav-cta a:hover { background: var(--secondary-gold); border-left: none; }

/* -------- Hero -------- */
.hero { position: relative; min-height: 100svh; min-height: 100vh; display: flex; align-items: center; background: var(--royal-blue); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.pexels.com/photos/9875680/pexels-photo-9875680.jpeg?w=1600&q=90'); background-size: cover; background-position: center top; opacity: 0.85; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(10,47,122,0.62); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 4rem; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0,212,232,0.12); border: 1px solid var(--teal); color: var(--teal); padding: 0.375rem 1rem; border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--primary-gold); }
.hero-tagline { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 800; color: var(--secondary-gold); letter-spacing: .04em; margin-bottom: .75rem; text-shadow: 0 1px 6px rgba(0,0,0,.3); }
.hero-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,0.85); max-width: 580px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 1.5rem; }
.hero-quick-links { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1rem; }
.hero-quick-link { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.5rem 1.125rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); color: var(--white); border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 600; transition: all var(--transition-fast); backdrop-filter: blur(8px); }
.hero-quick-link:hover { background: var(--primary-gold); border-color: var(--primary-gold); transform: translateY(-1px); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-stat-number { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800; color: var(--primary-gold); line-height: 1; }
.hero-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.68); margin-top: 0.25rem; }

/* -------- Trust Bar -------- */
.trust-bar { background: var(--black); padding: 1.125rem 0; border-top: 3px solid var(--primary-gold); }
.trust-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.25rem 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-size: 0.875rem; font-weight: 600; }
.trust-icon { color: var(--teal); font-size: 1.125rem; flex-shrink: 0; }

/* -------- Feature Cards -------- */
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--gray-200); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-gold); }
.feature-card-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--royal-blue), #0d3a97); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--teal); font-size: 1.5rem; flex-shrink: 0; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* -------- Process Steps -------- */
.process-steps { display: grid; gap: 2rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.process-step-number { width: 48px; height: 48px; background: var(--primary-gold); color: var(--white); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; flex-shrink: 0; }
.process-step-content h4 { margin-bottom: 0.5rem; color: var(--gray-900); }

/* -------- Calculator -------- */
.calculator-wrapper { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-xl); border: 2px solid var(--gray-200); }
.calculator-title { text-align: center; margin-bottom: 2rem; }
.calculator-title h3 { color: var(--royal-blue); margin-bottom: 0.5rem; }
.calc-row { margin-bottom: 1.5rem; }
.calc-label { display: flex; justify-content: space-between; font-weight: 600; color: var(--gray-700); margin-bottom: 0.5rem; font-size: 0.9375rem; }
.calc-label span { color: var(--primary-gold); font-size: 1.125rem; }
.calc-input { width: 100%; padding: 0.875rem 1rem; border: 2px solid var(--gray-300); border-radius: var(--radius); font-size: 1rem; transition: border-color var(--transition-fast); background: var(--gray-50); }
.calc-input:focus { outline: none; border-color: var(--primary-gold); background: var(--white); }
.calc-input[type="range"] { padding: 0; height: 6px; border: none; background: var(--gray-200); border-radius: var(--radius-full); -webkit-appearance: none; appearance: none; cursor: pointer; }
.calc-input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; background: var(--primary-gold); border-radius: var(--radius-full); cursor: pointer; border: 2px solid var(--white); box-shadow: var(--shadow); }
.calc-results { background: linear-gradient(135deg, var(--royal-blue), #0d3a97); border-radius: var(--radius-lg); padding: 2rem; margin-top: 1.5rem; }
.calc-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.calc-result-item { text-align: center; }
.calc-result-value { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--primary-gold); line-height: 1; }
.calc-result-label { font-size: 0.75rem; color: rgba(255,255,255,0.92); margin-top: 0.375rem; }
.calc-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.88); text-align: center; margin-top: 1rem; }

/* -------- Brand Logos -------- */
.brands-strip { background: var(--gray-50); padding: 2.5rem 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.brands-eyebrow { text-align: center; display: block; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 1.5rem; }
.brands-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.5rem; }
.brand-badge { display: flex; align-items: center; justify-content: center; padding: 0.625rem 1.25rem; background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); font-weight: 700; font-size: 0.875rem; color: var(--royal-blue); transition: all var(--transition-fast); min-width: 100px; text-align: center; }
.brand-badge:hover { border-color: var(--primary-gold); color: var(--primary-gold); box-shadow: var(--shadow); }

/* -------- Testimonials -------- */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); border-left: 4px solid var(--primary-gold); }
.testimonial-quote { font-size: 1.0625rem; font-style: italic; color: var(--gray-700); margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-quote::before { content: '\201C'; font-family: Georgia, serif; font-size: 3.5rem; color: var(--primary-gold); line-height: 0; position: relative; top: 0.875rem; margin-right: 0.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 46px; height: 46px; background: var(--royal-blue); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 1.125rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--gray-900); font-size: 0.9375rem; }
.testimonial-location { font-size: 0.8125rem; color: var(--gray-500); }

/* -------- Service Cards -------- */
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid var(--gray-200); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 1.625rem; }
.service-card-body h3 { font-size: 1.125rem; margin-bottom: 0.625rem; }

/* -------- Area Cards -------- */
.area-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 2px solid var(--gray-200); transition: border-color var(--transition); }
.area-card:hover { border-color: var(--primary-gold); }
.area-card-header { background: var(--royal-blue); padding: 1.125rem 1.5rem; display: flex; align-items: center; }
.area-card-header h3 { color: var(--white); font-size: 1.05rem; margin: 0; }
.area-card-body { display: block; padding: 1.5rem; }

/* -------- Accordion -------- */
.accordion-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 0.625rem; overflow: hidden; }
.accordion-header { padding: 1.125rem 1.5rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: var(--white); transition: background var(--transition-fast); gap: 1rem; }
.accordion-header:hover { background: var(--gray-50); }
.accordion-header h4 { font-size: 0.9875rem; font-weight: 600; color: var(--gray-900); margin: 0; }
.accordion-icon { color: var(--primary-gold); font-size: 1.375rem; line-height: 1; transition: transform var(--transition-fast); flex-shrink: 0; }
.accordion-item.active .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 1.5rem 1.5rem; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.accordion-item.active .accordion-body { display: block; }

/* -------- Product Tabs -------- */
.tab-nav { display: flex; flex-wrap: wrap; gap: 0.375rem; border-bottom: 2px solid var(--gray-200); margin-bottom: 2rem; }
.tab-btn { padding: 0.75rem 1.375rem; font-weight: 700; font-size: 0.875rem; color: var(--gray-500); background: none; border: none; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all var(--transition-fast); font-family: var(--font-heading); }
.tab-btn:hover { color: var(--royal-blue); }
.tab-btn.active { color: var(--primary-gold); border-bottom-color: var(--primary-gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* -------- Forms -------- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; color: var(--gray-700); margin-bottom: 0.375rem; font-size: 0.9375rem; }
.form-label .required { color: #ef4444; margin-left: 0.25rem; }
.form-control { width: 100%; padding: 0.875rem 1rem; border: 2px solid var(--gray-300); border-radius: var(--radius); font-size: 1rem; transition: all var(--transition-fast); background: var(--white); color: var(--gray-900); appearance: none; -webkit-appearance: none; }
.form-control:focus { outline: none; border-color: var(--primary-gold); box-shadow: 0 0 0 3px rgba(212,154,42,0.15); }
.form-control::placeholder { color: #9ca3af; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; background-size: 18px; padding-right: 2.5rem; }
.form-wrapper { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-xl); }
.form-notice { font-size: 0.8rem; color: var(--gray-500); margin-top: 1rem; text-align: center; }
.file-upload-area { border: 2px dashed var(--gray-300); border-radius: var(--radius); padding: 2rem; text-align: center; cursor: pointer; transition: all var(--transition-fast); }
.file-upload-area:hover { border-color: var(--primary-gold); background: rgba(212,154,42,0.04); }
.file-upload-area input[type="file"] { display: none; }
.file-upload-label { cursor: pointer; }
.form-message { padding: 1rem 1.25rem; border-radius: var(--radius); margin-top: 1rem; font-weight: 600; display: none; }
.form-message.success { background: rgba(34,197,94,0.1); border: 1px solid #22c55e; color: #16a34a; display: block; }
.form-message.error { background: rgba(239,68,68,0.1); border: 1px solid #ef4444; color: #dc2626; display: block; }

/* -------- Service Qualifiers -------- */
.service-qualifier { display: flex; align-items: center; gap: 1rem; padding: 1.125rem 1.5rem; background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 0.75rem; color: var(--gray-900); font-weight: 600; font-size: 0.9375rem; transition: all var(--transition-fast); }
.service-qualifier-icon { width: 34px; height: 34px; background: var(--teal); color: var(--royal-blue); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.service-qualifier:hover { border-color: var(--primary-gold); background: rgba(212,154,42,0.04); transform: translateX(4px); }

/* -------- Page Hero -------- */
.page-hero { background: var(--royal-blue); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.15; z-index: 0; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-gold), var(--teal), var(--primary-gold)); z-index: 2; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0,212,232,0.12); border: 1px solid var(--teal); color: var(--teal); padding: 0.375rem 1rem; border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.0625rem; color: #FFFFFF; max-width: 640px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.8125rem; color: rgba(255,255,255,0.55); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--secondary-gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.35); }

/* -------- Stats -------- */
.stat-card { text-align: center; padding: 1.5rem; }
.stat-number { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 800; color: var(--primary-gold); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.9375rem; color: rgba(255,255,255,0.72); font-weight: 500; }

/* -------- CTA Section -------- */
.cta-section { background: linear-gradient(135deg, var(--royal-blue) 0%, #0d3a97 50%, var(--royal-blue) 100%); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.07; z-index: 0; }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1.0625rem; max-width: 560px; margin: 0 auto 2rem; }

/* -------- Check List -------- */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; color: var(--gray-700); }
.check-list li::before { content: '✓'; width: 22px; height: 22px; background: var(--teal); color: var(--royal-blue); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; flex-shrink: 0; margin-top: 0.125rem; }

/* -------- Comparison Table -------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.comparison-table th { background: var(--royal-blue); color: var(--white); padding: 1rem; text-align: left; font-weight: 700; white-space: nowrap; }
.comparison-table td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--gray-200); }
.comparison-table tr:nth-child(even) td { background: var(--gray-50); }
.comparison-table .check { color: #22c55e; font-weight: 700; }
.comparison-table .cross { color: #ef4444; }

/* -------- Case Study Cards -------- */
.case-study-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); transition: all var(--transition); }
.case-study-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-study-img { width: 100%; height: 200px; object-fit: cover; }
.case-study-body { padding: 1.625rem; }
.case-study-savings { display: inline-flex; align-items: center; gap: 0.375rem; background: rgba(212,154,42,0.1); color: var(--primary-gold); padding: 0.375rem 0.875rem; border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 700; margin-bottom: 0.875rem; }

/* -------- Photo Gallery -------- */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 0.875rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--gray-200); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.625rem 0.875rem; background: linear-gradient(to top, rgba(10,47,122,0.88) 0%, transparent 100%); pointer-events: none; }
.gallery-caption span { color: var(--white); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.02em; display: block; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

/* -------- Info Box -------- */
.info-box { background: rgba(0,212,232,0.08); border: 1px solid rgba(0,212,232,0.3); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.info-box p { color: var(--gray-700); margin: 0; font-size: 0.9375rem; }
.warn-box { background: rgba(212,154,42,0.08); border: 1px solid rgba(212,154,42,0.3); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }

/* -------- Two Column Layout -------- */
.two-col { display: grid; gap: 3rem; }
.two-col img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }

/* -------- Financing Option Cards -------- */
.finance-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border: 2px solid var(--gray-200); transition: all var(--transition); position: relative; }
.finance-card:hover { border-color: var(--primary-gold); box-shadow: var(--shadow-lg); }
.finance-card.featured { border-color: var(--primary-gold); }
.finance-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-gold); color: var(--white); padding: 0.25rem 1rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.finance-price { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: var(--primary-gold); margin: 1rem 0; }
.finance-price span { font-size: 1rem; font-weight: 500; color: var(--gray-500); }

/* -------- Footer -------- */
.site-footer { background: var(--royal-blue); }
.footer-main { padding: 4rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.68); font-size: 0.9375rem; margin-bottom: 0.5rem; }
.footer-brand a { color: var(--secondary-gold); transition: color var(--transition-fast); }
.footer-brand a:hover { color: var(--white); }
.footer-tagline { color: rgba(255,255,255,0.55); font-style: italic; font-size: 0.9375rem; margin-bottom: 1.25rem; }
.footer-links h4 { color: var(--white); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary-gold); display: inline-block; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition-fast); display: flex; align-items: center; gap: 0.375rem; }
.footer-links li a::before { content: '›'; color: var(--teal); font-size: 1rem; line-height: 1; }
.footer-links li a:hover { color: var(--secondary-gold); }
.social-links { display: flex; gap: 0.625rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.45); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.7rem; font-weight: 700; transition: all var(--transition-fast); }
.social-link:hover { background: var(--primary-gold); border-color: var(--primary-gold); transform: translateY(-2px); }
.footer-bottom { padding: 1.5rem 0; background: rgba(0,0,0,0.25); }
.footer-bottom .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.625rem; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.8125rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--secondary-gold); }

/* -------- Floating CTA -------- */
.floating-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; display: none; flex-direction: column; gap: 0.5rem; }
.floating-cta.visible { display: flex; }
.floating-phone,.floating-quote { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: var(--radius-full); font-weight: 700; font-size: 0.875rem; box-shadow: var(--shadow-lg); transition: transform var(--transition-fast); }
.floating-phone { background: var(--royal-blue); color: var(--white); border: 2px solid rgba(255,255,255,0.2); }
.floating-quote { background: var(--primary-gold); color: var(--white); }
.floating-phone:hover,.floating-quote:hover { transform: scale(1.04); }

/* -------- Back to Top -------- */
#back-to-top { position: fixed; bottom: 5.5rem; right: 1.5rem; width: 44px; height: 44px; background: rgba(10,47,122,0.85); color: var(--white); border-radius: var(--radius-full); display: none; align-items: center; justify-content: center; font-size: 1.125rem; cursor: pointer; box-shadow: var(--shadow-md); z-index: 998; border: none; transition: all var(--transition-fast); backdrop-filter: blur(4px); }
#back-to-top.visible { display: flex; }
#back-to-top:hover { background: var(--primary-gold); transform: translateY(-2px); }

/* -------- Animations -------- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: fadeInUp 0.8s ease both; }
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
img[data-src] { opacity: 0; transition: opacity 0.4s ease; }
img.img-loaded { opacity: 1; }

/* -------- Alert Banner -------- */
.alert-banner { background: var(--primary-gold); padding: 0.625rem var(--container-pad); text-align: center; font-size: 0.875rem; font-weight: 600; color: var(--white); }
.alert-banner a { color: var(--white); text-decoration: underline; }

/* -------- Utility -------- */
.text-gold { color: var(--primary-gold); }
.text-teal { color: var(--teal); }
.text-blue { color: var(--royal-blue); }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--gray-500); }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* -------- Responsive: Tablet (640px+) -------- */
@media (min-width: 640px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .calc-result-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  :root { --container-pad: 2rem; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .topbar-right { display: flex; }
  .hero-content { padding-top: 8rem; padding-bottom: 5rem; }
}

/* -------- Responsive: Desktop (1024px+) -------- */
@media (min-width: 1024px) {
  :root { --nav-height: 78px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .nav-toggle { display: none; }
  .nav-menu { display: flex !important; flex-direction: row; position: static; background: none; padding: 0; box-shadow: none; max-height: none; overflow: visible; align-items: center; gap: 0.125rem; }
  .nav-menu li a { padding: 0.5rem 0.75rem; border-left: none; border-radius: var(--radius-sm); font-size: 0.8375rem; }
  .nav-menu li a:hover,.nav-menu li a.active { color: var(--secondary-gold); border-left: none; background: rgba(255,255,255,0.1); }
  .nav-menu .has-dropdown { position: relative; }
  .nav-menu .dropdown { display: none; position: absolute; top: 100%; left: 0; background: #0c3589; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); min-width: 210px; box-shadow: var(--shadow-xl); padding: 0.5rem 0; z-index: 100; }
  .nav-menu .has-dropdown:hover .dropdown { display: block; }
  .nav-menu .dropdown li a { padding: 0.6rem 1.25rem; font-size: 0.875rem; color: rgba(255,255,255,0.85); border-left: none; border-radius: 0; display: block; }
  .nav-menu .dropdown li a:hover { background: rgba(255,255,255,0.1); color: var(--secondary-gold); border-left: none; }
  .nav-menu .dropdown li a::before { display: none; }
  .nav-menu .has-dropdown.open .dropdown { display: block; }
  .nav-menu .nav-cta { margin-left: 0.375rem; }
  .nav-menu .nav-cta a { margin: 0; padding: 0.5625rem 1.375rem; background: var(--primary-gold); color: var(--white); border-radius: var(--radius-full); border-left: none; font-size: 0.875rem; }
  .nav-menu .nav-cta a:hover { background: var(--secondary-gold); border-left: none; }
  .footer-grid { grid-template-columns: 1.75fr 1fr 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  .nav-menu li a { padding: 0.5rem 0.9375rem; font-size: 0.875rem; }
}

/* ================================================================
   MOBILE — everything at or below 768px (phones + portrait tablets)
   Overrides base styles; min-width blocks above handle ≥769px.
   ================================================================ */
@media (max-width: 768px) {

  /* ---- GLOBAL PADDING — enforce 1.25rem (20px) horizontal padding on all containers ---- */
  /* Root cause: .container.hero-content dual-class causes .hero-content padding shorthand  */
  /* to zero out .container's horizontal padding. Fix here + in base CSS above.             */
  :root { --container-pad: 1.25rem; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* ---- Logo tagline — always visible, sized for small headers ---- */
  .logo-tagline { font-size: 0.625rem; letter-spacing: .06em; }

  /* ---- Navigation ---- */
  /* Nav items already stack via .nav-menu default; ensure enough tap height */
  .nav-menu li a { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .nav-menu .dropdown li a { padding-top: 0.625rem; padding-bottom: 0.625rem; }
  /* "Get a Quote" CTA button in mobile nav */
  .nav-menu .nav-cta a { padding-top: 0.875rem; padding-bottom: 0.875rem; }

  /* ---- Hero ---- */
  /* Use separate top/bottom only — do NOT use shorthand padding here because              */
  /* this element carries both .container and .hero-content classes; a shorthand like      */
  /* padding: 4.5rem 0 3rem would zero out the horizontal padding restored above.          */
  .hero-content { padding-top: 4.5rem; padding-bottom: 3rem; }
  .hero-eyebrow { font-size: 0.75rem; padding: 0.3125rem 0.875rem; margin-bottom: 1rem; }
  .hero-tagline { font-size: 1rem; margin-bottom: 0.5rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero-subtitle { font-size: 0.9375rem; margin-bottom: 1.5rem; line-height: 1.65; }
  /* Stack CTA buttons full-width for easier tapping */
  .hero-cta-group { flex-direction: column; gap: 0.75rem; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  /* Quick-link pills — slightly taller touch target */
  .hero-quick-link { padding: 0.625rem 1rem; font-size: 0.8125rem; }
  /* Stats — force strict 2×2 grid so all four stats are evenly laid out */
  /* Flex + wrap caused the 4th stat to drop alone on a full-width row.  */
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; padding-top: 1.25rem; }
  .hero-stat { text-align: center; }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.75rem; }

  /* ---- Trust Bar ---- */
  .trust-bar { padding: 1rem 0; }
  .trust-bar .container { gap: 0.75rem 1.25rem; }
  .trust-item { font-size: 0.8125rem; }

  /* ---- Page Hero (inner pages) ---- */
  /* Base: 5rem top 4rem bottom — too generous on mobile */
  .page-hero { padding: 3.5rem 0 2.5rem; }
  .page-hero p { font-size: 0.9375rem; }

  /* ---- Sections ---- */
  /* Base .section is 5rem — reduce to breathe without wasting screen */
  .section { padding: 3rem 0; }
  .section--sm { padding: 2rem 0; }
  .section--lg { padding: 4rem 0; }
  .section-header { margin-bottom: 1.75rem; }
  .section-header p { font-size: 0.9375rem; }

  /* ---- CTA Section ---- */
  .cta-section { padding: 3rem 0; }
  .cta-section p { font-size: 0.9375rem; margin-bottom: 1.5rem; }
  /* Stack CTA buttons on mobile */
  .cta-section .btn-group { flex-direction: column; align-items: center; }
  .cta-section .btn-group .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ---- Buttons ---- */
  /* .btn-sm base is 0.5rem vertical — below 44px minimum touch target */
  .btn-sm { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
  .btn-group { gap: 0.75rem; }

  /* ---- Calculator ---- */
  /* Base: 2.5rem internal padding — cramped inside a 390px card */
  .calculator-wrapper { padding: 1.5rem; border-radius: var(--radius-lg); }
  .calculator-title { margin-bottom: 1.5rem; }
  .calc-results { padding: 1.5rem; }
  .calc-result-value { font-size: 1.375rem; }
  .calc-result-label { font-size: 0.6875rem; }
  .calc-disclaimer { font-size: 0.6875rem; }

  /* ---- Forms ---- */
  /* Base: 2.5rem internal padding — reduce for small screens */
  .form-wrapper { padding: 1.5rem; border-radius: var(--radius-lg); }
  .file-upload-area { padding: 1.5rem; }

  /* ---- Two-col layout ---- */
  /* Stack to single column; reduce gap between image and text */
  .two-col { grid-template-columns: 1fr; gap: 2rem; }

  /* ---- Feature Cards ---- */
  .feature-card { padding: 1.5rem; }

  /* ---- Service Cards ---- */
  .service-card-body { padding: 1.25rem; }

  /* ---- Case Study Cards ---- */
  .case-study-body { padding: 1.25rem; }

  /* ---- Testimonials ---- */
  .testimonial-card { padding: 1.5rem; }
  .testimonial-quote { font-size: 0.9375rem; }

  /* ---- Finance Cards ---- */
  .finance-card { padding: 1.5rem; }
  .finance-price { font-size: 1.875rem; }

  /* ---- Process Steps ---- */
  .process-step { gap: 1rem; }
  .process-steps { gap: 1.5rem; }

  /* ---- Stats ---- */
  .stat-number { font-size: 2.25rem; }
  .stat-card { padding: 1rem; }

  /* ---- Accordion ---- */
  .accordion-header { padding: 1rem 1.25rem; }
  .accordion-body { padding: 0 1.25rem 1.25rem; }

  /* ---- Product Tabs ---- */
  /* Reduce horizontal padding so tabs don't overflow the row */
  .tab-btn { padding: 0.75rem 0.875rem; font-size: 0.8125rem; }

  /* ---- Area Cards ---- */
  .area-card-header { padding: 1rem 1.25rem; }
  .area-card-body { padding: 1.25rem; }

  /* ---- Comparison Table ---- */
  /* Smaller font + tighter cells to reduce forced horizontal scroll */
  .comparison-table { font-size: 0.8125rem; }
  .comparison-table th,
  .comparison-table td { padding: 0.75rem; }

  /* ---- Brands Strip ---- */
  .brands-strip { padding: 1.75rem 0; }

  /* ---- Footer ---- */
  .footer-main { padding: 2.5rem 0; }
  .footer-grid { gap: 1.75rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* ---- Floating CTA ---- */
  /* Hug closer to screen edge on small phones */
  .floating-cta { bottom: 1rem; right: 1rem; gap: 0.375rem; }
  .floating-phone,
  .floating-quote { padding: 0.625rem 1rem; font-size: 0.8125rem; gap: 0.375rem; }

  /* ---- Back to Top ---- */
  #back-to-top { bottom: 4.75rem; right: 1rem; }

}

@media print {
  .site-header,.site-footer,.floating-cta,#back-to-top,.alert-banner { display: none; }
}
