/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 5% 90px;
  background: var(--dark);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  animation: scanlines-scroll 8s linear infinite;
}
@keyframes scanlines-scroll {
  from { background-position: 0 0; }
  to   { background-position: 0 100px; }
}
#hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 90% 85% at 50% 50%,
    transparent 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(163, 215, 138, 0.1);
  border: 1px solid rgba(163, 215, 138, 0.5);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
  animation: badge-slide 0.8s 1.8s ease both;
}
@keyframes badge-slide {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--cream);
  animation: hero-text-up 0.6s 0.1s ease both;
}
.hero-headline em {
  color: var(--orange);
  font-style: normal;
}
@keyframes hero-text-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(250, 243, 225, 0.65);
  line-height: 1.7;
  min-height: 2.4em;
  animation: hero-text-up 0.6s 0.2s ease both;
}
#typewriter-cursor {
  color: var(--orange);
  animation: blink 0.7s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: hero-text-up 0.5s 0.3s ease both;
}
.hero-metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: hero-text-up 0.5s 0.4s ease both;
}
.metric-chip {
  background: rgba(250, 243, 225, 0.07);
  border: 1px solid rgba(250, 243, 225, 0.18);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.metric-chip .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--green);
}
.metric-chip .lbl {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(250, 243, 225, 0.6);
}
.chip1 {
  animation: bob1 3.2s ease-in-out infinite;
}
.chip2 {
  animation: bob2 4.1s ease-in-out infinite;
}
.chip3 {
  animation: bob3 3.7s ease-in-out infinite;
}
@keyframes bob1 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}
@keyframes bob2 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-6px);
  }
}
@keyframes bob3 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-char-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-char-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 70% 60% at 50% 80%,
    rgba(255, 85, 85, 0.28) 0%,
    rgba(255, 85, 85, 0.08) 55%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-char-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 55%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 55%,
    transparent 100%
  );
  animation: char-float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(255, 85, 85, 0.25));
}
@keyframes char-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ── PREVIEW STRIPS ── */
#home-about {
  background: var(--cream);
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview-img {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 5rem;
}
.about-preview-img .glow-ring {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 85, 85, 0.2),
    transparent 70%
  );
}
.about-preview-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.about-preview-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
}
.about-preview-content p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
}
.trust-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.trust-pill {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  background: var(--sand);
  border: 1px solid rgba(255, 85, 85, 0.15);
  font-family: var(--font-head);
  font-weight: 600;
}

/* ── SERVICES PREVIEW ── */
#home-services {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 35%, #ffe4cc 70%, var(--cream) 100%);
  background-size: 220% 220%;
  animation: services-bg-flow 28s ease-in-out infinite;
}
@keyframes services-bg-flow {
  0%, 100% { background-position: 0% 30%; }
  50% { background-position: 100% 70%; }
}
#home-services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(163,215,138,0.3) 0%, transparent 45%),
    radial-gradient(circle at 85% 78%, rgba(255,85,85,0.16) 0%, transparent 45%),
    radial-gradient(circle at 55% 50%, rgba(255,255,255,0.5) 0%, transparent 50%);
}
#home-services .container {
  position: relative;
  z-index: 1;
}
#home-services .section-title {
  color: var(--dark);
}
#home-services .section-sub {
  color: rgba(10, 10, 10, 0.55);
}
#home-services .section-sub strong {
  color: #2f8f4e !important;
}
#home-services .section-tag {
  color: var(--orange);
}
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-preview-card {
  background: rgba(250, 243, 225, 0.05);
  border: 1px solid rgba(250, 243, 225, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: all var(--transition);
  cursor: pointer;
}
.service-preview-card:hover {
  background: rgba(255, 85, 85, 0.08);
  border-color: rgba(255, 85, 85, 0.4);
  transform: translateY(-6px);
}
.service-preview-card .spc-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-preview-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.service-preview-card p {
  font-size: 0.85rem;
  color: rgba(250, 243, 225, 0.5);
  line-height: 1.6;
}

/* ── SOCIAL PREVIEW ── */
#home-social {
  background: var(--dark) !important;
}
#home-social .section-title {
  color: var(--cream) !important;
}
#home-social .section-sub {
  color: rgba(250, 243, 225, 0.55) !important;
}
#home-social .section-tag {
  color: var(--green) !important;
}
.social-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.social-preview-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.social-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.spc-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.spc-thumb .play-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 85, 85, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  bottom: 12px;
  right: 12px;
}
.spc-body {
  padding: 1.2rem;
}
.spc-body h5 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.spc-body span {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.45);
}

