/* ============================================================
   Southeastern Plumbing, Heating & AC — Global Styles
   Brand: #1E2B3C (charcoal navy) + #D62828 (red) + #F5F0E8 (warm white)
   Fonts: Chakra Petch (headings) + Plus Jakarta Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1E2B3C;
  --navy-deep: #13202E;
  --navy-mid: #243040;
  --red: #D62828;
  --red-dark: #b02020;
  --warm-white: #F5F0E8;
  --off-white: #FAF8F5;
  --gray-light: #E8E4DC;
  --gray-mid: #9A9688;
  --text-dark: #1a1a24;
  --text-muted: #5a5a6a;

  --font-head: 'Chakra Petch', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius: 4px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--off-white); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* SKIP LINK */
.skip-link { position: absolute; top: -40px; left: 1rem; background: var(--red); color: white; padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 600; z-index: 10000; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }
.section-label { font-family: var(--font-head); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.75rem); color: var(--navy); margin-bottom: 1rem; }
.section-title.light { color: white; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; line-height: 1.7; }
.section-subtitle.light { color: rgba(255,255,255,0.75); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.btn:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.btn-primary { background: var(--red); color: white; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(214,40,40,0.35); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: white; transform: translateY(-2px); }

/* LAYOUT */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* NAV */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(19,32,46,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.07); transition: box-shadow 0.3s; }
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; padding: 0 1.5rem; max-width: 1160px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: white; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.2; }
.nav-logo-text span { display: block; color: var(--red); font-size: 0.65rem; letter-spacing: 0.15em; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform var(--transition); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: white; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; border-radius: 2px; }
.nav-cta { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--red) !important; color: white !important; padding: 0.6rem 1.25rem; border-radius: var(--radius); transition: background var(--transition), transform var(--transition); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.nav-toggle:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: var(--navy-deep); flex-direction: column; gap: 0; padding: 1rem 0; display: none; border-top: 2px solid var(--red); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.875rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.85rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 0.75rem 1.5rem; display: block; text-align: center; padding: 0.875rem 1.5rem !important; }
}

/* HERO */
.hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy-deep); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; transform: scale(1.05); transition: transform 6s ease; }
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,32,46,0.95) 0%, rgba(19,32,46,0.6) 50%, rgba(19,32,46,0.25) 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 8rem 0 5rem; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease 0.3s forwards; }
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--red); }
.hero-eyebrow-text { font-family: var(--font-head); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); color: white; letter-spacing: -0.02em; line-height: 1; margin-bottom: 0.25rem; opacity: 0; transform: translateY(25px); animation: fadeUp 0.8s ease 0.5s forwards; }
.hero h1 .accent { color: var(--red); }
.hero-subhead { font-family: var(--font-head); font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease 0.7s forwards; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.75; margin-bottom: 2.5rem; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease 0.85s forwards; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease 1s forwards; }
.hero-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); opacity: 0; animation: fadeIn 1s ease 1.2s forwards; }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; }
.hero-badge-icon { width: 32px; height: 32px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge-icon svg { width: 16px; height: 16px; stroke: white; fill: none; }
.hero-badge-text { font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); text-transform: uppercase; line-height: 1.3; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* STATS BAND */
.stats-band { background: var(--red); }
.stats-band-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 2.5rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-head); font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 700; color: white; display: block; line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

@media (max-width: 680px) {
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.2); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.2); border-right: none; }
}

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: white; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: transform var(--transition), box-shadow var(--transition); border-top: 3px solid var(--red); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 1.5rem; }
.service-card-icon { width: 44px; height: 44px; background: rgba(214,40,40,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-card-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.service-card-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); transition: gap var(--transition); }
.service-card-link:hover { gap: 0.6rem; }
.service-card-link:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

/* DARK SECTIONS */
.section-dark { background: var(--navy); color: white; }
.section-dark-deep { background: var(--navy-deep); color: white; }

/* ABOUT LAYOUT */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; border-radius: 6px; object-fit: cover; aspect-ratio: 4/3; }
.about-img-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 120px; height: 120px; background: var(--red); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: white; box-shadow: 0 4px 20px rgba(214,40,40,0.4); }
.about-img-badge-num { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; line-height: 1; }
.about-img-badge-text { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-top: 0.25rem; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }

@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-badge { bottom: -1rem; right: -0.5rem; width: 90px; height: 90px; }
  .about-img-badge-num { font-size: 1.25rem; }
}

