/* ─────────────────────────────────────────
   SHIELD RISK PARTNERS LLC — style.css
   ───────────────────────────────────────── */

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

:root {
  --black:     #000000;
  --charcoal:  #222222;
  --mid:       #555555;
  --silver:    #999999;
  --rule:      #ddd;
  --light:     #F2F2F2;
  --white:     #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Arial, sans-serif;

  --nav-h: 90px;
  --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ── UTILITY ── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 760px;  margin: 0 auto; padding: 0 48px; }
.desktop-br       { display: block; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.section-eyebrow.centered { text-align: center; }
.section-eyebrow.light    { color: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.section-header { margin-bottom: 72px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

/* ── LOGO IMAGE COMPONENTS ── */
.logo-img { display: block; }

/* Nav — dark-bg logo, blend mode drops the black background */
.logo-img--nav {
  height: 80px;
  width: auto;
  opacity: 0.92;
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}
.nav-logo:hover .logo-img--nav { opacity: 1; }

/* Logo divider — light-bg logo, blend mode drops the white background */
.logo-img--divider {
  height: 200px;
  width: auto;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

/* Footer — dark-bg logo, blend mode drops the black background */
.logo-img--footer {
  height: 120px;
  width: auto;
  opacity: 0.85;
  mix-blend-mode: screen;
}

/* ── FADE-UP ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ────────────────────────────────
   NAVIGATION
──────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--black);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { opacity: 0.92; transition: opacity 0.3s; }
.nav-logo:hover { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Contact CTA pill — no underline animation */
.nav-cta {
  padding: 11px 22px !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: var(--white) !important;
  letter-spacing: 2.5px !important;
  transition: background 0.3s, border-color 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ────────────────────────────────
   HERO
──────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black); /* fallback while image loads */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1800&q=85&auto=format') center / cover no-repeat;
  will-change: transform;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1.02); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.84) 0%,
    rgba(0,0,0,0.62) 50%,
    rgba(0,0,0,0.38) 100%
  );
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}
.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
  animation: scrollPulse 2.2s 1.5s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(0.55); opacity: 0.9; }
}

/* ────────────────────────────────
   LOGO DIVIDER
──────────────────────────────── */
#logo-divider {
  padding: 28px 0;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.divider-logo {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.divider-tagline {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 8px;
}

/* ────────────────────────────────
   SERVICES
──────────────────────────────── */
#services {
  padding: 120px 0 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.service-card {
  padding: 48px 36px 52px;
  border-right: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background var(--transition);
  cursor: default;
}
.service-card:first-child { border-left: 1px solid var(--rule); }

.service-card:hover { background: var(--charcoal); }
.service-card:hover .service-number,
.service-card:hover .service-title,
.service-card:hover .service-desc { color: var(--white); }
.service-card:hover .service-divider { background: rgba(255,255,255,0.25); }

.service-number {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--silver);
  margin-bottom: 24px;
  transition: color var(--transition);
}

.service-divider {
  width: 28px;
  height: 1px;
  background: var(--rule);
  margin-bottom: 28px;
  transition: background var(--transition);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color var(--transition);
}

.service-desc {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid);
  transition: color var(--transition);
}

/* ────────────────────────────────
   WHY SHIELD
──────────────────────────────── */
#why-shield {
  position: relative;
  padding: 130px 0;
  background: var(--charcoal);
  overflow: hidden;
}

.why-shield-watermark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 62vw;
  max-width: 820px;
  opacity: 0.045;
  pointer-events: none;
}
.why-shield-watermark svg { width: 100%; height: 100%; }

.why-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.why-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.why-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

.why-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.why-col {
  padding: 52px 44px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), border-color var(--transition);
}
.why-col:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
}

.why-col-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.4);
}
.why-col-icon svg { width: 100%; height: 100%; }

.why-col-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.why-col-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

