:root {
  --black: #0a0a0a;
  --charcoal: #22242E;
  --dark: #1c1c1c;
  --gold: #fdd10a;
  --gold-light: #fdd10a;
  --gold-dim: #BAE050;
  --white: #f5f0e8;
  --gray: #9a9a9a;
  --light-gray: #2a2a2a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  font-size: 18px;  
}

p {
  line-height: 26px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: #006eb5;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
}

.nav-logo img {
  width: 200px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  font-weight: 800;
}

.nav-cta {
  background: var(--gold);
  border-radius: 50px;
  color: #000 !important;
  padding: 0.5rem 1.4rem !important;
  letter-spacing: 0.1em;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}

/* ─── PAGES ─── */
.page {
  display: none;
  padding-top: 72px;
}

.page.active {
  display: block;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, #1a1510 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: url(../assets/img/cover_serv.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

@keyframes shiftLines {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(80px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  text-align: center;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.we-do {
  text-align: center;
  max-width: 640px;
  margin: 60px auto;
  padding-bottom: 40px;
}

.we-do p {
  margin-bottom: 20px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  border-radius: 50px;
  color: var(--black);
  padding: 0.9rem 2.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: #006eb5;
  border-radius: 50px;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid #006eb5;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stat-bar {
  display: flex;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  z-index: 2;
}

.hero-stat {
  flex: 1;
  padding: 1.6rem 8vw;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  animation: fadeUp 1s 0.4s ease both;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* ─── SECTION ─── */
section {
  padding: 7rem 8vw;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 3.5rem;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
  gap: 1.5px;
}

.service-card {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  background: var(--dark);
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.about-text .section-sub {
  margin-bottom: 2rem;
}

.about-visual {
  position: relative;
  height: 420px;
  background:
    radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, transparent 70%),
    var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-visual::before {
  content: '✦';
  font-size: 12rem;
  color: rgba(201, 168, 76, 0.06);
  position: absolute;
  animation: spin 40s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.about-visual-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  letter-spacing: 0.08em;
  color: rgba(201, 168, 76, 0.25);
  text-align: center;
  z-index: 1;
  line-height: 1;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── PARTNERS ─── */
.partners-section {
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
}

.partner-badge {
  width: 90px;
  height: 50px;
  background: var(--light-gray);
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--gold);
  padding: 5rem 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--black);
  line-height: 1;
}

.cta-band p {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.btn-dark {
  background: #006eb5;
  border-radius: 50px;
  color: #fff;
  padding: 1rem 2.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s;
}

.btn-dark:hover {
  transform: translateY(-2px);
}

/* ─── MAKE READY PAGE ─── */
.page-hero {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201, 168, 76, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  padding: 6rem 8vw 5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  overflow: hidden;
}

.addon-item h4 {
  margin-bottom: 15px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 540px;
}

/* ─── THREE COLUMN ─── */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
}

.col-card {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.col-card>* {
  position: relative;
  z-index: 2;
}

.col-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.col-card:hover::before {
  opacity: 0.25;
}

.col-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.col-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.col-card ul li {
  font-size: 0.88rem;
  color: var(--gray);
  padding-left: 1rem;
  position: relative;
}

.col-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── DELIVERY SECTION ─── */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: start;
}

.delivery-grid .section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.delivery-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.delivery-card {
  background: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding: 1.8rem 2rem;
}

.delivery-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.delivery-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.delivery-card ul li {
  font-size: 0.88rem;
  color: var(--gray);
  padding-left: 1rem;
  position: relative;
}

.delivery-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2em;
}

/* ─── ADDONS ─── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.addon-item {
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 1.8rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}

.addon-item:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: var(--dark);
}

.addon-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.addon-item h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

/* ─── SERVICES WASH ─── */
.wash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.wash-card {
  background: var(--charcoal);
  padding: 2.2rem 2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.wash-card:hover {
  border-color: var(--gold);
  background: var(--dark);
}

.wash-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}

.wash-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wash-card ul li {
  font-size: 0.85rem;
  color: var(--gray);
  padding-left: 1rem;
  position: relative;
}

.wash-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── CONTACT PAGE ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.info-item p,
.info-item a {
  font-size: 0.95rem;
  color: var(--gray);
  text-decoration: none;
  line-height: 1.7;
}

.info-item a:hover {
  color: var(--white);
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.07);
  font-size: 0.88rem;
}

.hours-row .day {
  color: var(--white);
  font-weight: 500;
}

.hours-row .time {
  color: var(--gray);
}

.hours-row.closed .time {
  color: rgba(201, 168, 76, 0.5);
}

/* ─── FORM ─── */
.contact-form {
  background: var(--charcoal);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-form p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group textarea {
  background: var(--dark);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154, 154, 154, 0.4);
}

.map-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-top: 3rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  filter: grayscale(1) invert(0.85);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: var(--light-gray);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 4rem 8vw 2rem;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 16px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 16px;
  color: rgba(154, 154, 154, 0.5);
}

/* ─── NOTIFICATION ─── */
.notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  padding: 1.2rem 2rem;
  font-size: 0.9rem;
  color: var(--white);
  z-index: 9999;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

.notification.show {
  transform: translateY(0);
}

.notification strong {
  color: var(--gold);
}

strong {
  font-weight: 800;
}

/* ─── DIVIDER ─── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.text-white {
  color: #fff !important;
  margin-bottom: 15px;
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    list-style: none;
    height: 100vh;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {    
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    color: var(--white) !important;
    display: block;
    padding: 0.5rem 2rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold) !important;
  }

  .nav-links .nav-cta {
    background: #006eb5;
    border-radius: 50px;
    color: #fff !important;
    padding: 0.7rem 2.5rem !important;
    font-size: 1rem !important;
    display: inline-block;
    width: auto;
  }

  .nav-links .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
  }

  .about-strip,
  .delivery-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .three-col,
  .addons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-stat-bar {
    flex-direction: column;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .btn-dark {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  section {
    padding: 4rem 5vw;
  }

  nav {
    padding: 0 4vw;
  }

  .nav-logo img {
    width: 155px;
  }

  .hero-content {
    padding: 0 5vw;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    text-align: center;
  }

  .page-hero {
    padding: 4rem 5vw 3rem;
  }

  .three-col,
  .addons-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .about-visual {
    height: 260px;
  }

  .cta-band {
    padding: 3.5rem 5vw;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .addon-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}