/* ===================================================
   ROI-M WEBSITE — SHARED STYLES
   Industrial B2B Marketing Agency
   Colors: Black | Yellow #F0C000 | Steel #6B7A8D | White
   Fonts: Barlow Condensed (display) | Barlow (body)
   =================================================== */

:root {
  --black:       #0A0A0A;
  --yellow:      #F0C000;
  --yellow-dark: #C9A100;
  --steel:       #6B7A8D;
  --steel-light: #B8C5D3;
  --steel-dark:  #3A4655;
  --white:       #FFFFFF;
  --off-white:   #F5F5F3;
  --gray:        #E8E8E6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--black);
  background: var(--white);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== NAVIGATION ===== */
nav {
  background: var(--black);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 3px solid var(--yellow);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.logo span { color: var(--yellow); }

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

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1.1rem;
  height: 70px;
  color: var(--steel-light);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: var(--yellow);
  background: rgba(240,192,0,0.07);
}

.dropdown {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  background: var(--black);
  min-width: 250px;
  border-top: 3px solid var(--yellow);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.nav-links > li:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 0.75rem 1.4rem;
  color: var(--steel-light);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown a:hover {
  color: var(--yellow);
  padding-left: 1.8rem;
  background: rgba(240,192,0,0.05);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.4rem !important;
  height: auto !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  margin-left: 0.5rem;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--yellow-dark) !important; color: var(--black) !important; }

/* ===== HERO — HOMEPAGE ===== */
.hero-home {
  margin-top: 70px;
  min-height: 92vh;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: var(--steel-dark);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.35;
}

.hero-diamonds {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.diamond-grid {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.8rem;
  width: 50%;
}

.d {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  transform: rotate(45deg);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* ===== HERO — INNER PAGES ===== */
.hero-inner {
  margin-top: 70px;
  background: var(--black);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-inner::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--steel-dark);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.3;
}

.hero-inner-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-inner .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-inner .eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero-inner h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.2rem;
  line-height: 1.0;
}

.hero-inner h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-inner .lead {
  font-size: 1.1rem;
  color: var(--steel-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== HERO TEXT (homepage) ===== */
.hero-text .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-text .eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero-text h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--steel-light);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

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

/* ===== HERO FORM ===== */
.hero-form {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
}

.hero-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--yellow);
}

.hero-form h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  color: var(--black);
}

.hero-form .sub {
  font-size: 0.87rem;
  color: var(--steel);
  margin-bottom: 1.5rem;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 0.9rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray);
  background: var(--off-white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  background: var(--white);
}

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

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

.btn-form {
  width: 100%;
  background: var(--black);
  color: var(--yellow);
  padding: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.btn-form:hover { background: var(--steel-dark); }

.g-recaptcha { margin-bottom: 1rem; transform: scale(0.88); transform-origin: left; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  padding: 0.9rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-dark {
  background: var(--black);
  color: var(--yellow);
  padding: 0.9rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-dark:hover { background: var(--steel-dark); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--yellow);
  padding: 2.2rem 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.15);
  padding: 0.5rem;
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-top: 0.3rem;
  display: block;
}

/* ===== SECTION UTILITIES ===== */
.section { padding: 6rem 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--black); color: var(--white); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

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

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  max-width: 640px;
}

.section-header p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--steel);
  max-width: 580px;
  line-height: 1.7;
}

/* ===== SERVICE CARDS GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gray);
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width 0.3s;
}

.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--off-white); }

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  bottom: -5px; right: -5px;
  width: 100%; height: 100%;
  background: var(--yellow);
  z-index: -1;
}

.service-icon i { color: var(--yellow); font-size: 1.15rem; }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--black);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.65;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.service-link i { font-size: 0.65rem; transition: transform 0.2s; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ===== SPECIALTY STRIP ===== */
.specialty-strip { background: var(--black); padding: 6rem 0; }

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 3.5rem;
}

.specialty-card {
  background: var(--black);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.2s;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.specialty-card:hover { background: var(--steel-dark); }

.specialty-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.35;
  display: block;
  margin-bottom: 0.5rem;
}