/* ────────────────────────────────
   PROCESS
──────────────────────────────── */
#process {
  padding: 120px 0;
  background: var(--light);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.process-line {
  position: absolute;
  top: 27px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
  background: var(--rule);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.process-node {
  width: 56px;
  height: 56px;
  border: 1px solid var(--rule);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background var(--transition), border-color var(--transition);
}
.process-step:hover .process-node {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.process-step:hover .process-num { color: var(--white); }

.process-num {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition);
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.process-step-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  letter-spacing: 0.3px;
}

/* ────────────────────────────────
   INDUSTRIES
──────────────────────────────── */
#industries {
  padding: 120px 0;
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 24px;
  border: 1px solid var(--rule);
  margin-top: -1px;
  margin-left: -1px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.industry-card:hover {
  background: var(--light);
  transform: translateY(-5px);
  z-index: 1;
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}

.industry-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--charcoal);
  opacity: 0.55;
  transition: opacity var(--transition);
}
.industry-card:hover .industry-icon { opacity: 1; }
.industry-icon svg {
  width: 100%;
  height: 100%;
}

.industry-label {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ────────────────────────────────
   CONTACT
──────────────────────────────── */
#contact {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: var(--black); /* fallback */
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1800&q=85&auto=format') center / cover no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.78) 60%,
    rgba(0,0,0,0.58) 100%
  );
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-content { max-width: 560px; }

.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  letter-spacing: 0.3px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 52px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.65;
  transition: color 0.25s;
}
a.contact-detail-item:hover { color: var(--white); }

.contact-detail-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.55;
}

#contact .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
#contact .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

/* ────────────────────────────────
   FOOTER
──────────────────────────────── */
#footer {
  background: var(--black);
  padding: 88px 0 52px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}

.footer-logo { margin-bottom: 8px; }

.footer-services {
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  line-height: 2;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: color 0.25s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-address {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.22);
  line-height: 1.7;
}
.footer-address a {
  color: rgba(255,255,255,0.32);
  transition: color 0.25s;
}
.footer-address a:hover { color: rgba(255,255,255,0.7); }

/* ────────────────────────────────
   RESPONSIVE — TABLET (≤1024px)
──────────────────────────────── */
@media (max-width: 1024px) {
  .container, .container-narrow { padding: 0 36px; }
  .hero-content { padding: 0 36px; padding-top: var(--nav-h); }
  .nav-inner { padding: 0 36px; }

  /* Services: 3+2 layout */
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  /* Collapse duplicate inner borders on row 2 */
  .service-card:nth-child(4),
  .service-card:nth-child(5) { border-top: none; }
  .service-card:nth-child(4) { border-left: 1px solid var(--rule); }

  .industries-grid { grid-template-columns: repeat(3, 1fr); }

  .process-timeline { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  .process-line { display: none; }

  .why-columns { grid-template-columns: 1fr; }
  .why-col { padding: 40px 36px; }
}

/* ────────────────────────────────
   RESPONSIVE — MOBILE (≤768px)
──────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container, .container-narrow { padding: 0 24px; }
  .hero-content { padding: 0 24px; padding-top: var(--nav-h); }
  .nav-inner { padding: 0 24px; }
  .desktop-br { display: none; }

  /* Nav logo — scale down to fit 64px bar */
  .logo-img--nav { height: 44px; }

  /* Mobile nav drawer */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 0 40px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 11px;
    letter-spacing: 3px;
  }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 8px auto 0 !important; display: inline-block !important; width: auto !important; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-headline { font-size: clamp(2.8rem, 11vw, 4rem); }
  .hero-sub { font-size: 12px; }

  /* Logo divider */
  #logo-divider { padding: 52px 0; }
  .logo-img--divider { height: 80px; }

  /* Services: single column */
  #services { padding: 80px 0 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card {
    border-left: 1px solid var(--rule);
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 36px 28px;
  }
  .service-card:first-child { border-top: 1px solid var(--rule); }
  .service-card:nth-child(4),
  .service-card:nth-child(5) { border-top: 1px solid var(--rule); }

  /* Why Shield */
  #why-shield { padding: 80px 0; }
  .why-shield-watermark { width: 200vw; right: -60%; }
  .why-col { padding: 36px 28px; }

  /* Process — vertical list, compact */
  #process { padding: 80px 0; }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-line { display: none; }
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 24px 0;
    border-bottom: 1px solid var(--rule);
    gap: 24px;
  }
  .process-step:last-child { border-bottom: none; }
  .process-node {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .process-content { display: flex; flex-direction: column; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-card { padding: 40px 20px; }

  /* Contact */
  #contact { padding: 100px 0; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .process-timeline { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}
