/* =========================================
   MEDIA BRIDGE — style.css
   ========================================= */

/* --- TOKENS --- */
:root {
  /* Logo-extracted palette */
  --amber:        #F5A623;      /* Logo amber — primary accent */
  --amber-light:  #FFBF4D;      /* Lighter amber for hovers */
  --amber-dim:    #D4891A;      /* Deeper amber for pressed states */

  --slate:        #545963;      /* Logo slate — secondary element */
  --slate-light:  #6B7280;      /* Lighter slate */

  /* Backgrounds — dark site, charcoal-based (not navy) */
  --bg-deepest:   #111318;      /* Deepest bg — navs, footers */
  --bg-dark:      #181A1F;      /* Primary dark bg */
  --bg-mid:       #1E2128;      /* Section alternation */
  --bg-card:      #22262E;      /* Cards, panels */
  --bg-light:     #F5F3EF;      /* Light section bg */

  /* Text */
  --text-primary: #E8E4DC;      /* Primary readable text */
  --text-muted:   #8A8F9E;      /* Subdued / captions */
  --text-dark:    #1A1A1F;      /* On light backgrounds */

  /* Borders */
  --border:       rgba(245, 166, 35, 0.16);
  --border-subtle: rgba(255,255,255,0.06);

  /* Legacy aliases — keep for compatibility */
  --navy:         var(--bg-dark);
  --navy-mid:     var(--bg-mid);
  --charcoal:     var(--bg-card);
  --gold:         var(--amber);
  --gold-light:   var(--amber-light);
  --cream:        var(--bg-light);
  --white:        #ffffff;
  --text:         var(--text-primary);
  --muted:        var(--text-muted);

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ff-ui:   'DM Sans', system-ui, sans-serif;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--bg-dark); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; }
img:not(.nav__logo-img):not(.footer__logo-img) { display: block; width: 100%; object-fit: cover; }
.nav__logo-img, .footer__logo-img { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--dark { background: var(--bg-mid); }
.section--light { background: var(--bg-light); color: var(--text-dark); }
.section-eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--full { width: 100%; justify-content: center; }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  overflow: visible;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: background 0.3s var(--ease), box-shadow 0.3s;
}
.nav.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-mark {
  width: 38px; height: 38px;
  background: var(--amber);
  color: var(--bg-dark);
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__brand { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; color: #111318; }
.nav__sub { font-size: 0.62rem; color: #555555; letter-spacing: 0.04em; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: #111318;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--amber-dim); }
.nav__cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid var(--amber) !important;
  color: #111318 !important;
  background: rgba(245, 166, 35, 0.12) !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}
.nav__cta:hover {
  background: var(--amber) !important;
  color: #111318 !important;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__img { height: 100%; width: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 10s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(17,19,24,0.94) 45%, rgba(17,19,24,0.62) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 760px;
}
.hero__eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease-out) forwards;
}
.hero__headline {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease-out) forwards;
}
.hero__headline em { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(232,228,220,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s var(--ease-out) forwards;
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s var(--ease-out) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6) translateY(10px); }
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-wrap {
  background: var(--amber);
  overflow: hidden;
  padding: 0.75rem 0;
}
.marquee {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee span {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-deepest);
}
.marquee .sep { opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================
   ABOUT
   ========================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about__img-wrap img {
  height: 520px;
  transition: transform 0.8s var(--ease);
}
.about__img-wrap:hover img { transform: scale(1.04); }
.about__img-badge {
  position: absolute;
  bottom: 2rem; left: -1.5rem;
  background: var(--amber);
  color: var(--bg-deepest);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.badge-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.about__body {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.about__body strong { color: var(--text); }
.about__pillars { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(245,166,35,0.04);
}
.pillar__icon { color: var(--gold); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.pillar strong { display: block; color: var(--white); margin-bottom: 0.25rem; font-family: var(--ff-ui); }
.pillar p { font-size: 0.9rem; color: var(--muted); }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why__card {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.why__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why__card:hover { border-color: rgba(245,166,35,0.4); background: rgba(245,166,35,0.05); transform: translateY(-4px); }
.why__card:hover::before { transform: scaleX(1); }
.why__num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(245,166,35,0.14);
  line-height: 1;
  margin-bottom: 1rem;
}
.why__card h3 { font-family: var(--ff-head); font-size: 1.15rem; color: var(--white); margin-bottom: 0.75rem; }
.why__card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* =========================================
   SERVICES
   ========================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.svc-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  cursor: default;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(245,166,35,0);
  transition: box-shadow 0.4s var(--ease);
  pointer-events: none;
}
.svc-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(245,166,35,0.05); 
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.02);
}
.svc-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(245,166,35,0.15);
}
/* .svc-card__icon sizing is handled in style-extra.css (Lucide icon box) */
.svc-card h3 { 
  font-family: var(--ff-head); 
  font-size: 1.35rem; 
  color: var(--white); 
  margin-bottom: 0.85rem; 
  transition: color 0.3s;
}
.svc-card:hover h3 { color: var(--amber); }
.svc-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; transition: color 0.3s; }
.svc-card:hover p { color: rgba(232,228,220,0.85); }
.svc-card__tag {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,166,35,0.05);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.svc-card:hover .svc-card__tag {
  background: var(--amber);
  color: var(--bg-deepest);
}

