/* =========================================================
   SunVolt Energy — Stylesheet
   Palette: Deep navy, solar gold, white, subtle blue accent
   ========================================================= */

:root {
  /* Color system */
  --navy: #0B1220;
  --navy-light: #131E33;
  --navy-soft: #1B2A45;
  --gold: #F5B734;
  --gold-soft: #FFD873;
  --blue-accent: #4C8FD6;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --ink: #101826;
  --ink-soft: #4B5768;
  --border-soft: rgba(16, 24, 38, 0.08);

  /* Type */
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(11, 18, 32, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 18, 32, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 18, 32, 0.18);

  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--navy); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

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

:focus-visible {
  outline: 3px solid var(--blue-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-icon { width: 18px; height: 18px; color: currentColor; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(245, 183, 52, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 183, 52, 0.45);
  background: var(--gold-soft);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark { width: 34px; height: 34px; }
.sun-icon { width: 100%; height: 100%; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-line1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-line2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { right: 0; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(120% 100% at 15% 0%, var(--navy-soft) 0%, var(--navy) 55%, #070C16 100%);
  padding: 96px 0 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero-rays {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 900px;
  height: 900px;
  background: conic-gradient(from 180deg at 50% 50%,
    rgba(245,183,52,0.16) 0deg, transparent 18deg,
    transparent 40deg, rgba(245,183,52,0.10) 55deg,
    transparent 78deg, transparent 100deg,
    rgba(245,183,52,0.13) 120deg, transparent 145deg,
    transparent 200deg, rgba(76,143,214,0.10) 230deg,
    transparent 260deg, rgba(245,183,52,0.10) 300deg, transparent 330deg, transparent 360deg);
  filter: blur(2px);
  opacity: 0.9;
  z-index: 0;
  animation: rotateRays 90s linear infinite;
}
@keyframes rotateRays {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow-center { display: block; text-align: center; }

.hero-title {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.hero-points svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-orbit {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 130px;
  height: 130px;
}
.sun-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold) 70%);
  border-radius: 50%;
  box-shadow: 0 0 50px 12px rgba(245,183,52,0.45);
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(245,183,52,0.3);
  border-radius: 50%;
}
.ring-2 { inset: -25px; border-color: rgba(76,143,214,0.25); }

.panel-illustration {
  position: relative;
  width: 320px;
  max-width: 80vw;
  transform: perspective(700px) rotateX(8deg) rotateY(-6deg);
}
.panel-roof {
  background: linear-gradient(155deg, var(--navy-soft), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel-row {
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2A4C82, #1A335C);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.panel-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(255,255,255,0.09) 30px 31px),
    linear-gradient(120deg, rgba(245,183,52,0.18), transparent 60%);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin: 7px auto 0;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rays { animation: none; }
  .scroll-cue span { animation: none; }
}

/* =========================================================
   Section basics
   ========================================================= */
section { padding: 92px 0; }
.section-head { max-width: 640px; margin: 0 auto 52px; }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.section-title.center { text-align: center; }
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 14px;
}
.section-sub.center { text-align: center; }
.body-text { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 18px; }

/* =========================================================
   About
   ========================================================= */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-graphic {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.home-illustration { width: 100%; height: auto; }

.mission-box {
  margin-top: 28px;
  padding: 26px 28px;
  background: var(--navy);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}
.mission-label {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mission-text {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.55;
  font-family: var(--font-display);
  font-weight: 500;
}

/* =========================================================
   Services
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,183,52,0.4);
}
.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(145deg, #FFF4DA, #FFE9B3);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-title { font-size: 1.18rem; margin-bottom: 10px; }
.service-desc { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), gap var(--transition), color var(--transition);
}
.service-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-link:hover { color: var(--gold); }
.service-link:hover svg { transform: translateX(3px); }

/* =========================================================
   How it works
   ========================================================= */
.how { background: var(--navy); }
.how .eyebrow-center { color: var(--gold); }
.how .section-title.center { color: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: background var(--transition), transform var(--transition);
}
.step:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.step-title { color: var(--white); font-size: 1.12rem; margin-bottom: 8px; }
.step-desc { color: rgba(255,255,255,0.62); font-size: 0.94rem; }

.how-disclaimer {
  margin-top: 32px;
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.42);
  font-style: italic;
}

/* =========================================================
   Why choose
   ========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, #E9F1FC, #D6E7FA);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 28px; height: 28px; }
.why-title { font-size: 1.06rem; margin-bottom: 10px; }
.why-desc { color: var(--ink-soft); font-size: 0.92rem; }

/* =========================================================
   Benefits
   ========================================================= */
.benefits { background: var(--off-white); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.benefits-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  color: var(--ink);
}
.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,183,52,0.18);
}
.disclaimer {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}

.ray-diagram {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ray-sun {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold) 70%);
  box-shadow: 0 0 70px 18px rgba(245,183,52,0.35);
  position: relative;
  z-index: 2;
}
.ray-line {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245,183,52,0.5), rgba(76,143,214,0.15));
  height: 3px;
}
.ray-line-1 { width: 220px; top: 30%; left: 60%; transform: rotate(18deg); }
.ray-line-2 { width: 180px; top: 55%; left: 62%; transform: rotate(-6deg); }
.ray-line-3 { width: 200px; top: 75%; left: 55%; transform: rotate(30deg); }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #16233C 60%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,183,52,0.16), transparent 70%);
  top: -200px; right: -100px;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-text {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  max-width: 520px;
  margin: 0 auto 34px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--off-white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; }
.info-label { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 3px; }
.info-value { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.info-link:hover { color: var(--blue-accent); }

.info-note {
  margin-top: 10px;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue-accent);
}
.info-note p { font-size: 0.88rem; color: var(--ink-soft); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row-split > div { display: flex; flex-direction: column; gap: 7px; }
label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
input, select, textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  background: var(--off-white);
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  outline: none;
}
textarea { resize: vertical; min-height: 100px; }
.form-hint {
  font-size: 0.88rem;
  color: var(--ink-soft);
  min-height: 1.2em;
}
.form-hint.success { color: #1B7A43; font-weight: 600; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); color: var(--ink-soft); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  padding: 0 24px;
}
.faq-answer p { color: var(--ink-soft); font-size: 0.95rem; padding-bottom: 0; }
.faq-item.open .faq-answer { padding-bottom: 20px; }

@media (prefers-reduced-motion: reduce) {
  .faq-answer, .faq-chevron { transition: none; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #070C16;
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline { color: var(--gold); font-size: 0.94rem; margin-top: 14px; font-weight: 500; }
.footer-address { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 8px; }
.footer-heading {
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color var(--transition);
  width: fit-content;
}
.footer-link:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p { color: rgba(255,255,255,0.42); font-size: 0.82rem; }
.footer-disclaimer { max-width: 640px; }

/* =========================================================
   Floating mobile call button
   ========================================================= */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 400;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 10px 26px rgba(245,183,52,0.45);
}
.mobile-call-fab svg { width: 18px; height: 18px; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-visual { order: -1; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  section { padding: 64px 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 36px;
    transform: translateX(100%);
    transition: transform 320ms ease;
    box-shadow: -12px 0 40px rgba(0,0,0,0.3);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav-link { font-size: 1.1rem; }
  .nav-cta { width: 100%; text-align: center; }

  .hero { padding: 56px 0 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-points { flex-direction: column; gap: 12px; }

  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }

  .mobile-call-fab { display: inline-flex; }
  body { padding-bottom: 0; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.85rem; }
  .container { padding: 0 18px; }
}
