/* ============================================================
   RELIAHUB — Palette Swapped to V2 (Navy, Amber, Coral)
   Fonts: Cormorant Garamond (headings) · Jost (body)
   ============================================================ */

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

:root {
  /* V2 Color Palette Mapped to V1 Variables */
  --slate:  #0f2333;       /* V2 Navy */
  --slate2: #1a3548;       /* V2 Navy-mid */
  --stone:  #0f2333;       /* Converted light theme to V2 Navy */
  --stone2: #1a3548;       /* Converted light theme to V2 Navy-mid */
  --brass:  #f0a500;       /* V2 Amber */
  --brass2: #f7c550;       /* V2 Amber-light */
  --coral:  #e8643a;       /* V2 Coral */
  --white:  #f5f0e8;       /* V2 Off-white */
  --ink:    #0f2333;       /* Used for text inside Amber elements */
  --muted:  #8aabba;       /* V2 Text-muted */
  --border: rgba(240, 165, 0, 0.15); /* V2 Subtle Amber Border */
}

/* OVERRIDES FOR HTML INLINE STYLES */
p[style*="color:rgba(250,249,247"] { color: var(--muted) !important; }
.label-line[style] { background: var(--coral) !important; }
.svc-highlight .svc-num[style] { color: rgba(15, 35, 51, 0.6) !important; }
.svc-highlight .svc-arrow[style] { 
  background: rgba(15, 35, 51, 0.15) !important; 
  border-color: rgba(15, 35, 51, 0.25) !important; 
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--slate);
  color: var(--white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--slate); }
::-webkit-scrollbar-thumb  { background: var(--brass); }


/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 5%;
  background: rgba(15, 35, 51, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo span { color: var(--brass); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brass); }

.nav-cta {
  background: var(--brass) !important;
  border: 1px solid var(--brass) !important;
  color: var(--ink) !important;
  padding: 0.55rem 1.6rem;
  transition: background 0.2s !important;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--brass2) !important;
  color: var(--ink) !important;
}


/* ============================================================
   HERO
   ============================================================ */

.hero-img-block 
{
  position: relative; /* Replaces absolute positioning */
  width: 100%;
  z-index: 2;
}

  .hero-img-block img 
  {
  width: 100%; 
  height: auto;
  min-height: 550px;
  object-fit: cover;
  border-radius: 4px; 
  filter: brightness(0.85) contrast(1.1);
}



#hero {
  min-height: 100vh;
  background: var(--slate);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 5%;
  overflow: hidden;
}
.hero-img-overlay 
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Fades from thick Navy on the left to semi-transparent Navy on the right */
  background: linear-gradient(to top, rgba(15, 35, 51, 0.9) 0%, rgba(15, 35, 51, 0.2) 100%);
  border-radius: 4px; /* Matches the border-radius we added to the image */
  pointer-events: none; /* Ensures the overlay doesn't block any mouse clicks */
}


.skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(240, 165, 0, 0.04) 0%, transparent 100%);
  overflow: hidden;
}
.skyline svg {
  width: 100%;
  height: 100%;
  opacity: 0.12;
  fill: var(--brass);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Changed to an even 50/50 split */
  gap: 4rem;
  align-items: center; /* Changed from 'flex-end' to align text and image in the middle */
  width: 100%;
  padding-top: 11rem;
  padding-bottom: 7rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--brass);
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--brass);
  font-weight: 300;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-panel {
  background: rgba(26, 53, 72, 0.4);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-panel-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.prop-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(240, 165, 0, 0.1);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.prop-card:hover { background: rgba(240, 165, 0, 0.06); }

.prop-icon {
  width: 38px;
  height: 38px;
  background: rgba(240, 165, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brass);
}
.prop-icon svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.prop-card-text h4 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.prop-card-text p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}


/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker {
  background: var(--brass);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 4rem;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
.ticker-item::after {
  content: '◆';
  font-size: 0.4rem;
  color: var(--coral);
  opacity: 1;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
section { padding: 8rem 5%; }

.label-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.label-line {
  width: 36px;
  height: 2px;
  background: var(--coral);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}
h2.section-title em {
  font-style: italic;
  color: var(--brass);
}

.btn-brass {
  background: var(--brass);
  color: var(--ink);
  padding: 1rem 2.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-brass:hover {
  background: var(--brass2);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid rgba(240, 165, 0, 0.4);
  color: var(--brass);
  padding: 1rem 2.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-ghost:hover {
  background: rgba(240, 165, 0, 0.08);
  border-color: var(--brass);
  color: var(--brass);
  transform: translateY(-2px);
}


/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--slate);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

#about p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.97rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step 
{
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(247, 241, 241, 0.05);
  transition: padding-left 0.3s;
}
.step:hover { padding-left: 0.5rem; }
.step:first-child { border-top: 1px solid rgba(255, 255, 255, 0.05); }

.step-num 
{
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  min-width: 3.5rem;
  transition: color 0.3s;
}
.step:hover .step-num { color: var(--brass); }

.step-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.step-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 3rem;
}
.stat-box {
  background: var(--slate2);
  padding: 2.5rem 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--brass);
  display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}


/* ============================================================
   WHY CHOOSE
   ============================================================ */
#why { background: var(--slate2); }

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 5rem;
}
.why-header p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.why-card {
  background: var(--slate);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.why-card:hover { background: var(--slate2); }

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.why-card:hover::before { transform: scaleX(1); }

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: #ebe4e4f8;
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}