/* ── REVIEWS PREVIEW ── */
#home-reviews {
  background: var(--cream);
}
.reviews-marquee-wrap {
  overflow: hidden;
  margin-bottom: 2rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.reviews-marquee-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: reviews-marquee-scroll 50s linear infinite;
}
.reviews-marquee-wrap:hover .reviews-marquee-track {
  animation-play-state: paused;
}
@keyframes reviews-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Google-style rating summary card */
.g-rating-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2.2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  min-width: 230px;
}
.g-rating-card .g-rating-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: #1a1a2e;
  letter-spacing: 0.5px;
}
.g-rating-card .g-rating-stars {
  color: #fbbc04;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin: 6px 0;
}
.g-rating-card .g-rating-based {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
}
.g-rating-card .g-rating-based strong {
  color: rgba(0, 0, 0, 0.8);
}
.g-logo {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.2px;
}
.g-logo span:nth-child(1) { color: #4285f4; }
.g-logo span:nth-child(2) { color: #ea4335; }
.g-logo span:nth-child(3) { color: #fbbc05; }
.g-logo span:nth-child(4) { color: #4285f4; }
.g-logo span:nth-child(5) { color: #34a853; }
.g-logo span:nth-child(6) { color: #ea4335; }

/* Google-style review card */
.g-review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all var(--transition);
  flex: 0 0 340px;
}
.g-review-card:hover {
  border-color: rgba(66, 133, 244, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.g-review-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.9rem;
}
.g-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  flex-shrink: 0;
}
.g-reviewer-info { min-width: 0; }
.g-reviewer-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g-reviewer-name svg { flex-shrink: 0; }
.g-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.g-stars {
  color: #fbbc04;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.g-date {
  font-size: 0.76rem;
  color: rgba(0, 0, 0, 0.45);
}
.g-review-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.g-read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.g-review-card.expanded .g-review-text {
  -webkit-line-clamp: unset;
  display: block;
}
.home-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ── AREAS PREVIEW ── */
#home-areas {
  background: var(--cream);
}
.areas-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.area-pill {
  padding: 12px 16px;
  border-radius: 50px;
  text-align: center;
  border: 1px solid var(--sand);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--sand);
  transition: all var(--transition);
  cursor: pointer;
}
.area-pill:hover {
  background: var(--orange);
  color: var(--cream);
  border-color: var(--orange);
}

/* ── CTA SECTION (home) ── */
#home-contact-cta {
  background: var(--dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left {
    align-items: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-metrics {
    justify-content: center;
  }
  .hero-right {
    display: flex;
    order: -1;
  }
  .hero-char-wrap {
    max-width: 260px;
  }
  .hero-char-img {
    max-height: 320px;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 95%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 95%);
  }
  .about-preview-grid {
    grid-template-columns: 1fr;
  }
  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .g-review-card {
    flex-basis: 320px;
  }
  .areas-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .services-preview-grid {
    grid-template-columns: 1fr;
  }
  .social-preview-grid {
    grid-template-columns: 1fr;
  }
  .areas-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  #hero {
    padding: 80px 5% 60px;
  }
  .hero-char-wrap {
    max-width: 200px;
  }
  .hero-char-img {
    max-height: 250px;
  }
}

/* ── MOBILE: About Logo Image ── */
@media (max-width: 900px) {
  .about-preview-img {
    aspect-ratio: unset;
    min-height: 200px;
    max-height: 260px;
    padding: 1.5rem;
  }
  .about-preview-img img {
    max-height: 180px;
    width: auto !important;
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .about-preview-img {
    min-height: 160px;
    max-height: 200px;
  }
  .about-preview-img img {
    max-height: 140px;
  }
}

/* ═══════════════════════════════════════════════
   VX-GC — BRIGHT GRADIENT SERVICE CARDS
   ═══════════════════════════════════════════════ */
.services-attractive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
  margin-bottom: 3rem;
}
.vx-gc {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1), box-shadow 0.45s ease;
}
.vx-gc:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.16), 0 0 0 2px rgba(var(--vx-clr-rgb,255,85,85),0.35);
}

.vx-gc-head {
  position: relative;
  min-height: 130px;
  flex-shrink: 0;
  background: #000;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem 1.4rem;
  overflow: hidden;
}

