/* ========================================================
   Vons Security Consulting Inc.
   ======================================================== */

:root {
  --teal: #2bbdc3;
  --teal-glow: #3dd4da;
  --teal-deep: #1a9ba0;
  --bg-dark: #07090d;
  --bg-card: #0e1117;
  --bg-elevated: #151920;
  --bg-surface: #1a1f28;
  --border: #222830;
  --border-light: #2e3440;
  --text: #dfe3ea;
  --text-muted: #7d8594;
  --text-faint: #525966;
  --white: #f4f5f7;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--teal); color: var(--bg-dark); }

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-glow); }

img { max-width: 100%; height: auto; display: block; }
.hidden { display: none !important; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-accent { color: var(--teal); }


/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--bg-dark);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-glow);
  border-color: var(--teal-glow);
  color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(43, 189, 195, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-light);
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn-full { width: 100%; }


/* ---- HEADER ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 9, 13, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 9, 13, 0.95);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s ease;
}

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

.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: none;
  color: var(--text-muted) !important;
  font-size: 0.85rem;
  font-weight: 500;
}

.header-phone:hover { color: var(--white) !important; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

.main-nav.open {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 13, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.main-nav.open .nav-links {
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.main-nav.open .nav-links a {
  font-size: 1.25rem;
  color: var(--white);
}


/* ---- HERO ---- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7, 9, 13, 0.92) 0%, rgba(7, 9, 13, 0.7) 50%, rgba(7, 9, 13, 0.5) 100%),
    url('../assets/images/hero-bg.jpg') center / cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.hero-logo {
  width: 28px;
  height: auto;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.7s ease forwards;
}

.hero-word:nth-child(1) { animation-delay: 0.2s; }
.hero-word:nth-child(2) { animation-delay: 0.5s; }
.hero-word:nth-child(3) { animation-delay: 0.8s; }

.hero-word--accent {
  color: var(--teal);
  font-style: italic;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ---- SECTIONS - common ---- */

.section { padding: 5rem 0; }

.section-header { margin-bottom: 3.5rem; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 1rem;
  line-height: 1.7;
}

.section-header--center { text-align: center; }
.section-header--center .section-sub { margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 3rem; }


/* ---- WHO WE PROTECT ---- */

.clients {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.clients-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg-dark) 0%, rgba(7, 9, 13, 0.88) 15%, rgba(7, 9, 13, 0.85) 85%, var(--bg-dark) 100%),
    url('../assets/images/clients-bg.jpg') center 30% / cover no-repeat;
  z-index: 0;
}

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

.clients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.client-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.client-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43, 189, 195, 0.1);
  border: 1px solid rgba(43, 189, 195, 0.25);
  color: var(--teal);
}

.client-icon svg { width: 24px; height: 24px; }

.client-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.client-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ---- SERVICES ---- */

.services {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43, 189, 195, 0.08);
  border: 1px solid rgba(43, 189, 195, 0.2);
  color: var(--teal);
  transition: all 0.3s ease;
}

.service-icon svg { width: 22px; height: 22px; }

.service-card:hover .service-icon {
  background: rgba(43, 189, 195, 0.15);
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(43, 189, 195, 0.15);
}

.service-category {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.service-card:hover .service-tags span {
  border-color: var(--border-light);
  color: var(--text-muted);
}


/* ---- DIVIDER STRIP ---- */

.divider-strip {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.divider-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg-card) 0%, rgba(7, 9, 13, 0.85) 20%, rgba(7, 9, 13, 0.85) 80%, var(--bg-dark) 100%),
    url('../assets/images/divider-bg.jpg') center / cover no-repeat;
  z-index: 0;
}

.divider-content {
  position: relative;
  z-index: 1;
}

.divider-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.divider-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.divider-stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}


/* ---- ABOUT (merged with Why Vons) ---- */

.about {
  background: var(--bg-dark);
}

.about-intro {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.about-heading {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.about-heading h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

.about-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 600px;
}

.about-tagline {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  margin-top: 1rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mini-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.mini-pillar:hover { border-color: var(--teal); }

.mini-pillar svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--teal);
}

