:root {
  --red: #dd3333;
  --red-dark: #b52222;
  --red-light: #f5eded;
  --dark: #1a1f2e;
  --dark-2: #222840;
  --mid: #3d4560;
  --body-text: #4a5568;
  --light-grey: #f7f8fc;
  --border: #e8ecf2;
  --white: #ffffff;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  padding: 0.55rem 5%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem;
}

.topbar a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: auto;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-logo img {
  max-height: 100px;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--body-text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--dark);
  background: var(--light-grey);
}

/* =========================
   DROPDOWN
   ========================= */

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 240px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

/* show dropdown */
.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* dropdown items */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #333;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #ff6600;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 991px) {


    /* dropdown becomes click-style */
    .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0; background-size: cover;
  background-position: center;
  opacity: 0.18;
  background-image: url('https://images.unsplash.com/photo-1565008447742-97f6f38c985c?w=1600&q=80');
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(26, 31, 46, 0.58) 40%,
    rgba(26, 31, 46, 0.3) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 5% 8rem;
  max-width: 70%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(221, 51, 51, 0.15);
  border: 1px solid rgba(221, 51, 51, 0.35);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.5s ease both;
}

.hero-pill span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8080;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3.5rem, 7vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.5s 0.1s ease both;
  margin-top: 10px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.5s 0.2s ease both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.5s 0.3s ease both;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: all 0.25s;
  letter-spacing: 0.02em;
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221, 51, 51, 0.35);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s;
}

.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost-red {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--red);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: all 0.25s;
}

.btn-ghost-red:hover {
  background: var(--red);
  color: var(--white);
}

/* Hero stats float card */
.hero-stats-card {
  position: absolute;
  bottom: -1px;
  right: 5%;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 2rem 2.5rem;
  display: flex;
  gap: 3rem;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  animation: fadeUp 0.5s 0.4s ease both;
  z-index: 2;
}

.hstat {
  text-align: center;
}

.hstat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.hstat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--body-text);
  margin-top: 0.2rem;
}