/* CLIENTS */
.clients-logos { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.client-chip { padding: 0.6rem 1.25rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* TESTIMONIALS */
.testimonial-carousel { position: relative; max-width: 800px; margin: 3rem auto 0; overflow: hidden; }
.tc-track { display: flex; transition: transform 0.5s ease; }
.tc-slide { min-width: 100%; padding: 0 1rem; }
.tc-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 2.5rem; position: relative; }
.tc-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--red); opacity: 0.5; position: absolute; top: 0.5rem; left: 1.5rem; }
.tc-quote { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; padding-top: 1.5rem; }
.tc-attr { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.tc-controls { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.tc-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s; }
.tc-dot.active { background: var(--red); transform: scale(1.3); }
.tc-dot:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* FACILITIES */
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.facility-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.875rem 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.facility-item::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* MAP */
#service-area-map { height: 380px; border-radius: 6px; overflow: hidden; margin-top: 2rem; }

/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(214,40,40,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; }
.contact-info-label { font-family: var(--font-head); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 500; color: var(--navy); line-height: 1.5; }
.contact-info-value a { color: var(--navy); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--red); }

/* FORM */
.contact-form { background: white; border-radius: 8px; padding: 2.5rem; box-shadow: var(--shadow); }
.form-title { font-size: 1.4rem; color: var(--navy); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--gray-light); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); background: var(--off-white); transition: border-color var(--transition); outline: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-success { display: none; background: #e8f5e9; border: 1px solid #4caf50; border-radius: var(--radius); padding: 1.25rem 1.5rem; font-size: 0.95rem; color: #2e7d32; margin-top: 1rem; }

/* SERVICES PAGE */
.services-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 2rem; }
.service-pill { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; background: white; border-radius: var(--radius); box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-left: 3px solid var(--red); font-size: 0.88rem; font-weight: 500; color: var(--navy); transition: transform var(--transition), box-shadow var(--transition); }
.service-pill:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.team-card { background: white; border-radius: 6px; padding: 1.75rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-top: 3px solid var(--red); }
.team-card-name { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.25rem; }
.team-card-title { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.team-card-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* BEFORE/AFTER SLIDER */
.ba-slider { position: relative; overflow: hidden; max-width: 700px; margin: 2.5rem auto 0; border-radius: 8px; aspect-ratio: 16/10; user-select: none; box-shadow: var(--shadow-lg); }

/* FAQ */
.faq-list { max-width: 720px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; color: var(--navy); transition: color var(--transition); }
.faq-item summary:hover, .faq-item[open] summary { color: var(--red); }
.faq-item summary:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.faq-chevron { transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-answer { padding: 0 0 1.25rem; font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }

/* FOOTER */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 4rem 0 0; border-top: 3px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-logo { height: 32px; width: auto; margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background var(--transition); color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 700; font-family: var(--font-head); }
.footer-social a:hover { background: var(--red); color: white; }
.footer-social a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: white; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-links a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--red); fill: none; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bbb { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 0.4rem; }
.footer-bbb .badge { background: var(--red); color: white; padding: 0.15rem 0.4rem; border-radius: 3px; font-size: 0.75rem; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* FLOATING CTA */
.floating-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; background: var(--red); color: white; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(214,40,40,0.45); transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(214,40,40,0.55); }
.floating-cta:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.floating-cta svg { width: 24px; height: 24px; stroke: white; fill: none; }
@media (min-width: 768px) { .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; } }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* PAGE HEADER */
.page-header { background: var(--navy-deep); padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 40px 40px; }
.page-header-content { position: relative; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3.5rem); color: white; margin-bottom: 0.75rem; }
.page-header p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-family: var(--font-head); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* CTA BAND */
.cta-band { background: var(--red); padding: 4rem 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: white; margin-bottom: 0.75rem; }
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 2rem; line-height: 1.65; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.6); }
.cta-band .btn-outline:hover { background: white; color: var(--red); }

/* LICENSE BADGES */
.license-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.license-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(214,40,40,0.08); border: 1px solid rgba(214,40,40,0.2); border-radius: 100px; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }

/* RESPONSIVE */
@media (max-width: 960px) { .section-pad { padding: 4rem 0; } }
@media (max-width: 640px) {
  .section-pad { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-bg { transform: none !important; }
}