.specialty-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.specialty-card p {
  font-size: 0.82rem;
  color: var(--steel-light);
  line-height: 1.55;
}

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-text p {
  font-size: 0.98rem;
  color: var(--steel-dark);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-credentials {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.credential {
  padding: 1.2rem;
  border: 1.5px solid var(--gray);
  border-left: 4px solid var(--yellow);
}

.credential strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  color: var(--black);
}

.credential span {
  font-size: 0.78rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== INDUSTRY BAR ===== */
.industry-bar {
  padding: 3rem 0;
  background: var(--black);
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

.industry-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  text-align: center;
  margin-bottom: 2rem;
}

.industry-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.industry-item { text-align: center; color: var(--steel-light); }
.industry-item i { font-size: 1.8rem; display: block; color: var(--steel); margin-bottom: 0.4rem; }
.industry-item span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 2rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 8%;
  width: 84%;
  height: 2px;
  background: var(--yellow);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  bottom: -5px; right: -5px;
  width: 100%; height: 100%;
  background: var(--yellow);
  z-index: -1;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.87rem;
  color: var(--steel);
  line-height: 1.65;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  background: var(--yellow);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '';
  position: absolute;
  right: -4%;
  top: -20%;
  width: 300px;
  height: 300px;
  background: rgba(0,0,0,0.06);
  transform: rotate(45deg);
}

.quote-banner::after {
  content: '';
  position: absolute;
  left: 5%;
  bottom: -30%;
  width: 200px;
  height: 200px;
  background: rgba(0,0,0,0.04);
  transform: rotate(45deg);
}

.quote-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  max-width: 700px;
  line-height: 1.15;
}

/* ===== CONTENT SECTIONS (inner pages) ===== */
.content-section { padding: 6rem 0; }
.content-section.alt { background: var(--off-white); }

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }

.content-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.content-block p {
  font-size: 0.98rem;
  color: var(--steel-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-block ul {
  margin: 1rem 0 1.2rem 0;
  padding: 0;
  list-style: none;
}

.content-block ul li {
  font-size: 0.95rem;
  color: var(--steel-dark);
  line-height: 1.7;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--gray);
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: var(--yellow);
}

.content-visual {
  background: var(--off-white);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.content-visual.dark {
  background: var(--steel-dark);
}

.content-visual::before {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 85%; height: 85%;
  border: 3px solid var(--yellow);
  z-index: 0;
}

.visual-icon {
  position: relative;
  z-index: 1;
  text-align: center;
}

.visual-icon i {
  font-size: 5rem;
  color: var(--steel-light);
  display: block;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
  border-left: 5px solid var(--yellow);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--off-white);
}

.pull-quote p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  font-style: italic;
}

/* ===== HIGHLIGHT BOXES ===== */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.highlight-box {
  padding: 2rem;
  border: 1.5px solid var(--gray);
  border-top: 4px solid var(--yellow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.highlight-box:hover {
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.highlight-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.highlight-box p {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.65;
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--off-white); padding: 6rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.contact-info p {
  font-size: 0.98rem;
  color: var(--steel-dark);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.15s;
}

.contact-item:hover { opacity: 0.75; }

.contact-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { font-size: 1rem; color: var(--black); }

.contact-item-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
}

.contact-item-text span { font-size: 1rem; color: var(--black); }

.contact-form-box {
  background: var(--white);
  padding: 3rem;
  border-top: 4px solid var(--yellow);
}

.contact-form-box h3 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.contact-form-box .sub { font-size: 0.88rem; color: var(--steel); margin-bottom: 2rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--steel-light);
  padding: 5rem 0 2.5rem;
}

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

.footer-brand p {
  margin-top: 1.2rem;
  font-size: 0.87rem;
  line-height: 1.7;
  opacity: 0.65;
  max-width: 320px;
}

.footer-phone {
  display: block;
  margin-top: 1.2rem;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col ul li a {
  color: var(--steel-light);
  text-decoration: none;
  font-size: 0.87rem;
  opacity: 0.7;
  transition: opacity 0.15s, color 0.15s;
}

.footer-col ul li a:hover { opacity: 1; color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  opacity: 0.45;
}

.d-accent {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--yellow);
  transform: rotate(45deg);
  margin: 0 0.4rem;
  vertical-align: middle;
  opacity: 0.7;
}

/* ===== VIDEO EMBED ===== */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--black);
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up   { animation: fadeUp 0.65s ease forwards; }
.fade-up-2 { animation: fadeUp 0.65s 0.13s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.65s 0.26s ease forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.65s 0.4s  ease forwards; opacity: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .specialty-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .hero-content-wrap  { grid-template-columns: 1fr; }
  .hero-form          { max-width: 500px; }
  .stats-inner        { grid-template-columns: repeat(2, 1fr); }
  .about-split        { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid       { grid-template-columns: 1fr; }
  .process-steps      { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .content-split      { grid-template-columns: 1fr; gap: 3rem; }
  .highlight-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid  { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; }
  .stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .form-row       { grid-template-columns: 1fr; }
  .quote-inner    { flex-direction: column; }
  .highlight-grid { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr 1fr; }
  .hero-inner h1  { font-size: 2.6rem; }
  .nav-links      { display: none; }
  .specialty-grid { grid-template-columns: 1fr; }
}