.hstat-divider {
  width: 1px;
  background: var(--border);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--light-grey);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--body-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-check {
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section-white {
  background: var(--white);
  padding: 6rem 5%;
}

.section-light {
  background: var(--light-grey);
  padding: 6rem 5%;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
  padding: 6rem 5%;
}

.section-dark-2 {
  background: var(--dark-2);
  color: var(--white);
  padding: 6rem 5%;
}

.section-red {
  background: var(--red);
  color: var(--white);
  padding: 4rem 5%;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-label.light {
  color: #ff9090;
}

.section-label.light::before {
  background: #ff9090;
}

h2 {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

h2 em {
  font-style: normal;
  color: var(--red);
}

.section-dark h2 em,
.section-dark-2 h2 em {
  color: #ff7070;
}

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;max-height: 650px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: 2rem;
  right: -1px;
  background: var(--red);
  padding: 1.4rem 1.8rem;
  border-radius: 16px 0 0 16px;
  font-family: var(--font-head);
}

.about-img-badge .big {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: white;
}

.about-img-badge .small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.about-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.about-text p {
  color: var(--body-text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── RISK CARDS ── */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.risk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.risk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.risk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.risk-card:hover::before {
  transform: scaleX(1);
}

.risk-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(221, 51, 51, 0.07);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
}

.risk-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #dd3333;
}

.risk-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.risk-card p {
  font-size: 0.86rem;
  color: var(--body-text);
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   PORTFOLIO — Before / After
   ============================================= */

.pa-projects {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Card */
.pa-project {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* Two-column image grid */
.pa-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.pa-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0ede8;
}

.pa-img-wrap + .pa-img-wrap {
    border-left: 3px solid #fff;
}

.pa-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Before / After badges */
.pa-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    pointer-events: none;
}

.pa-badge--before {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.pa-badge--after {
    background: #dd3333; /* match your site's red/orange */
    color: #fff;
}

/* Footer row */
.pa-footer {
    padding: 14px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pa-footer__title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.pa-footer__text {
    font-size: 13px;
    color: #666;
    margin: 0;
    width: 100%;
}

/* Stack to single column on small screens */
@media (max-width: 540px) {
    .pa-images {
        grid-template-columns: 1fr;
    }

    .pa-img-wrap + .pa-img-wrap {
        border-left: none;
        border-top: 3px solid #fff;
    }
}

/* ── SERVICE CARDS (image) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.services-grid.services-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

.svc-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  min-height: 300px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: brightness(0.55) saturate(0.8);
  transition: filter 0.4s, transform 0.5s;
}

.svc-card:hover img {
  filter: brightness(0.45) saturate(0.6);
  transform: scale(1.06);
}

.svc-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(26, 31, 46, 0.95) 0%,
    rgba(26, 31, 46, 0.1) 65%,
    transparent 100%
  );
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.svc-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: white;
  margin-bottom: 0.4rem;
}

.svc-card p {
  font-size: 0.82rem;
  color: #b0bec5;
  font-weight: 300;
  line-height: 1.6;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ff8080;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
}

.svc-card:hover .svc-link {
  opacity: 1;
  transform: translateX(0);
}

/* ── DARK BANNER ── */
.dark-banner {
  background: var(--dark-2);
  padding: 5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.dark-banner h2 {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.dark-banner p {
  color: #94a3b8;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
}

.phone-big {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.phone-big:hover {
  color: #ff6060;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.process-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-height: 700px;
}

.process-img-wrap img {
  width: 100%;
  display: block;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.pstep {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pstep:last-child {
  border-bottom: none;
}

.pstep-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--red-light);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--red);
  margin-top: 0.1rem;
}

.pstep-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.pstep-body p {
  font-size: 0.86rem;
  color: var(--body-text);
  line-height: 1.7;
  font-weight: 300;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.check-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.check-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 0.1rem;
}

.check-row h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.check-row p {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.65;
}

/* Testimonial cards */
.tcards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.tcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}

.tcard-quote {
  font-size: 3rem;
  font-family: Georgia, serif;
  color: rgba(221, 51, 51, 0.3);
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

.stars {
  color: #ff7070;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.tcard p {
  font-size: 0.87rem;
  color: #cbd5e0;
  font-style: italic;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.tcard-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff9090;
}

.page-hero {
  height: 40vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.breadcrumb {
  position: relative;
  background: var(--red);
  color: white;
  border-radius: 0;
}

.breadcrumb a {
  color: white;
}
/* ── NEWS ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.ncard {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s ease;
}

.ncard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--red);
}

.ncard-img {
  height: 250px;
  overflow: hidden;
}

.ncard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.4s ease;
}

.ncard:hover .ncard-img img {
  transform: scale(1.07);
}

.ncard-body {
  padding: 1.5rem;
}

.ntag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
}

.ncard h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.ncard p {
  font-size: 0.82rem;
  color: var(--body-text);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CTA BANNER ── */
.cta-wrap {
  padding: 0 5% 5rem;
  background: var(--white);
}

.cta-box {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: #94a3b8;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: var(--white);
  border-top: 4px solid var(--red);
}

.footer-main {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4.5rem 5% 3rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

.footer-logo img {
  max-width: 150px;
}

.footer-logo span {
  color: var(--red);
}

.footer-desc {
  font-size: 0.86rem;
  color: #64748b;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 270px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(221, 51, 51, 0.4);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.83rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #475569;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--red);
}

/* ── FOOTER TRUST BAR ── */

.footer-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
}

.footer-trust__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #475569;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-trust__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-trust__logo {
  display: flex;
  align-items: center;
  opacity: 0.45;
  transition: opacity 0.2s;
  /*filter: grayscale(100%) brightness(2);*/
  /* grayscale + brightened so logos show as muted white on dark bg */
}

.footer-trust__logo:hover {
  opacity: 0.85;
}

.footer-trust__logo img {
  height: 28px;
  width: auto;
  display: block;
}

/* ── UTILS ── */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-600 {
  max-width: 600px;
}

.subtext {
  color: var(--body-text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 0.75rem;
}

.subtext-light {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 0.75rem;
}

.mt2 {
  margin-top: 2rem;
}

.mt3 {
  margin-top: 3rem;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-stats-card {
    display: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }


  .about-split,
  .process-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding: 3rem 5%;
  }

  .risk-grid,
  .services-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats-card {
    position: relative;
    right: auto;
    border-radius: var(--radius);
    margin: 2rem 5%;
    display: none;
  }

  .dark-banner {
    flex-direction: column;
  }

  .cta-box {
    padding: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .risk-grid,
  .services-grid,
  .news-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════
   FOAM AWAY — RESPONSIVE CSS
   Save as foam-away-responsive.css and link after your
   main stylesheet:
     <link rel="stylesheet" href="foam-away-responsive.css">

   Breakpoints:
     Tablet  →  max-width: 1024px
     Mobile  →  max-width: 768px
     Tiny    →  max-width: 480px
   ════════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════
   TABLET  ≤ 1024px
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* ── Navigation ── */
  .nav-links          { display: none; }          /* hide desktop links */
  nav                 { padding: 0 4%; }

  /* ── Hero ── */
  .hero               { min-height: auto; }
  .hero-inner         { padding: 5rem 4% 3rem; max-width: 100%; }
  .hero h1            { font-size: clamp(3rem, 6vw, 5.5rem); }

  /* Stats card drops below hero, sits inline */
  .hero-stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 0 4%;
    border-radius: var(--radius);
    gap: 2rem;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
    justify-content: center;
    display: none !important;
  }
  .hstat-divider      { display: none; }

  /* ── About split → image above, text below ── */
  .about-split        { grid-template-columns: 1fr; }
  .about-img          { min-height: 360px; }
  .about-img-badge    { bottom: 1.5rem; }
  .about-text         { padding: 3rem 4%; }

  /* ── Grids → 2 columns ── */
  .risk-grid          { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .news-grid          { grid-template-columns: repeat(2, 1fr); }
  .svc-card           { min-height: 280px; }

  /* ── Dark call banner → stack ── */
  .dark-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 4%;
  }
  .dark-banner > div:last-child { text-align: left !important; }

  /* ── Process → image above steps ── */
  .process-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .process-img-wrap   { max-height: 400px; overflow: hidden; }
  .process-img-wrap img { width: 100%; height: 400px; object-fit: cover; }

  /* ── Why Us + Testimonials → stack ── */
  .why-grid           { grid-template-columns: 1fr; gap: 3.5rem; }

  /* ── Footer → 2-column grid ── */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 4% 2.5rem;
  }

  /* ── Misc spacing ── */
  .trust-bar          { gap: 1.5rem; padding: 1.2rem 4%; }
  .cta-box            { padding: 3.5rem 2.5rem; }

  .section-white,
  .section-light,
  .section-dark,
  .section-dark-2     { padding: 4.5rem 4%; }
}


/* ════════════════════════════════════════════
   MOBILE  ≤ 768px
   ════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Topbar ── */
  .topbar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding: 0.6rem 4%;
  }

  /* ── Hero ── */
  .hero-inner         { padding: 4rem 4% 2.5rem; }
  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    line-height: 0.95;
    margin-bottom: 1.2rem;
  }
  .hero-sub           { font-size: 1rem; margin-bottom: 2rem; max-width: 100%; }

  /* Buttons stack full-width in hero */
  .hero-btns          { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-red,
  .hero-btns .btn-ghost-white { width: 100%; justify-content: center; }

  /* Stats card spans full width, no rounding */
  .hero-stats-card    { margin: 0; border-radius: 0; gap: 0; padding: 0; }
  .hstat              { flex: 1; padding: 1.2rem 0.75rem; border-right: 1px solid var(--border); }
  .hstat:last-child   { border-right: none; }
  .hstat-num          { font-size: 1.7rem; }

  /* ── Trust bar ── */
  .trust-bar          { justify-content: flex-start; gap: 0.75rem 2rem; }
  .trust-item         { font-size: 0.75rem; }

  /* ── About ── */
  .about-img          { min-height: 280px; }
  .about-text         { padding: 2.5rem 4%; }
  .about-text p       { font-size: 0.95rem; }
  .about-img-badge    { padding: 1rem 1.2rem; }
  .about-img-badge .big { font-size: 1.8rem; }

  /* ── Grids → single column ── */
  .risk-grid          { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .services-grid      { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .news-grid          { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }

  /* ── Card tweaks ── */
  .risk-card          { padding: 1.5rem; }
  .risk-num           { font-size: 2.5rem; }
  .svc-card           { min-height: 240px; }
  .ncard-img          { height: 200px; }

  /* ── Dark call banner ── */
  .dark-banner        { padding: 3rem 4%; gap: 1.5rem; }
  .dark-banner h2     { font-size: 2rem; }
  .phone-big          { font-size: 2rem; }
  .dark-banner > div:last-child .btn-red {
    width: 100%;
    justify-content: center;
  }

  /* ── Process ── */
  .process-grid       { gap: 2rem; }
  .process-img-wrap   { border-radius: var(--radius); }
  .process-img-wrap img { height: 260px; }
  .pstep              { padding: 1.2rem 0; gap: 1rem; }
  .pstep-num          { width: 34px; height: 34px; font-size: 0.8rem; }

  /* ── Why Us ── */
  .why-grid           { gap: 2.5rem; }
  .check-list         { gap: 1rem; }
  .check-row h4       { font-size: 0.95rem; }

  /* ── Testimonials ── */
  .tcards             { gap: 1rem; }
  .tcard              { padding: 1.4rem; }
  .tcard-quote        { font-size: 2.2rem; }

  /* ── CTA ── */
  .cta-wrap           { padding: 0 4% 3.5rem; }
  .cta-box            { padding: 3rem 1.75rem; border-radius: var(--radius-lg); }
  .cta-inner h2       { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .cta-btns           { flex-direction: column; align-items: center; }
  .cta-btns .btn-red,
  .cta-btns .btn-ghost-white {
    width: 100%;
    justify-content: center;
    max-width: 360px;
  }

  /* ── Footer ── */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 4% 2rem;
  }
  .footer-desc        { max-width: 100%; }
  .footer-bottom      {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.2rem 4%;
  }
  .footer-legal       { gap: 1.5rem; }

  /* ── Section padding ── */
  .section-white,
  .section-light,
  .section-dark,
  .section-dark-2     { padding: 3.5rem 4%; }

  /* ── Global heading scale ── */
  h2                  { font-size: clamp(1.8rem, 6vw, 2.5rem); }

  /* ── Flex-between headers → stack ── */
  .flex-between       { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .flex-between .btn-ghost-red { align-self: flex-start; }
}


/* ════════════════════════════════════════════
   TINY  ≤ 480px
   ════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Topbar ── */
  .topbar             { flex-direction: column; gap: 0.4rem; align-items: center; }

  /* ── Nav ── */
  .nav-logo           { font-size: 1.6rem; }

  /* ── Hero ── */
  .hero h1            { font-size: clamp(2.4rem, 13vw, 3.5rem); }
  .hero-pill span     { font-size: 0.65rem; letter-spacing: 0.08em; }

  /* Stats card → 2×2 grid */
  .hero-stats-card    { display: grid; grid-template-columns: 1fr 1fr; }
  .hstat              { border-right: none; border-bottom: 1px solid var(--border); }
  .hstat:nth-child(odd)              { border-right: 1px solid var(--border); }
  .hstat:nth-last-child(-n+2)        { border-bottom: none; }

  /* ── Trust bar → single column ── */
  .trust-bar          { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* ── Buttons → full width everywhere ── */
  .btn-red,
  .btn-ghost-red,
  .btn-ghost-white    { width: 100%; justify-content: center; }

  /* Except "View Our Work" in about — keep it inline */
  .about-text .btn-ghost-red { width: auto; }

  /* ── Cards ── */
  .risk-card          { padding: 1.25rem; }

  /* ── CTA ── */
  .cta-box            { padding: 2.5rem 1.25rem; }

  /* ── Footer ── */
  .footer-bottom      { gap: 0.5rem; }
}