/* ============================================================
   NEXO ROOFING - Premium CSS
   Design inspired by ICF Next: large type, editorial layout,
   bold sections, smooth animations
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --yellow:       #F5C518;
  --yellow-dark:  #D4A800;
  --yellow-light: #FFF4B8;
  --black:        #0A0A0A;
  --dark:         #111111;
  --dark-2:       #1A1A1A;
  --gray:         #888888;
  --gray-light:   #F4F4F2;
  --white:        #FFFFFF;
  --border:       rgba(255,255,255,0.1);
  --border-dark:  rgba(0,0,0,0.1);
  --ff-head:      'Syne', sans-serif;
  --ff-body:      'Manrope', sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur:          0.7s;
}

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

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: var(--ff-head);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--yellow);
}
.section-heading {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.section-heading.white { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ── Scroll Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
}
.btn:hover::after { transform: translateX(0); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover { background: var(--yellow-dark); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); }

.btn-outline {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: transparent;
}
.btn-outline:hover { background: var(--yellow); color: var(--black); }

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

.btn-arrow::after { display: none; }
.btn-arrow span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover span { transform: translateX(5px); }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  padding: 0 40px;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0% 100%, 0% 35%);
}
.nav-logo .logo-icon svg { width: 18px; height: 18px; }
.nav.scrolled .nav-logo { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--gray); }
.nav.scrolled .nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 10px 22px;
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--yellow-dark) !important; color: var(--black) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .nav-burger span { background: var(--dark); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://i0.wp.com/howardroofingusa.com/wp-content/uploads/2025/06/roof-repair.webp?fit=1920%2C1280&ssl=1');
  background-size: cover;
  background-position: center top;
  transform: scale(1.08);
  transition: transform 8s var(--ease-out);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 40px 100px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--ff-head);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--yellow);
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.hero-title .accent { color: var(--yellow); }
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s var(--ease-out) forwards;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--ff-head);
  z-index: 2;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  animation: scrollLine 1.5s ease infinite;
}

.hero-stats {
  display: flex;
  gap: 50px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 50px;
  opacity: 0;
  animation: fadeUp 0.8s 1s var(--ease-out) forwards;
}
.stat-item {}
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.services { padding: 120px 0; background: var(--white); }
.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-dark);
}
.service-card {
  padding: 50px 36px;
  border-right: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
  cursor: default;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { background: var(--gray-light); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--yellow-dark);
  margin-bottom: 30px;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: clip-path 0.4s var(--ease);
}
.service-card:hover .service-icon { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.service-icon svg { width: 24px; height: 24px; }

.service-title {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.service-arrow {
  margin-top: 30px;
  font-family: var(--ff-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════════ */