.vx-gc-tag {
  position: absolute; top: 14px; left: 18px; z-index: 1;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

.vx-gc-head h4 {
  position: relative; z-index: 1;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.28rem; font-weight: 800;
  color: #fff; line-height: 1.28;
  letter-spacing: -0.5px;
}

.vx-gc-body {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 1.5rem 1.6rem 1.7rem;
}
.vx-gc-top {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.vx-chip {
  font-size: 0.62rem; font-family: var(--font-head, sans-serif);
  font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
  background: var(--vx-grad, linear-gradient(135deg, var(--orange), #ffb37a));
  color: #fff;
}
.vx-price {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-head, sans-serif);
  font-size: 0.64rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #2f8f4e;
  padding: 5px 12px; border-radius: 50px;
  background: rgba(47,143,78,0.12);
  border: 1px solid rgba(47,143,78,0.22);
}
.vx-gc-body p {
  font-size: 0.85rem; line-height: 1.65;
  color: #6f6f78;
  flex: 1;
  margin-bottom: 1.4rem;
}

.vx-gc-btns {
  display: flex; gap: 0.6rem;
}
.vx-btn-call, .vx-btn-enq {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  padding: 11px 14px; border-radius: 50px;
  font-size: 0.74rem; font-family: var(--font-head, sans-serif);
  font-weight: 700; letter-spacing: 0.03em;
  text-decoration: none; cursor: pointer;
  transition: all 0.28s cubic-bezier(0.23,1,0.32,1);
  white-space: nowrap;
}
.vx-btn-call { background: var(--orange); border: 1.5px solid var(--orange); color: #fff; }
.vx-btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,85,85,0.4); background: #ff6f6f; }
.vx-btn-enq { background: transparent; border: 1.5px solid var(--vx-clr-dk, var(--orange)); color: var(--vx-clr-dk, var(--orange)); }
.vx-btn-enq:hover { background: var(--vx-clr-dk, var(--orange)); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--vx-clr-rgb,255,85,85),0.35); }

/* Per-card colour themes */
.vx-c1 { --vx-clr-rgb:255,85,85;   --vx-clr-dk:#e0451f; --vx-grad: linear-gradient(135deg,#ff5555,#ffb37a); }
.vx-c2 { --vx-clr-rgb:34,197,142;  --vx-clr-dk:#1f9d5c; --vx-grad: linear-gradient(135deg,#22c58e,#a3d78a); }
.vx-c3 { --vx-clr-rgb:139,107,255; --vx-clr-dk:#6c3ce0; --vx-grad: linear-gradient(135deg,#8b6bff,#c9b8ff); }
.vx-c4 { --vx-clr-rgb:54,169,255;  --vx-clr-dk:#0f8fd6; --vx-grad: linear-gradient(135deg,#36a9ff,#9fe3ff); }
.vx-c5 { --vx-clr-rgb:255,93,162;  --vx-clr-dk:#e0408f; --vx-grad: linear-gradient(135deg,#ff5da2,#ffb3d1); }
.vx-c6 { --vx-clr-rgb:255,178,56;  --vx-clr-dk:#d98300; --vx-grad: linear-gradient(135deg,#ffb238,#ffe08a); }

@media (max-width: 1000px) {
  .services-attractive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-attractive-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .vx-gc-head { min-height: 110px; padding: 1rem 1.2rem; }
  .vx-gc-head h4 { font-size: 1.05rem; }
  .vx-gc-body { padding: 1.3rem 1.3rem 1.5rem; }
}

/* ── FAQ ACCORDION ── */
#home-faq {
  background: var(--cream) !important;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(255,85,85,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}
.faq-item.open {
  border-color: var(--orange);
  background: rgba(255,85,85,0.05);
  box-shadow: 0 8px 32px rgba(255,85,85,0.1);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 1.6rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  user-select: none;
  line-height: 1.45;
  transition: color 0.3s ease;
}
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
  display: inline-block;
}
.faq-item.open .faq-q {
  color: var(--orange);
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.23,1,0.32,1);
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a-inner {
  padding: 0 1.6rem 1.4rem;
  border-top: 1px solid var(--sand);
  padding-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.8;
}
.faq-a-inner strong {
  color: var(--dark);
  font-weight: 700;
}
@media (max-width: 600px) {
  .faq-q { font-size: 0.92rem; padding: 1rem 1.2rem; }
  .faq-a-inner { padding: 0 1.2rem 1.2rem; padding-top: 0.9rem; font-size: 0.9rem; }
}

/* ═══════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE — COMPREHENSIVE
═══════════════════════════════════════════ */

/* ── Base mobile reset ── */
@media (max-width: 900px) {
  #hero {
    padding: 100px 5% 60px;
    min-height: auto;
  }
  .hero-inner {
    gap: 1.5rem;
  }
  .hero-headline {
    font-size: clamp(2rem, 7vw, 3.2rem) !important;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 7px 14px;
  }
}

/* ── 768px — small tablet / large phone ── */
@media (max-width: 768px) {
  #hero {
    padding: 90px 5% 50px;
  }
  .hero-char-wrap {
    max-width: 220px;
  }
  .hero-char-img {
    max-height: 280px;
  }
  .hero-btns {
    gap: 0.75rem;
  }
  .btn-primary, .btn-secondary {
    padding: 13px 24px !important;
    font-size: 0.88rem !important;
  }
  .hero-metrics {
    gap: 0.65rem;
  }
  .metric-chip {
    padding: 10px 16px;
  }
  .metric-chip .num {
    font-size: 1.5rem;
  }
  .metric-chip .lbl {
    font-size: 0.65rem;
  }
  /* Section spacing */
  section {
    padding: 4rem 0;
  }
  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.6rem) !important;
  }
  .section-sub {
    font-size: 0.92rem;
  }
  /* Stats */
  .stat-item .s-num {
    font-size: 2rem;
  }
  /* About */
  .about-preview-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .about-preview-content p {
    font-size: 0.92rem;
  }
  /* Reviews */
  .g-review-card {
    flex-basis: 280px !important;
  }
  /* HCF proof items */
  .hcf-proof {
    gap: 0.8rem;
  }
  .hcf-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
  }
  /* CTA Band */
  .cta-band h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
  .cta-band p {
    font-size: 0.9rem;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  /* Floating buttons */
  .wa-float {
    width: 50px !important;
    height: 50px !important;
    bottom: 20px !important;
    right: 16px !important;
  }
  .wa-float svg {
    width: 24px !important;
    height: 24px !important;
  }
  /* Social stats */
  .social-stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }
  /* Blog cards */
  .blog-card-body {
    padding: 1.2rem 1rem;
  }
  .blog-card-body h3 {
    font-size: 1rem;
  }
}

/* ── 600px — standard phone landscape ── */
@media (max-width: 600px) {
  #hero {
    padding: 85px 5% 45px;
  }
  .hero-char-wrap {
    max-width: 200px;
  }
  .hero-char-img {
    max-height: 250px;
  }
  .hero-headline {
    font-size: clamp(1.9rem, 8vw, 2.8rem) !important;
    letter-spacing: -0.5px;
  }
  /* FAQ */
  .faq-list {
    gap: 0.6rem;
  }
  /* Footer sitelinks */
  .footer-sitelinks h4 {
    font-size: 0.85rem;
  }
  .footer-sitelinks a {
    font-size: 0.8rem;
  }
  /* Social reels */
  .reel-info-v2 h4 {
    font-size: 0.82rem;
  }
  .reel-stats {
    font-size: 0.72rem;
  }
}