.mini-pillar span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-us-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.why-us-image { display: none; }

.why-us-image-inner {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, transparent 60%, rgba(7, 9, 13, 0.4) 100%),
    url('../assets/images/why-us.jpg') center / cover no-repeat;
  border: 1px solid var(--border);
}

.capabilities { max-width: 720px; }

.capability {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.capability:last-child { border-bottom: none; }

.capability-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(43, 189, 195, 0.4);
}

.capability h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.capability p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ---- TESTIMONIALS ---- */

.testimonials { background: var(--bg-card); border-top: 1px solid var(--border); }

.testimonial-feature { margin-bottom: 2rem; }

.testimonial-feature blockquote {
  position: relative;
  padding: 2.5rem;
  background:
    linear-gradient(135deg, rgba(43, 189, 195, 0.04) 0%, transparent 60%),
    var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.testimonial-feature blockquote::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  left: 1.75rem;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-feature p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-feature footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.testimonial-feature strong { color: var(--white); font-weight: 600; }
.testimonial-feature footer span { color: var(--text-muted); }

.testimonial-context {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(43, 189, 195, 0.1);
  border: 1px solid rgba(43, 189, 195, 0.2);
  border-radius: 2px;
  font-size: 0.7rem !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal) !important;
}

.commitment-quote {
  position: relative;
  padding: 2rem 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.commitment-quote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.commitment-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.commitment-quote cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-studies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.case-study {
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.case-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.case-study h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.case-study > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.case-outcome {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.case-outcome span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.case-outcome p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

.confidentiality-note {
  font-size: 0.75rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  font-weight: 500;
}


/* ---- FAQ ---- */

.faq {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--teal);
  border: 1px solid var(--border);
  border-radius: 50%;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item[open] summary::after {
  content: '\2212';
  background: var(--teal);
  color: var(--bg-dark);
  border-color: var(--teal);
  transform: rotate(180deg);
}

.faq-item summary:hover { color: var(--teal); }
.faq-item[open] summary { color: var(--teal); }

.faq-answer { padding-bottom: 1.5rem; }

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
}


/* ---- CONTACT ---- */

.contact { background: var(--bg-card); border-top: 1px solid var(--border); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form { order: 2; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group label span { color: var(--teal); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237d8594' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-note {
  font-size: 0.7rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 1rem;
}

.contact-info { order: 1; }

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43, 189, 195, 0.1);
  border: 1px solid rgba(43, 189, 195, 0.2);
  color: var(--teal);
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.contact-block a,
.contact-block span {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

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

.contact-disclaimer {
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.6;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}


/* ---- FOOTER ---- */

.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-cta-strip {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-cta-strip .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-cta-strip p {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 3rem;
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.footer-social {
  padding: 1.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  color: var(--text-faint);
  opacity: 0.4;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.footer-ig svg {
  width: 30px;
  height: 30px;
}

.footer-ig:hover {
  opacity: 0.75;
  color: var(--text-muted);
}


/* ---- SCROLL ANIMATIONS ---- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-word { opacity: 1; transform: none; animation: none; }
  .scroll-line { animation: none; }
  html { scroll-behavior: auto; }
}


/* ---- RESPONSIVE ---- */

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .divider-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 560px) {
  .about-pillars { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .case-studies { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .section { padding: 6.5rem 0; }

  .main-nav { display: flex; }
  .main-nav.open { position: static; background: none; backdrop-filter: none; }
  .hamburger { display: none; }
  .header-phone { display: block; }

  .hero { padding: 0; }
  .hero-scroll { display: flex; }

  .about-heading {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
  .contact-form { order: 2; }
  .contact-info { order: 1; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }
  .footer-cta-strip .container { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .case-studies { grid-template-columns: repeat(2, 1fr); }

  .why-us-layout {
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: start;
  }

  .why-us-image {
    display: block;
    position: sticky;
    top: 120px;
  }

  .section { padding: 7.5rem 0; }
  .divider-stat-value { font-size: 2.5rem; }
}

@media (min-width: 1280px) {
  .container { padding: 0 2rem; }
}
