/* ============================================================
   FOCUS NETWORK SERVICES — Production Site CSS
   ============================================================ */

/* --- FONTS — Self-hosted Gotham (Steve's designer assets) ---
   Font files live in /fonts/ at the site root.
   Gina: convert OTF files to WOFF2 using transfonter.org,
   then place them in a /fonts/ folder at the site root.
   Source OTF files: Logo and Images > 08 - Designer Assets Steve > Brand Fonts > Gotham
   Four weights are all we need: Book (400), Medium (500), Bold (700), Light (300).
   ---------------------------------------------------------------- */

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamBook.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamBook-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* --- VARIABLES --- */
:root {
  --navy: #0d1b2a;
  --dark-blue: #1b2d45;
  --mid-blue: #1e3a5f;
  --accent-blue: #2e8bc0;
  --bright-blue: #3da5d9;
  --light-blue: #d6eaf8;
  --ice-blue: #eef6fc;
  --orange: #e8833a;
  --orange-hover: #d6722e;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --text: #2c3e50;
  --text-light: #6b7c8f;
  --green: #27ae60;
  --red: #e74c3c;
  --shadow: 0 4px 24px rgba(13,27,42,0.08);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Gotham', 'Arial', sans-serif; font-weight: 400; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.hd { font-family: 'Gotham', 'Arial', sans-serif; font-weight: 700; color: var(--navy); }
.section--dark .hd { color: var(--white); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--text-light); max-width: 620px; margin: 0 auto; line-height: 1.7; }
.section--dark .section-header p { color: rgba(255,255,255,0.5); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.3s; }
.nav--scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; cursor: pointer; text-decoration: none; }
.nav__logo-img { height: 36px; width: auto; }
.nav__logo span { color: var(--accent-blue); font-weight: 400; font-size: 14px; margin-left: 4px; }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.2s; position: relative; padding-bottom: 4px; }
.nav__links a:hover { color: var(--accent-blue); }
.nav__links a.active { color: var(--accent-blue); border-bottom: 2px solid var(--accent-blue); }
.nav__cta { background: var(--orange) !important; color: var(--white) !important; padding: 10px 20px !important; border-radius: 8px; font-weight: 600 !important; transition: background 0.2s, transform 0.2s; }
.nav__cta:hover { background: var(--orange-hover) !important; transform: translateY(-1px); }

/* Mobile nav */
.nav__hamburger { display: none; cursor: pointer; font-size: 24px; color: var(--navy); background: none; border: none; }
.nav__mobile { display: none; background: var(--white); padding: 16px 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.nav__mobile.open { display: block; }
.nav__mobile a { display: block; padding: 12px 0; font-size: 16px; color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.04); }
.nav__mobile a:hover, .nav__mobile a.active { color: var(--accent-blue); }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--dark-blue) 40%, var(--mid-blue) 100%); padding: 100px 24px 80px; position: relative; overflow: hidden; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(46,139,192,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(46,139,192,0.05) 1px, transparent 1px); background-size: 60px 60px; }
.hero__inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero__inner--single { grid-template-columns: 1fr; }
.hero__tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,139,192,0.15); border: 1px solid rgba(46,139,192,0.3); border-radius: 100px; padding: 8px 18px; margin-bottom: 24px; font-size: 13px; color: var(--bright-blue); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.hero__tag-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; display: inline-block; }
.hero h1 { font-family: 'Gotham', 'Arial', sans-serif; font-size: clamp(32px, 4.5vw, 50px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; max-width: 700px; }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--bright-blue), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__sub { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; max-width: 580px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.25s; border: none; font-family: 'Gotham', 'Arial', sans-serif; }
.btn--primary { background: var(--orange); color: var(--white); padding: 16px 32px; box-shadow: 0 4px 16px rgba(232,131,58,0.3); }
.btn--primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,131,58,0.4); }
.btn--secondary { background: transparent; color: var(--white); padding: 16px 32px; border: 1px solid rgba(255,255,255,0.25); }
.btn--secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn--large { font-size: 18px; padding: 18px 40px; box-shadow: 0 6px 24px rgba(232,131,58,0.4); }

/* ============================================================
   CARDS
   ============================================================ */