/* ── 480px — standard phone portrait ── */
@media (max-width: 480px) {
  #hero {
    padding: 78px 4% 40px;
  }
  .hero-inner {
    gap: 1rem;
  }
  .hero-char-wrap {
    max-width: 175px;
  }
  .hero-char-img {
    max-height: 220px;
  }
  .hero-headline {
    font-size: clamp(1.75rem, 8.5vw, 2.4rem) !important;
  }
  .hero-sub {
    font-size: 0.88rem;
    min-height: auto;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }
  .hero-metrics {
    justify-content: center;
    gap: 0.5rem;
  }
  .metric-chip {
    padding: 9px 13px;
    border-radius: 10px !important;
  }
  .metric-chip .num {
    font-size: 1.35rem;
  }
  .metric-chip .lbl {
    font-size: 0.6rem;
  }
  /* VX cards compact sizing */
  .vx-gc-head h4 {
    font-size: 1rem;
  }
  .vx-gc-body {
    padding: 1.1rem 1.1rem 1.3rem;
  }
  .vx-gc-body p {
    font-size: 0.8rem;
  }
  /* Stats */
  .stat-item .s-num {
    font-size: 1.8rem;
  }
  .stat-item .s-lbl {
    font-size: 0.72rem;
  }
  /* Section */
  section {
    padding: 3.5rem 0;
  }
  .section-header {
    margin-bottom: 2rem !important;
  }
  /* About pills */
  .trust-pills {
    justify-content: center;
  }
  /* Areas */
  .area-pill {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
  /* Reviews */
  .g-review-card {
    padding: 1.2rem !important;
    flex-basis: 250px !important;
  }
  .g-review-text {
    font-size: 0.88rem;
  }
  /* Contact form */
  .hcf-form-box {
    padding: 1.4rem 1rem !important;
  }
  .hcf-proof-item {
    font-size: 0.85rem;
  }
  /* FAQ */
  .faq-q {
    font-size: 0.88rem;
    padding: 0.9rem 1rem;
    gap: 0.8rem;
  }
  /* Blog */
  .blog-card-img {
    height: 160px;
  }
  /* Footer */
  .footer-brand p {
    font-size: 0.82rem;
  }
}