.why-us { padding: 120px 0; background: var(--dark); overflow: hidden; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.why-image {
  position: relative;
  height: 580px;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.why-badge-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.why-badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-top: 4px;
  font-weight: 600;
}
.why-content .section-label { color: var(--yellow); }
.why-content .section-heading { color: var(--white); }
.why-content .section-sub { color: rgba(255,255,255,0.5); }
.why-features {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-feature {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left 0.3s var(--ease);
}
.why-feature:hover { padding-left: 8px; }
.why-feature:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.feature-check {
  width: 28px;
  height: 28px;
  background: var(--yellow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-check svg { width: 14px; height: 14px; }
.feature-text h4 {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════ */
.pricing { padding: 120px 0; background: var(--gray-light); }
.pricing-top {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.pricing-top .section-label { justify-content: center; }
.pricing-top .section-label::before { display: none; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
  border-color: var(--yellow);
}
.pricing-card.featured {
  background: var(--dark);
  transform: translateY(-16px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}
.pricing-card.featured:hover { transform: translateY(-22px); }
.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
}
.pricing-tier {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 16px;
}
.pricing-card.featured .pricing-tier { color: var(--yellow); }

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-currency {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 12px;
}
.pricing-card.featured .pricing-currency { color: var(--white); }
.pricing-amount {
  font-family: var(--ff-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-card.featured .pricing-amount { color: var(--white); }
.pricing-unit {
  font-size: 0.85rem;
  color: var(--gray);
  align-self: flex-end;
  margin-bottom: 10px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.6;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); }

.pricing-divider {
  height: 1px;
  background: var(--border-dark);
  margin-bottom: 28px;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--dark);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
.pricing-feature .check {
  width: 20px;
  height: 20px;
  background: var(--yellow-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card.featured .pricing-feature .check { background: rgba(245,197,24,0.15); }
.pricing-feature .check svg { width: 10px; height: 10px; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials { padding: 120px 0; background: var(--white); overflow: hidden; }
.testimonials-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  padding: 50px 40px;
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.testi-card:hover { background: var(--dark); }
.testi-card:hover .testi-text,
.testi-card:hover .testi-name { color: var(--white); }
.testi-card:hover .testi-role { color: rgba(255,255,255,0.5); }
.testi-card:hover .testi-stars { color: var(--yellow); }

.testi-quote {
  font-family: var(--ff-head);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: 24px;
}
.testi-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 32px;
  transition: color 0.3s;
}
.testi-footer { display: flex; align-items: center; justify-content: space-between; }
.testi-info {}
.testi-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  transition: color 0.3s;
}
.testi-role {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 3px;
  transition: color 0.3s;
}
.testi-stars {
  color: var(--yellow-dark);
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTIONS
══════════════════════════════════════════════════════════════ */
.cta-band {
  padding: 100px 0;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'ROOFING';
  position: absolute;
  font-family: var(--ff-head);
  font-size: 18vw;
  font-weight: 800;
  color: rgba(0,0,0,0.05);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 600px;
}

.cta-dark {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-dark-img {
  height: 480px;
  position: relative;
  overflow: hidden;
}
.cta-dark-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cta-dark-img:hover img { transform: scale(1.04); }
.cta-dark-content .section-label { color: var(--yellow); }
.cta-dark-content .section-heading { color: var(--white); }
.cta-dark-content .section-sub { color: rgba(255,255,255,0.5); margin-bottom: 40px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0% 100%, 0% 35%);
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--yellow); }
.footer-col-title {
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.82rem; }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.82rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--yellow); }

/* ══════════════════════════════════════════════════════════════
   POPUP / MODAL
══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(40px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 44px 44px 0;
}
.modal-tag {
  font-family: var(--ff-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 10px;
}
.modal-title {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--dark);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--yellow); }
.modal-body { padding: 32px 44px 44px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-dark);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.83rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] { accent-color: var(--yellow); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.form-check a { color: var(--yellow-dark); text-decoration: underline; }
.form-submit { width: 100%; padding: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}
.form-success .success-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-success p { color: var(--gray); font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-2);
  color: var(--white);
  z-index: 8888;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  border-top: 3px solid var(--yellow);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.87rem; color: rgba(255,255,255,0.75); max-width: 700px; line-height: 1.6; }
.cookie-text a { color: var(--yellow); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════════════════════════════ */
.page-header {
  background: var(--dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR3WSGkdub6cypd1qkhsPvg9oz0Nuf-0dUVQw&s');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-tag {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.page-header-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.page-header-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  max-width: 500px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { opacity: 0.4; }

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */
.about-intro { padding: 120px 0; background: var(--white); }
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-intro-img { height: 560px; position: relative; overflow: hidden; }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-img::after {
  content: '';
  position: absolute;
  bottom: -1px; left: -1px;
  width: 60%;
  height: 4px;
  background: var(--yellow);
}
.about-mv { padding: 120px 0; background: var(--gray-light); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.mv-card { background: var(--white); padding: 60px 50px; }
.mv-card:first-child { background: var(--dark); }
.mv-card:first-child .mv-title,
.mv-card:first-child .mv-text { color: var(--white); }
.mv-card:first-child .mv-text { color: rgba(255,255,255,0.6); }
.mv-icon { font-size: 2rem; margin-bottom: 24px; }
.mv-title {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.mv-text { font-size: 0.9rem; color: var(--gray); line-height: 1.75; }

.expertise { padding: 120px 0; background: var(--white); }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.exp-card {
  padding: 50px 40px;
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.exp-card:hover { background: var(--yellow); }
.exp-num {
  font-family: var(--ff-head);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.exp-card:hover .exp-num { color: rgba(0,0,0,0.1); }
.exp-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.exp-text { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }
.exp-card:hover .exp-text { color: var(--dark); }

/* ══════════════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════════════ */
.blog-section { padding: 80px 0 120px; background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.blog-card { overflow: hidden; background: var(--white); border: 1px solid var(--border-dark); transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-card-img { height: 240px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 32px 28px; }
.blog-card-date {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
}
.blog-card-excerpt { font-size: 0.87rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.blog-read-more {
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.3s;
}
.blog-card:hover .blog-read-more { gap: 14px; color: var(--yellow-dark); }

/* Blog Post */
.blog-post-section { padding: 80px 0 120px; }
.blog-post-inner { max-width: 780px; margin: 0 auto; }
.blog-post-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.blog-post-date {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-dark);
}
.blog-post-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 40px;
}
.blog-post-cover { width: 100%; height: 420px; object-fit: cover; margin-bottom: 50px; }
.blog-post-content {
  font-size: 1rem;
  line-height: 1.85;
  color: #333;
}
.blog-post-content h2 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 40px 0 16px;
}
.blog-post-content h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
}
.blog-post-content p { margin-bottom: 20px; }
.blog-post-content ul { padding-left: 24px; list-style: disc; margin-bottom: 20px; }
.blog-post-content ul li { margin-bottom: 8px; }
.blog-post-content strong { color: var(--dark); }
.blog-not-found {
  text-align: center;
  padding: 80px 0;
}
.blog-not-found h2 { font-family: var(--ff-head); font-size: 2rem; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0 120px; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info-title {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.contact-info-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 40px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 0.9rem; color: var(--dark); }
.contact-form-wrap { background: var(--gray-light); padding: 50px; }
.contact-form-title {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 30px;
}
.validation-msg {
  display: none;
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 5px;
}
.form-group input.error,
.form-group textarea.error { border-color: #e53e3e; }

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════════════════ */
.legal-section { padding: 80px 0 120px; }
.legal-inner { max-width: 860px; margin: 0 auto; }
.legal-content { font-size: 0.95rem; line-height: 1.85; color: #333; }
.legal-content h2 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin: 44px 0 16px;
  padding-top: 10px;
  border-top: 2px solid var(--yellow);
}
.legal-content h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}
.legal-content p { margin-bottom: 18px; }
.legal-content ul { padding-left: 24px; list-style: disc; margin-bottom: 18px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--yellow-dark); text-decoration: underline; }
.legal-last-updated {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 50px;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(3) { border-top: 1px solid var(--border-dark); }
  .service-card:nth-child(4) { border-right: none; border-top: 1px solid var(--border-dark); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .why-inner { grid-template-columns: 1fr; gap: 60px; }
  .why-image { height: 400px; }
  .cta-dark-inner { grid-template-columns: 1fr; gap: 50px; }
  .cta-dark-img { height: 340px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-intro-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-intro-img { height: 400px; }
  .mv-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-form-wrap { padding: 36px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding: 80px 24px 80px; }
  .hero-stats { flex-wrap: wrap; gap: 30px; }
  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-top: 1px solid var(--border-dark); }
  .service-card:first-child { border-top: none; }
  .services-top { flex-direction: column; }
  .why-us { padding: 80px 0; }
  .pricing { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .testimonials-top { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 70px 0; }
  .cta-dark { padding: 80px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .expertise-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .modal-header { padding: 32px 28px 0; }
  .modal-body { padding: 24px 28px 32px; }
  .cookie-banner { padding: 20px 24px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .page-header { padding: 130px 0 60px; }
  .blog-post-cover { height: 260px; }
  .mv-card { padding: 40px 28px; }
}