.card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); padding: 40px 32px; transition: all 0.3s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; transition: height 0.3s; }
.card:hover .card__bar { height: 6px; }
.card__bar--blue { background: var(--bright-blue); }
.card__bar--green { background: var(--green); }
.card__bar--orange { background: var(--orange); }
.card__icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.card__icon--blue { background: rgba(61,165,217,0.1); }
.card__icon--green { background: rgba(39,174,96,0.1); }
.card__icon--orange { background: rgba(232,131,58,0.1); }
.card h3 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; margin-top: 20px; transition: gap 0.2s; }
.card__link:hover { gap: 10px; }
.card__link--blue { color: var(--accent-blue); }
.card__link--green { color: var(--green); }
.card__link--orange { color: var(--orange); }

/* Small service cards */
.svc-card { background: var(--off-white); border: 1px solid rgba(0,0,0,0.04); border-radius: var(--radius); padding: 32px 24px; transition: all 0.3s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-card__icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.svc-card__icon--blue { background: rgba(46,139,192,0.1); }
.svc-card__icon--green { background: rgba(39,174,96,0.1); }
.svc-card__icon--orange { background: rgba(232,131,58,0.1); }
.svc-card h3 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.svc-card--white { background: var(--white); }

/* Problem/gap cards */
.gap-card { background: var(--off-white); border: 1px solid rgba(0,0,0,0.04); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: all 0.3s; }
.gap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gap-card__icon { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.gap-card h3 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.gap-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.gap-card__tag { display: inline-block; margin-top: 16px; padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 0; align-items: stretch; margin-bottom: 24px; }
.ba__before { background: rgba(231,76,60,0.08); border: 1px solid rgba(231,76,60,0.15); border-radius: 12px; padding: 24px; }
.ba__after { background: rgba(39,174,96,0.08); border: 1px solid rgba(39,174,96,0.15); border-radius: 12px; padding: 24px; }
.ba__arrow { display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--bright-blue); }
.ba__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.ba__label--red { color: var(--red); }
.ba__label--green { color: var(--green); }
.ba__title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.ba__desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.ba__time--old { color: rgba(255,255,255,0.4); }
.ba__time--new { color: var(--green); font-weight: 600; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-step { display: flex; gap: 28px; padding-bottom: 48px; }
.process-step:last-child { padding-bottom: 0; }
.process-step__num { width: 64px; height: 64px; min-width: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Gotham', 'Arial', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); z-index: 2; box-shadow: 0 4px 16px rgba(13,27,42,0.15); }
.process-step__content { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); padding: 28px; flex: 1; }
.process-step__content h3 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step__content p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.process-step__tag { display: inline-block; margin-top: 12px; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Smaller steps (ops page) */
.step-sm { display: flex; gap: 24px; padding-bottom: 40px; }
.step-sm:last-child { padding-bottom: 0; }
.step-sm__num { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Gotham', 'Arial', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); }
.step-sm h4 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-sm p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   HOW IT WORKS (4 columns)
   ============================================================ */
.how-step { text-align: center; }
.how-step__num { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Gotham', 'Arial', sans-serif; font-size: 20px; font-weight: 700; box-shadow: 0 4px 16px rgba(13,27,42,0.15); }
.how-step h4 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px; }
.testimonial__stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial__quote { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 20px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-blue); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: var(--white); }
.testimonial__name { font-weight: 600; font-size: 14px; color: var(--white); }
.testimonial__role { font-size: 12px; color: rgba(255,255,255,0.4); }

/* Featured testimonial */
.testimonial--featured { max-width: 700px; margin: 0 auto; padding: 40px; text-align: center; }
.testimonial--featured .testimonial__quote { font-size: 18px; line-height: 1.8; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%); text-align: center; padding: 80px 24px; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 24px 24px; }
.cta-section__inner { position: relative; z-index: 2; }
.cta-section h2 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 550px; margin: 0 auto 32px; line-height: 1.6; }

/* ============================================================
   LOGO BAR
   ============================================================ */
.logo-bar { background: var(--off-white); padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.logo-bar__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-bar__label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.logo-bar__item { font-family: 'Gotham', 'Arial', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-light); opacity: 0.4; letter-spacing: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.3s; }
.faq__item:hover { box-shadow: var(--shadow); }
.faq__q { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; color: var(--navy); font-family: 'Gotham', 'Arial', sans-serif; }
.faq__arrow { font-size: 18px; color: var(--accent-blue); transition: transform 0.3s; }
.faq__item.open .faq__arrow { transform: rotate(180deg); }
.faq__a { padding: 0 24px 20px; font-size: 15px; color: var(--text-light); line-height: 1.7; display: none; }
.faq__item.open .faq__a { display: block; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card { background: var(--off-white); border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 40px; }
.form-card h3 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-align: center; }
.form-card__sub { font-size: 14px; color: var(--text-light); text-align: center; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px; font-size: 15px; font-family: 'Gotham', 'Arial', sans-serif;
  color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-blue); }