/* ── 390px — iPhone 14 / common Android ── */
@media (max-width: 390px) {
  .hero-char-wrap {
    max-width: 155px;
  }
  .hero-char-img {
    max-height: 195px;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 5px 11px;
  }
  .hero-headline {
    font-size: clamp(1.6rem, 9vw, 2.1rem) !important;
  }
  .metric-chip {
    padding: 8px 11px;
  }
  .metric-chip .num {
    font-size: 1.25rem;
  }
  .vx-gc-btns {
    flex-direction: column;
    gap: 0.45rem;
  }
  .section-title {
    font-size: clamp(1.55rem, 7.5vw, 2rem) !important;
  }
  .areas-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Landscape phone ── */
@media (max-width: 768px) and (orientation: landscape) {
  #hero {
    padding: 70px 5% 30px;
    min-height: auto;
  }
  .hero-char-wrap {
    max-width: 160px;
  }
  .hero-char-img {
    max-height: 200px;
  }
  .hero-inner {
    gap: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════
   NAVBAR — Floating Pill, Dark Glassmorphism
═══════════════════════════════════════════════════════ */
#navbar {
  top: 18px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 32px) !important;
  max-width: 1160px !important;
  height: 62px !important;
  padding: 0 8px 0 28px !important;
  background: rgba(6,6,6,0.68) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1) !important;
}
#navbar.scrolled {
  background: rgba(6,6,6,0.94) !important;
  border-color: rgba(255,85,85,0.2) !important;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,85,85,0.06) !important;
}
.nav-logo {
  color: var(--cream) !important;
  font-size: 1rem !important;
  letter-spacing: 2px !important;
}
.nav-logo span { color: var(--orange) !important; }
.nav-links a {
  color: rgba(250,243,225,0.62) !important;
  font-size: 0.81rem !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
}
.nav-links a:hover { color: var(--cream) !important; }
.nav-links a::after { background: var(--orange) !important; }
.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 24px rgba(255,85,85,0.4) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 36px rgba(255,85,85,0.55) !important;
}
.hamburger span { background: var(--cream) !important; }

/* ═══════════════════════════════════════════════════════
   MOBILE MENU — Full-screen overlay slide-down
═══════════════════════════════════════════════════════ */
.mobile-menu {
  display: flex !important;
  top: 0 !important;
  height: 100svh !important;
  padding: 90px 0 50px !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: rgba(4,4,4,0.97) !important;
  backdrop-filter: blur(40px) !important;
  -webkit-backdrop-filter: blur(40px) !important;
  transform: translateY(-100%) !important;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1) !important;
}
.mobile-menu.open { transform: translateY(0) !important; }
.mobile-menu a {
  color: rgba(250,243,225,0.7) !important;
  border-bottom: 1px solid rgba(250,243,225,0.05) !important;
  border-top: none !important;
  font-size: 1.25rem !important;
  padding: 1rem 2.5rem !important;
  width: 100% !important;
  text-align: center !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  opacity: 0 !important;
  transform: translateY(22px) !important;
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s, background 0.2s !important;
}
.mobile-menu.open a { opacity: 1 !important; transform: translateY(0) !important; }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s !important; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.10s !important; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s !important; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.20s !important; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s !important; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.30s !important; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.35s !important; }
.mobile-menu a:hover {
  color: var(--orange) !important;
  background: rgba(255,85,85,0.07) !important;
}
/* Close (X) state for hamburger on dark overlay */
.hamburger.open span { background: var(--cream) !important; }

