:root {
  --navy: #0d1f2d;
  --gold: #b8963e;
  --gold-lt: #d4af6a;
  --cream: #f9f5ee;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: rgba(184, 150, 62, 0.25);
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

/* =============================================
     RESET & BASE
  ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img {
  background: var(--cream);
}

/* =============================================
     UTILITY
  ============================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* =============================================
     PAGE SWITCHING &mdash; only the active page is shown
  ============================================= */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* =============================================
     NAV
  ============================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 31, 45, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 150, 62, 0.2);
  padding: 0;
  width: 100%;
}
.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 37px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-lt);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--gold-lt);
}

/* =============================================
     SECTIONS (shared)
  ============================================= */
section {
  padding: 100px 0;
}
.sec-head {
  margin-bottom: 60px;
}
.sec-head h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.sec-head p {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
     PAGE 1 &mdash; HERO
  ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 31, 45, 0.93) 48%,
    rgba(13, 31, 45, 0.55) 100%
  );
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 150, 62, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 150, 62, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--gold-lt);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* STATS */
.stats-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testi-card {
  background: var(--white);
  padding: 40px;
  border-left: 3px solid var(--gold);
}
.testi-quote {
  font-family: var(--font-head);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid var(--border);
}
.testi-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.testi-company {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

/* CONTACT */
#contact {
  background: var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(184, 150, 62, 0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.contact-label {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.contact-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-group select option {
  background: var(--navy);
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.form-submit:hover {
  background: var(--gold-lt);
}

/* =============================================
     PAGE 2 &mdash; SERVICES
  ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.svc-card {
  background: var(--cream);
  padding: 44px 36px;
  transition: background 0.25s;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.svc-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin-bottom: 24px;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.svc-card:hover {
  background: var(--navy);
  border-left-color: var(--gold);
}
.svc-card:hover .svc-img {
  filter: grayscale(60%) brightness(0.6);
}
.svc-card:hover .svc-title {
  color: var(--white);
}
.svc-card:hover .svc-desc {
  color: rgba(255, 255, 255, 0.55);
}
.svc-card:hover .svc-num {
  color: rgba(184, 150, 62, 0.3);
}
.svc-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 600;
  color: rgba(13, 31, 45, 0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.25s;
}
.svc-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.25s;
}
.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  transition: color 0.25s;
}
.svc-card details {
  margin-top: 10px;
}
.svc-card details summary {
  cursor: pointer;
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-body);
}
.svc-card details div p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.svc-card div[style*="display:none"] p,
.svc-card div[style*="display: none"] p,
.svc-card div[style*="display:block"] p,
.svc-card div[style*="display: block"] p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 12px;
  font-family: var(--font-body);
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.price-card {
  background: var(--cream);
  padding: 44px 36px;
  position: relative;
}
.price-card.featured {
  background: var(--navy);
}
.price-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.price-name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.price-card.featured .price-name {
  color: var(--white);
}
.price-amount {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin: 20px 0 8px;
}
.price-card.featured .price-amount {
  color: var(--gold);
}
.price-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.4);
}
.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.price-feature {
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-card.featured .price-feature {
  color: rgba(255, 255, 255, 0.55);
}
.pf-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.pkg-select-btn {
  width: 100%;
  margin-top: 16px;
  padding: 11px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.pkg-select-btn:hover {
  background: var(--gold);
  color: var(--navy);
}
.price-card.featured .pkg-select-btn {
  color: var(--white);
  border-color: var(--gold);
}
.price-card.featured .pkg-select-btn:hover {
  background: var(--gold);
  color: var(--navy);
}
.price-card.plan-chosen {
  border-top: 3px solid var(--gold) !important;
  outline: 2px solid var(--gold);
}

/* =============================================
     PAGE 3 &mdash; ABOUT
  ============================================= */
#about {
  background: var(--navy);
  padding: 0;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-photo-side {
  position: relative;
  overflow: hidden;
}
.about-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) brightness(0.85);
}
.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
}
.about-text-side {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.about-text-side h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

#markets {
  background: var(--cream);
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.market-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.market-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
}
.market-body {
  padding: 20px 22px;
}
.market-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.market-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* =============================================
     PAGE 4 &mdash; WHY AURIVA
  ============================================= */
#why {
  background: var(--navy);
  padding: 0;
}
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.why-img {
  position: relative;
  overflow: hidden;
}
.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.7);
}
.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 50%, var(--navy) 100%);
}
.why-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.2;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.why-icon {
  width: 36px;
  height: 36px;
  background: rgba(184, 150, 62, 0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.why-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  font-weight: 300;
}

/* =============================================
     FOOTER
  ============================================= */
footer {
  background: #080f14;
  padding: 48px 0 28px;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.footer-logo span {
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 28px;
  text-align: center;
}

/* =============================================
     WHATSAPP FLOAT
  ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.45),
    0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.12);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  pointer-events: none;
}
.wa-pulse {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

/* =============================================
     ANIMATIONS
  ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up.d1 {
  animation-delay: 0.1s;
}
.fade-up.d2 {
  animation-delay: 0.25s;
}
.fade-up.d3 {
  animation-delay: 0.4s;
}
.fade-up.d4 {
  animation-delay: 0.55s;
}

/* =============================================
     HAMBURGER / MOBILE NAV
  ============================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 40px;
  gap: 0;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a,
.mobile-nav button.mnav-link {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
  width: 100%;
  text-align: center;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-nav a:last-of-type,
.mobile-nav button.mnav-link:last-of-type {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav button.mnav-link:hover {
  color: var(--gold);
}
.mobile-nav-cta {
  margin-top: 24px;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 14px 40px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  width: auto !important;
  text-align: center;
}

/* =============================================
     RESPONSIVE
  ============================================= */
@media (max-width: 900px) {
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .about-split,
  .why-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-photo-side,
  .why-img {
    min-height: 300px;
  }
  .about-text-side,
  .why-content {
    padding: 48px 32px;
  }
  .markets-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  /* Inline-grid overrides */
  .mob-grid-3 {
    grid-template-columns: 1fr !important;
  }
  .mob-grid-2 {
    grid-template-columns: 1fr !important;
  }
  .mob-cloud-banner {
    grid-template-columns: 1fr !important;
    padding: 32px 28px !important;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-h1 {
    font-size: clamp(32px, 8vw, 56px);
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-badges {
    flex-direction: column;
    gap: 16px;
  }
  .sec-head h2 {
    font-size: clamp(24px, 5vw, 36px);
  }
  .why-content,
  .about-text-side {
    padding: 32px 24px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
  /* Page headers */
  .page-header-inner {
    padding: 60px 0 40px !important;
  }
  .mob-grid-3 {
    gap: 16px !important;
  }
  .mob-grid-2 {
    gap: 16px !important;
  }
  .nav-logo img {
    height: 28px;
  }
}
@media (max-width: 480px) {
  .hero-eyebrow {
    font-size: 10px;
  }
  .hero-h1 {
    font-size: clamp(28px, 9vw, 44px);
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .btn-primary,
  .btn-outline {
    padding: 12px 28px;
    font-size: 13px;
    width: 100%;
    text-align: center;
    display: block;
  }
  .hero-btns {
    width: 100%;
  }
  .stats-bar {
    padding: 24px 0;
  }
  .stat-num {
    font-size: 32px;
  }
  .stat-label {
    font-size: 11px;
  }
  section {
    padding: 60px 0;
  }
  .svc-card {
    padding: 32px 24px;
  }
  .svc-title {
    font-size: 16px;
  }
  .svc-desc {
    font-size: 13px;
  }
  .why-item {
    flex-direction: column;
    text-align: center;
  }
  .why-icon {
    margin-bottom: 12px;
  }
  .testi-card {
    padding: 28px 20px;
  }
  .contact-info h2 {
    font-size: 26px;
  }
  .price-card {
    padding: 32px 24px;
  }
  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
  .wa-pulse {
    width: 50px;
    height: 50px;
  }
}