.form-group input::placeholder { color: #bbb; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; margin-top: 8px; padding: 16px;
  background: var(--orange); color: var(--white); border: none;
  border-radius: 10px; font-size: 16px; font-weight: 600;
  cursor: pointer; font-family: 'Gotham', 'Arial', sans-serif;
  box-shadow: 0 4px 16px rgba(232,131,58,0.3); transition: all 0.25s;
}
.form-submit:hover { background: var(--orange-hover); transform: translateY(-2px); }
.form-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* Benefits list */
.benefit { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 15px; }
.benefit__icon { width: 28px; height: 28px; min-width: 28px; border-radius: 8px; background: rgba(39,174,96,0.1); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }

/* ============================================================
   WHY FOCUS REASONS
   ============================================================ */
.reason { background: var(--off-white); border: 1px solid rgba(0,0,0,0.04); border-radius: var(--radius); padding: 32px 28px; display: flex; gap: 20px; align-items: flex-start; }
.reason__icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: rgba(46,139,192,0.1); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.reason h3 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.reason p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.post-card { background: var(--off-white); border: 1px solid rgba(0,0,0,0.04); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; cursor: pointer; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card__bar { height: 8px; }
.post-card__body { padding: 28px 24px; }
.post-card__cat { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.post-card h3 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.post-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.post-card__date { font-size: 12px; color: var(--text-light); }

/* ============================================================
   HERO SIDEBAR ELEMENTS
   ============================================================ */
.hero-stats { display: flex; flex-direction: column; gap: 16px; }
.hero-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px 24px; display: flex; align-items: center; gap: 20px; }
.hero-stat__num { font-family: 'Gotham', 'Arial', sans-serif; font-size: 28px; font-weight: 700; color: var(--bright-blue); min-width: 60px; }
.hero-stat__label { font-size: 14px; color: rgba(255,255,255,0.6); }

.hero-scorecard { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 32px; }
.hero-scorecard__title { font-family: 'Gotham', 'Arial', sans-serif; font-size: 16px; font-weight: 600; color: var(--bright-blue); margin-bottom: 20px; }
.hero-scorecard__row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hero-scorecard__row:last-of-type { border-bottom: none; }
.hero-scorecard__dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-scorecard__dot--green { background: var(--green); box-shadow: 0 0 8px rgba(39,174,96,0.4); }
.hero-scorecard__dot--yellow { background: #f1c40f; box-shadow: 0 0 8px rgba(241,196,15,0.4); }
.hero-scorecard__dot--red { background: var(--red); box-shadow: 0 0 8px rgba(231,76,60,0.4); }
.hero-scorecard__label { flex: 1; font-size: 14px; color: rgba(255,255,255,0.7); }
.hero-scorecard__score { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); }
.hero-scorecard__footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }

/* Contact info box */
.contact-box { margin-top: 32px; padding: 24px; background: var(--off-white); border-radius: 12px; border: 1px solid rgba(0,0,0,0.04); }
.contact-box h4 { font-family: 'Gotham', 'Arial', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.contact-box p { font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.4); padding: 48px 24px 24px; }
.footer__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__brand { margin-bottom: 12px; }
.footer__brand span { color: var(--accent-blue); font-weight: 400; font-size: 14px; }
.footer__logo-img { height: 32px; width: auto; }
.footer__col h4 { color: rgba(255,255,255,0.7); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 16px; }
.footer__col a { display: block; color: rgba(255,255,255,0.4); font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--bright-blue); }
.footer__bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__sidebar { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .ba { grid-template-columns: 1fr; }
  .ba__arrow { transform: rotate(90deg); padding: 8px 0; }
}
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 80px 24px 60px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