.why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brass);
}
.why-icon svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--white);
}
.why-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}


/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--slate); }

.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 5rem;
}
.services-top p {
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--slate2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.svc-card:hover {
  border-color: rgba(240, 165, 0, 0.3);
  transform: translateY(-6px);
}

.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--brass);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: block;
}

.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.svc-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

.svc-arrow {
  position: absolute;
  bottom: 1.8rem; right: 1.8rem;
  width: 32px; height: 32px;
  border: 1px solid rgba(240, 165, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.svc-card:hover .svc-arrow {
  background: var(--brass);
  color: var(--ink);
  transform: rotate(-45deg);
}

/* Highlighted CTA card */
.svc-highlight {
  background: var(--brass);
  border-color: var(--brass) !important;
}
.svc-highlight h3        { color: var(--ink); }
.svc-highlight p         { color: rgba(15, 35, 51, 0.8); }
.svc-highlight:hover { background: var(--brass2) !important; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how { background: var(--slate2); }

.how-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  align-items: start;
}

.how-intro p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.97rem;
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.how-step 
{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(224, 219, 219, 0.05);
  align-items: start;
}
.how-step:first-child { border-top: 1px solid rgba(255, 255, 255, 0.05); }

.how-step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgb(238, 237, 235);
  line-height: 1;
  text-align: center;
  margin-top: -0.3rem;
  transition: color 0.3s;
}
.how-step:hover .how-step-n { color: var(--brass); }

.how-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.how-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}


/* ============================================================
   INDUSTRIES
   ============================================================ */
#industries { background: var(--slate); }

.ind-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 5rem;
}
.ind-header p {
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ind-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--slate2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s;
}
.ind-card:hover { border-color: var(--brass); }

.ind-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 35, 51, 0.95) 30%, rgba(15, 35, 51, 0.3) 100%);
  z-index: 1;
}

.ind-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.07;
  transition: opacity 0.4s;
}
.ind-bg img,
.ind-bg svg {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ind-card:hover .ind-bg { opacity: 0.14; }

.ind-bg.ind-photo {
  opacity: 1;
}
.ind-bg.ind-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 0.65s ease, filter 0.65s ease;
}
.ind-card:hover .ind-bg.ind-photo { opacity: 1; }
.ind-card:hover .ind-bg.ind-photo img { 
  transform: scale(1.06); 
  filter: brightness(0.8) saturate(1); 
}

.ind-content {
  position: relative;
  z-index: 2;
}

.ind-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.5rem;
}

.ind-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.ind-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--slate2); }

.testi-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  align-items: start;
}

.testi-intro p {
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-top: 2rem;
}

.testi-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testi-card {
  background: var(--slate);
  padding: 2.5rem;
  border-left: 2px solid var(--brass);
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateX(6px); }

.stars {
  color: var(--brass);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
}

.testi-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-avatar {
  width: 42px;
  height: 42px;
  background: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.85rem;
  flex-shrink: 0;
  overflow: hidden;
}

.t-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.t-role { font-size: 0.78rem; color: var(--muted); }


/* ============================================================
   CTA / CONTACT
   ============================================================ */
#cta {
  background: var(--slate);
  padding: 10rem 5%;
  position: relative;
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.cta-left h2 em {
  font-style: italic;
  color: var(--brass);
}
.cta-left p {
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  font-size: 0.97rem;
  margin-bottom: 3rem;
}

.cta-right {
  background: var(--slate2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem;
}

.cta-form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 2rem;
  display: block;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1.5px solid rgba(240, 165, 0, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.contact-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-val {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 400;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080f16;
  padding: 6rem 5% 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-logo span { color: var(--brass); }

.footer-brand p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.8rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-col a {
  font-size: 0.84rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(138, 171, 186, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  #hero .hero-grid,
  #about,
  .why-header,
  .services-top,
  .how-inner,
  .ind-header,
  .testi-layout,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-panel        { display: none; }
  .why-grid,
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .ind-grid          { grid-template-columns: 1fr; }
  .ind-card          { aspect-ratio: 2/1; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .why-grid,
  .services-grid  { grid-template-columns: 1fr; }
  .nav-links      { display: none; }
  .footer-grid    { grid-template-columns: 1fr; }
  .stat-row       { grid-template-columns: 1fr 1fr; }
}