/* ═══════════════════════════════════════════════════════
   HERO — Gradient orbs + Beacons-inspired enhancement
═══════════════════════════════════════════════════════ */
#hero {
  background: linear-gradient(135deg, #020203 0%, #0a0a10 35%, #0d0c14 65%, #030305 100%) !important;
  background-size: 220% 220% !important;
  animation: hero-bg-flow 24s ease-in-out infinite !important;
}
@keyframes hero-bg-flow {
  0%, 100% { background-position: 0% 30%; }
  50% { background-position: 100% 70%; }
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 50%, rgba(255,85,85,0.45) 0%, transparent 45%),
    radial-gradient(circle at 10% 15%, rgba(90,110,255,0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 95%, rgba(163,215,138,0.08) 0%, transparent 35%);
  animation: hero-glow-pulse 9s ease-in-out infinite alternate;
}
@keyframes hero-glow-pulse {
  from { opacity: 0.65; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.06); }
}

/* Gradient orb blobs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  top: -220px; left: -180px;
  background: radial-gradient(circle, rgba(90,110,180,0.14) 0%, transparent 65%);
  filter: blur(60px);
  animation: orb-1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: 5%; right: -80px;
  background: radial-gradient(circle, rgba(255,85,85,0.32) 0%, transparent 65%);
  filter: blur(50px);
  animation: orb-2 15s ease-in-out infinite;
}
.hero-orb-3 {
  width: 450px; height: 450px;
  bottom: -80px; left: 32%;
  background: radial-gradient(circle, rgba(255,85,85,0.14) 0%, transparent 65%);
  filter: blur(70px);
  animation: orb-3 10s ease-in-out infinite;
}
.hero-orb-4 {
  width: 380px; height: 380px;
  top: 16%; right: 20%;
  background: radial-gradient(circle, rgba(163,215,138,0.12) 0%, transparent 65%);
  filter: blur(55px);
  animation: orb-4 13s ease-in-out infinite;
}
@keyframes orb-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px,40px) scale(1.06); }
  66% { transform: translate(-30px,70px) scale(0.94); }
}
@keyframes orb-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-60px,50px) scale(1.1); }
}
@keyframes orb-3 {
  0%,100% { transform: translate(0,0) scale(1); }
  45% { transform: translate(40px,-40px) scale(1.08); }
  80% { transform: translate(-25px,25px) scale(0.92); }
}
@keyframes orb-4 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px,30px) scale(1.08); }
}

/* Subtle grid texture overlay */
#hero::after {
  background: repeating-linear-gradient(
    0deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  ) !important;
  animation: none !important;
}

/* Layout */
.hero-inner {
  grid-template-columns: 55fr 45fr !important;
  gap: 2rem !important;
  align-items: center !important;
}

/* Headline — solid white, with outline/hollow text on "AI-Powered" */
.hero-headline {
  font-size: clamp(2.8rem, 5.8vw, 6rem) !important;
  line-height: 1.0 !important;
  letter-spacing: -2px !important;
  color: #ffffff !important;
}
.hero-headline em {
  font-style: italic !important;
  color: #ffffff !important;
}
@supports (-webkit-text-stroke: 1px #fff) {
  .hero-headline em {
    color: transparent !important;
    -webkit-text-stroke: 2px #ffffff;
  }
}

/* Badge — pill style */
.hero-badge {
  background: rgba(255,85,85,0.08) !important;
  border: 1px solid rgba(255,85,85,0.3) !important;
  color: rgba(255,130,110,1) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 1px !important;
  padding: 7px 18px !important;
}

/* Subtitle */
.hero-sub {
  font-size: 1.05rem !important;
  color: rgba(250,243,225,0.55) !important;
  line-height: 1.78 !important;
  max-width: 460px !important;
}

/* Buttons */
.hero-btns .btn-primary {
  box-shadow: 0 8px 40px rgba(255,85,85,0.45) !important;
}
.hero-btns .btn-primary:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 14px 50px rgba(255,85,85,0.6) !important;
}
.hero-btns .btn-secondary {
  border-color: rgba(250,243,225,0.14) !important;
  background: rgba(250,243,225,0.04) !important;
  color: rgba(250,243,225,0.7) !important;
}
.hero-btns .btn-secondary:hover {
  border-color: rgba(250,243,225,0.28) !important;
  background: rgba(250,243,225,0.09) !important;
  color: var(--cream) !important;
  transform: translateY(-3px) !important;
}

