/* ============================================================
   LUSWEPO AUTOMOTIVE — style.css
   ============================================================ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --navy:        #0f1340;
  --navy-mid:    #1a1f5e;
  --navy-deep:   #080c2a;
  --red:         #d42b2b;
  --red-dark:    #a01e1e;
  --red-light:   #ff4444;
  --white:       #ffffff;
  --off-white:   #f5f6fa;
  --light-grey:  #e8eaf0;
  --mid-grey:    #9098b0;
  --dark-grey:   #3a3f5c;
  --text:        #1a1f3c;
  --text-light:  #5a6080;

  --font-head:   'Bebas Neue', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;

  --section-pad: clamp(60px, 8vw, 110px);
  --container:   1180px;
  --radius:      12px;
  --radius-sm:   6px;

  --shadow-sm:   0 2px 12px rgba(15,19,64,.08);
  --shadow-md:   0 6px 30px rgba(15,19,64,.14);
  --shadow-lg:   0 16px 60px rgba(15,19,64,.2);

  --nav-h:       72px;
}

/* ── 2. RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── 3. UTILITY ──────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}

.section-label {
  font-family: var(--font-cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}

.section-header        { margin-bottom: clamp(36px, 5vw, 56px); }
.section-header.center { text-align: center; }
.section-header.center .section-body { margin-inline: auto; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }

/* ── 4. BUTTONS ──────────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,43,43,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-icon { font-size: 1.1em; }

/* ── 5. NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: transparent;
  transition: background .35s, box-shadow .35s;
}

#navbar.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

#navbar.solid {
  background: var(--navy-deep);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 42px;
  width: auto;
}

.nav-logo-text .brand {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1;
}

.nav-logo-text .sub {
  display: block;
  font-family: var(--font-cond);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.nav-links a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-links a.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--red-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 6. HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(212,43,43,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(26,31,94,.9) 0%, transparent 70%),
    linear-gradient(135deg, #080c2a 0%, #1a1f5e 60%, #0f1340 100%);
}

/* Noise texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .6;
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  top: 0; right: 28%; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: .4;
}

/* Diagonal grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.012) 0px,
      rgba(255,255,255,.012) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vw, 100px) clamp(24px, 5vw, 80px);
}

.hero-label {
  font-family: var(--font-cond);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 24px;
}

.hero-title-red { color: var(--red); }

.hero-desc {
  font-size: clamp(.95rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,.72);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1;
}

.stat span {
  font-family: var(--font-cond);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}
/* TOP SCROLLING ANIMATION */

.top-slider{
  width:100%;
  background:#d71920;
  overflow:hidden;
  white-space:nowrap;
  padding:14px 0;
  border-top:4px solid #0d1b4c;
  border-bottom:4px solid #0d1b4c;
  position:relative;
  z-index:999;
}

.slider-track{
  display:inline-block;
  white-space:nowrap;
  animation:scrollText 25s linear infinite;
}

.slider-track span{
  color:white;
  font-size:12px;
  font-weight:700;
  letter-spacing:3px;
  margin:0 35px;
  text-transform:uppercase;
  font-family:Arial, sans-serif;
}

@keyframes scrollText{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}
/* Hero image */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .7;
  mix-blend-mode: luminosity;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-deep) 0%, transparent 30%);
  z-index: 1;
}

/* Placeholder when no image */
.hero-image-wrap.no-img {
  background:
    radial-gradient(ellipse 60% 60% at 60% 50%, rgba(212,43,43,.15), transparent),
    linear-gradient(135deg, #1a1f5e 0%, #0f1340 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap.no-img::after {
  content: '🚗';
  font-size: 8rem;
  opacity: .08;
}

/* ── 7. SERVICES ─────────────────────────────────────────────── */
.services {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--light-grey);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}

.service-card.featured::before {
  background: var(--red);
  transform: scaleX(1);
}

.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.service-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card.featured h3 { color: var(--white); }

.service-card p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-card.featured p { color: rgba(255,255,255,.65); }

/* ── 8. PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: calc(var(--nav-h) + 56px) 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 0% 100%, rgba(212,43,43,.14), transparent 60%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.015) 0px,
      rgba(255,255,255,.015) 1px,
      transparent 1px,
      transparent 36px
    );
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.breadcrumb .current { color: var(--red); }

.page-hero .section-label { color: var(--red); }
.page-hero .section-title { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); }

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  line-height: 1.75;
  margin-top: 12px;
}

/* ── 9. ABOUT ────────────────────────────────────────────────── */
.about { padding: var(--section-pad) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
}

.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-image-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrap.no-img::after {
  content: '🔧';
  font-size: 6rem;
  opacity: .12;
}

.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,.1); }
}

.about-badge span {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
  letter-spacing: .06em;
}

.about-badge small {
  display: block;
  font-size: .72rem;
  color: var(--mid-grey);
  letter-spacing: .08em;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
}

.reg-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.reg-item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-left: 3px solid var(--red);
}

.reg-label {
  display: block;
  font-family: var(--font-cond);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 4px;
}

.reg-value {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: .04em;
}

/* ── 10. WHY US ──────────────────────────────────────────────── */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(212,43,43,.12), transparent 65%);
  pointer-events: none;
}

.why-us .section-title { color: var(--white); }
.why-us .section-label { color: var(--red); }

.pillars-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.pillar {
  background: rgba(255,255,255,.03);
  padding: 40px 32px;
  position: relative;
  transition: background .3s;
}

.pillar:hover { background: rgba(212,43,43,.1); }

.pillar-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: .05em;
}

.pillar h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.pillar p { color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.65; }

/* ── 11. CONTACT ─────────────────────────────────────────────── */
.contact { padding: var(--section-pad) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  transition: box-shadow .2s;
}

.contact-block:hover { box-shadow: var(--shadow-sm); }

.contact-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }

.contact-block h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 4px;
}

.contact-block p,
.contact-block a { font-size: 1rem; color: var(--navy); line-height: 1.5; }

.contact-block a:hover { color: var(--red); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--red);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,43,43,.1);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.btn-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .2s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,43,43,.35);
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  display: none;
}
.form-status.success {
  display: block;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.form-status.error {
  display: block;
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

/* ── 12. FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  color: var(--white);
}

.footer-inner {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
  padding: 56px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img { height: 42px; width: auto; }

.footer-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: .06em;
  color: var(--white);
}

.footer-copy { font-size: .8rem; color: var(--mid-grey); margin-top: 4px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
}

.footer-links a {
  font-family: var(--font-cond);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--red); }

.reg-strip {
  background: rgba(0,0,0,.3);
  text-align: center;
  font-family: var(--font-cond);
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  padding: 14px 20px;
  line-height: 1.6;
}

/* ── 13. MAP ─────────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  background: var(--light-grey);
  margin-top: 24px;
}

.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── 14. CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: var(--off-white);
  padding: 80px 0;
}

.cta-strip .container { text-align: center; }
.cta-strip .section-label { justify-content: center; }
.cta-strip .section-label::before { display: none; }
.cta-strip .section-title { margin-bottom: 16px; }
.cta-strip .section-body { margin: 0 auto 36px; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 15. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image-wrap { display: none; }
  .hero-content { padding: clamp(36px, 8vw, 72px) clamp(20px, 5vw, 48px); }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px 32px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform .35s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); }

  .nav-links a {
    padding: 13px 16px;
    border-radius: var(--radius-sm);
  }
  .nav-links a.nav-cta { margin-top: 8px; text-align: center; }

  .hamburger { display: flex; }

  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .reg-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
