/* =============================================
   JAIVIN CONSULTANTS — CONCEPT A: CINEMATIC SPLIT
   Fonts: Cormorant Garamond (display) + Outfit (body)
============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0d1b2a;
  --navy-deep:   #07111a;
  --navy-mid:    #142233;
  --navy-light:  #1e3148;
  --gold:        #c9a84c;
  --gold-light:  #e2c06e;
  --gold-pale:   #f7f0de;
  --gold-muted:  rgba(201,168,76,0.15);
  --white:       #ffffff;
  --off-white:   #f7f5f0;
  --cream:       #f2ede3;
  --gray-100:    #eeece8;
  --gray-200:    #dedad3;
  --gray-400:    #a09d96;
  --gray-600:    #6b6760;
  --text:        #1a1714;
  --text-muted:  #5c5850;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   22px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* =============================================
   UTILITIES
============================================= */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 108px 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }

.section-desc { font-size: 16px; color: var(--text-muted); max-width: 600px; line-height: 1.75; }
.section-desc.light { color: rgba(255,255,255,0.55); }

.section-header { text-align: center; margin-bottom: 68px; }
.section-header .section-eyebrow { margin: 0 auto 16px; }
.section-header .section-desc { margin: 0 auto; }

/* =============================================
   BUTTONS
============================================= */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 3px;
  border: 2px solid var(--gold);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}
.btn-gold.btn-full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 15px 36px;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* =============================================
   REVEAL ANIMATION
============================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: none; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.10); }

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 22px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 16px 28px;
}
.mobile-menu a {
  font-size: 15px;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO — CINEMATIC SPLIT
============================================= */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.025) 80px);
  pointer-events: none;
}

/* Gold accent top bar */
.hero::after {
  content: '';
  position: absolute;
  top: 72px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 72px - 120px);
}

/* Hero Left */
.hero-left {
  padding: 72px 56px 56px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  animation: heroFadeUp 1s var(--ease) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.eyebrow-line { width: 24px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: heroFadeUp 1s 0.1s var(--ease) both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: heroFadeUp 1s 0.2s var(--ease) both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: heroFadeUp 1s 0.3s var(--ease) both;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: heroFadeUp 1s 0.4s var(--ease) both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Hero Right — Stat Panel */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 48px 40px 32px;
  animation: heroFadeUp 1s 0.2s var(--ease) both;
}

.stat-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.stat-item {
  padding: 26px 28px;
  transition: background 0.2s;
}
.stat-item:hover { background: rgba(255,255,255,0.04); }

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-left: 4px;
  font-family: var(--font-body);
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.stat-bar {
  margin-top: 10px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: barGrow 1.5s 0.8s var(--ease) both;
  transform-origin: left;
}
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.stat-divider {
  height: 1px;
  background: rgba(201,168,76,0.12);
}

/* Service Strip */
.hero-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  transition: background 0.2s;
  cursor: default;
}
.strip-item:hover { background: rgba(255,255,255,0.04); }

.strip-icon {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.9;
}
.strip-num {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 3px;
}
.strip-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}
.strip-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.strip-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
  margin: 12px 0;
}

/* =============================================
   SERVICES
============================================= */
.services { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.09);
  border-color: var(--gray-400);
}
.service-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}

.sc-featured-tag {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.sc-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.sc-icon {
  color: var(--navy);
  margin-bottom: 16px;
  opacity: 0.75;
}
.sc-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.sc-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.sc-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc-list li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}
.sc-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.sc-link:hover { color: var(--gold); }

/* =============================================
   ABOUT
============================================= */
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left .section-title { text-align: left; margin-bottom: 18px; }
.about-body {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values { margin: 32px 0; display: flex; flex-direction: column; gap: 18px; }
.value-row { display: flex; gap: 16px; align-items: flex-start; }
.value-check {
  width: 26px; height: 26px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-row strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 3px; font-weight: 600; }
.value-row p { color: var(--text-muted); font-size: 13.5px; margin: 0; }

/* About visual */
.about-visual {
  position: relative;
  height: 460px;
}
.av-bg-box {
  position: absolute;
  inset: 40px 0 0 40px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  opacity: 0.06;
}
.av-bg-line {
  position: absolute;
  top: 50%; left: 20px; right: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.1;
}

.av-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.av-card:hover { transform: scale(1.04); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.av-label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 6px; }
.av-value { font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--navy); line-height: 1; }

.av-card-1 { top: 30px; left: 0; width: 160px; border-top: 3px solid var(--gold); }
.av-card-2 { top: 130px; right: 10px; width: 190px; border-top: 3px solid var(--navy); }
.av-card-3 { bottom: 120px; left: 30px; width: 175px; border-top: 3px solid var(--gold); }
.av-card-4 { bottom: 30px; right: 0; width: 170px; border-top: 3px solid var(--navy); }

/* =============================================
   WHY US
============================================= */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.why-us::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
}

.why-eyebrow { color: var(--gold); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.03);
  padding: 38px 32px;
  transition: background 0.25s;
}
.why-card:hover { background: rgba(255,255,255,0.07); }

.why-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 14px;
}
.why-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.why-body {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* =============================================
   CLIENT PROMISE
============================================= */
.testimonials { background: var(--cream); }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promise-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.promise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}

.promise-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.promise-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.promise-body {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

.promise-cta-card {
  background: var(--navy);
  border-color: var(--navy);
}
.promise-cta-card:hover { box-shadow: 0 16px 48px rgba(13,27,42,0.25); }
.promise-cta-inner { display: flex; flex-direction: column; height: 100%; }
.promise-cta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.promise-cta-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.promise-cta-body {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* =============================================
   CONTACT
============================================= */
.contact { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-left .section-title { text-align: left; margin-bottom: 16px; }
.contact-body { font-size: 15.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cd-label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 2px; }
.cd-value { font-size: 15px; color: var(--navy); font-weight: 400; }

.contact-social { display: flex; align-items: center; gap: 10px; }
.social-link { font-size: 14px; color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: color 0.2s; }
.social-link:hover { color: var(--gold); }
.social-dot { color: var(--gray-400); }

/* Form */
.contact-form {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  color: #0d5c3a;
  background: #e8f7ef;
  border: 1px solid rgba(13,92,58,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 14px;
}
.form-success.visible { display: block; }
.form-error {
  display: none;
  color: #7a1c1c;
  background: #fef0f0;
  border: 1px solid rgba(122,28,28,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 14px;
}
.form-error.visible { display: block; }

/* =============================================
   FOOTER
============================================= */
.footer { background: var(--navy-deep); }

.footer-top { padding: 72px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}

.footer-logo {
  height: 64px;
  width: auto;
  background: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 16px; align-items: center; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom-links span { color: rgba(255,255,255,0.15); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 28px; border-right: none; min-height: auto; }
  .hero-strip { grid-template-columns: 1fr 1fr; gap: 0; }
  .strip-divider:nth-child(4) { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid, .promise-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-strip { grid-template-columns: 1fr; }
  .strip-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-outline { text-align: center; }
  .footer-links-grid { grid-template-columns: 1fr; }
}