/* Metric chips */
.metric-chip {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: 14px !important;
  padding: 12px 18px !important;
}
.metric-chip .num {
  color: var(--orange) !important;
  font-size: 1.6rem !important;
}
.metric-chip .lbl {
  font-size: 0.7rem !important;
  color: rgba(250,243,225,0.45) !important;
}

/* Character image — enhanced glow */
.hero-char-img {
  max-height: 560px !important;
  filter: drop-shadow(0 28px 60px rgba(255,85,85,0.38)) !important;
}
.hero-char-glow {
  background: radial-gradient(
    ellipse 85% 75% at 50% 88%,
    rgba(255,85,85,0.42) 0%,
    rgba(255,85,85,0.12) 55%,
    transparent 100%
  ) !important;
}

/* Orbiting marketing-platform icons behind character — reinforces "AI-powered digital marketing" feel */
.hero-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  z-index: 0;
  pointer-events: none;
}
.orbit-track {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
  animation: orbit-spin linear infinite;
}
.orbit-track.ring-a {
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  animation-duration: 32s;
}
.orbit-track.ring-b {
  width: 540px; height: 540px;
  margin: -270px 0 0 -270px;
  animation-duration: 44s;
  animation-direction: reverse;
  border-color: rgba(163,215,138,0.1);
}
.orbit-icon {
  position: absolute;
  top: -20px; left: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  animation: orbit-spin-reverse linear infinite;
}
.orbit-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.ring-a .orbit-icon { animation-duration: 32s; }
.ring-b .orbit-icon { animation-duration: 44s; animation-direction: reverse; }
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbit-spin-reverse {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(-360deg); }
}

/* Floating live-stat badges — instant "digital marketing dashboard" feel */
.hero-float-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  pointer-events: none;
  opacity: 0;
  animation: fb-fade-in 0.8s ease forwards, fb-float 6s ease-in-out infinite;
}
.hero-float-badge .fb-icon { font-size: 1.05rem; line-height: 1; }
@keyframes fb-fade-in { to { opacity: 1; } }
@keyframes fb-float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(6px,-14px); }
}
.fb-1 { top: 4%;    left: -4%;  animation-delay: 1.6s, 2.4s; }
.fb-2 { top: 10%;   right: -6%; animation-delay: 2s, 3.1s; }
.fb-3 { bottom: 22%; left: -8%; animation-delay: 2.4s, 3.8s; }
.fb-4 { bottom: 8%;  right: -2%; animation-delay: 2.8s, 4.4s; }
.fb-live {
  background: rgba(163,215,138,0.1) !important;
  border-color: rgba(163,215,138,0.35) !important;
}
.fb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: fb-dot-pulse 1.8s ease-out infinite;
}
@keyframes fb-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(163,215,138,0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(163,215,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(163,215,138,0); }
}
@media (max-width: 1100px) {
  .hero-float-badge, .hero-orbit { display: none !important; }
}

/* Ticker bar */
.ticker-wrap {
  background: rgba(255,85,85,0.05) !important;
  border-top: 1px solid rgba(255,85,85,0.1) !important;
  border-bottom: 1px solid rgba(255,85,85,0.1) !important;
}
.ticker-item {
  color: rgba(250,243,225,0.42) !important;
  font-size: 0.76rem !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

/* Hide old orbit rings */
.orbit-ring { display: none !important; }

/* Scroll CTA */
.scroll-cta span { color: rgba(250,243,225,0.3) !important; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  #navbar {
    width: calc(100% - 24px) !important;
    height: 56px !important;
    padding: 0 6px 0 20px !important;
    top: 12px !important;
  }
}
@media (max-width: 767px) {
  #navbar {
    width: calc(100% - 20px) !important;
    padding: 0 6px 0 16px !important;
    height: 52px !important;
    top: 10px !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    text-align: left !important;
  }
  .hero-right { display: none !important; }
  .hero-headline {
    font-size: clamp(2rem, 8.5vw, 2.8rem) !important;
    letter-spacing: -1px !important;
  }
  .hero-sub { max-width: 100% !important; }
  .hero-btns {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    justify-content: center !important;
    padding: 15px 24px !important;
    width: 100% !important;
  }
  .hero-metrics { gap: 0.5rem !important; }
  .metric-chip { padding: 10px 14px !important; }
  .metric-chip .num { font-size: 1.3rem !important; }
}