/* =========================================
   INDUSTRIES
   ========================================= */
.section--light .section-eyebrow { color: var(--gold); }
.section--light .section-title { color: var(--navy); }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.ind {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(26,26,31,0.12);
  border-radius: 2px;
  background: #fff;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.ind:hover { background: var(--bg-mid); color: var(--amber); border-color: var(--bg-mid); transform: translateY(-2px); }
.ind span { font-size: 1.2rem; }

/* =========================================
   PROCESS
   ========================================= */
.process__track {
  position: relative;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process__line {
  position: absolute;
  left: 2.2rem;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.process__step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process__step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bg-deepest);
  background: var(--amber);
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.step__body h3 { font-family: var(--ff-head); font-size: 1.25rem; color: var(--white); margin-bottom: 0.5rem; }
.step__body p { font-size: 0.9rem; color: var(--muted); max-width: 640px; }

/* =========================================
   WHY PR MATTERS
   ========================================= */
.matters__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
}
.matter-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-card);
  transition: transform 0.3s var(--ease);
}
.matter-card:hover { transform: translateY(-4px); }
.matter-card__stat {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.matter-card p { font-size: 0.9rem; color: var(--muted); }
.matters__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mp {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.mp__icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.mp strong { display: block; color: var(--white); margin-bottom: 0.3rem; font-size: 0.95rem; }
.mp div { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.cta-section__bg { position: absolute; inset: 0; }
.cta-section__bg img { height: 100%; }
.cta-section__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.97) 50%, rgba(10,15,30,0.85) 100%);
}
.cta-section__content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.cta-section__title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section__sub { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--amber); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form select option { background: var(--navy-mid); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-success { text-align: center; padding: 3rem 2rem; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--amber);
  color: var(--bg-deepest);
  font-size: 1.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-family: var(--ff-head); font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--bg-deepest); padding: 5rem 0 2rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer__tagline {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--amber-light);
  margin-bottom: 0.75rem;
}
.footer__parent { font-size: 0.82rem; color: var(--muted); }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links h4 {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.footer__links a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__contact h4 {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.footer__contact p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.4rem; }
.footer__contact a { color: var(--muted); transition: color 0.2s; }
.footer__contact a:hover { color: var(--amber); }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: 2px;
  transition: all 0.25s;
}
.social-icon:hover { border-color: var(--amber); color: var(--amber); background: rgba(245,166,35,0.08); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 30%;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__toggle { display: flex; z-index: 101; }
  .nav__links a { font-size: 1.1rem; }
  .about__grid { grid-template-columns: 1fr; }
  .about__img-badge { left: 1rem; }
  .about__img-wrap img { height: 360px; }
  .why__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .matters__grid { grid-template-columns: 1fr; }
  .matters__points { grid-template-columns: 1fr; }
  .cta-section__content { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .process__line { display: none; }
  .process__step { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .industries__grid { grid-template-columns: 1fr; }
}
