/* ===== AF Tech Fix — Main Stylesheet ===== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand: #ff6a1a;
  --brand-deep: #e05510;
  --brand-fg: #ffffff;
  --foreground: #111111;
  --background: #ffffff;
  --surface: #f5f5f4;
  --card: #ffffff;
  --border: #e5e5e5;
  --muted: #737373;
  --destructive: #dc2626;
  --radius: 0px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}
html { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
section, article, div { max-width: 100%; }

main { flex: 1; }

/* Typography */
.font-display { font-family: 'Space Grotesk', sans-serif; }

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* Container */
.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  min-width: 0;
}
@media (min-width: 640px) { .container-narrow { padding: 0 1.5rem; } }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--foreground);
  color: #fff;
  font-size: 0.75rem;
  display: none;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}
.topbar a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.topbar a:hover { color: var(--brand); opacity: 1; }
.topbar-links { display: flex; align-items: center; gap: 1.25rem; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(17,17,17,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--foreground);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.logo span { color: var(--brand); }
.logo-dot { width: 8px; height: 8px; background: var(--brand); display: inline-block; }

nav.main-nav { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { nav.main-nav { display: flex; } }
nav.main-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(17,17,17,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--brand); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
#headerBookBtn { display: none; }
@media (min-width: 400px) { #headerBookBtn { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 0;
  color: var(--foreground);
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--surface); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile nav */
/* Mobile nav — slide-in sidebar from right */
.mobile-nav {
  display: block;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  overflow-y: auto;
  padding: 0;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.open { display: block; }
@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
  .mobile-nav-overlay { display: none !important; }
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--foreground);
}
.mobile-nav-logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.03em;
}
.mobile-nav-logo span { color: var(--brand); }
.mobile-nav-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s;
}
.mobile-nav-close:hover { background: var(--brand); }
.mobile-nav-links {
  padding: 1rem 0;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(17,17,17,0.75);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.mobile-nav a:hover { color: var(--brand); background: rgba(255,106,26,0.04); border-left-color: var(--brand); }
.mobile-nav a.active { color: var(--brand); border-left-color: var(--brand); background: rgba(255,106,26,0.06); }
.mobile-nav-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-brand {
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover { background: var(--brand-deep); }
.btn-outline {
  background: transparent;
  border-color: var(--foreground);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--foreground); color: #fff; }
.hero-section .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.hero-section .btn-outline:hover { background: rgba(255,255,255,0.25); border-color: #fff; }
.btn-outline-white {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }
.btn-dark { background: var(--foreground); color: #fff; }
.btn-dark:hover { background: #333; }
.btn-lg { padding: 0.8rem 1.75rem; font-size: 0.9rem; }
.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.75rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6a1a 0%, #ff8033 40%, #e05510 100%);
  border-bottom: none;
  padding: 3rem 0 4rem;
  text-align: center;
}
@media (min-width: 768px) { .page-hero { padding: 5rem 0 7rem; } }
.page-hero-noise {
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, oklch(0.7 0.2 45), transparent 55%),
    radial-gradient(circle at 80% 70%, oklch(0.14 0 0), transparent 55%);
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.25);
  color: #fff;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.page-hero .eyebrow-dot {
  width: 6px; height: 6px; background: var(--brand); display: inline-block;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 6vw, 3.5rem);
  max-width: 52rem;
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
  overflow-wrap: break-word;
  word-break: break-word;
}
.page-hero .subtitle {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .current { color: #fff; font-weight: 600; }
.breadcrumb-sep { color: rgba(255,255,255,0.5); }

/* ===== HERO (Home) ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #1a1a2e 0%, #16213e 25%, #0f3460 55%, #533483 100%);
  border-bottom: none;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 5rem;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    padding: 5rem 0 6rem;
  }
}
@media (max-width: 1023px) {
  .hero-grid > div:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,106,26,0.25);
  color: #ff9f6b;
  padding: 0.375rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,106,26,0.5);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  align-self: flex-start;
}
@media (max-width: 1023px) {
  .badge-pill { align-self: center; }
}
.pulse-dot {
  width: 8px; height: 8px; background: #ff9f6b;
  display: inline-block;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
  font-size: clamp(1.75rem, 4.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  letter-spacing: -0.03em;
  word-break: break-word;
  max-width: 100%;
}
.hero-title br { display: block; }
.hero-title .text-brand {
  color: #ffb38a;
  font-style: italic;
  display: block;
}
@media (max-width: 640px) {
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.6rem); text-align: center; }
}
.hero-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 100%;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .hero-desc { font-size: 1.05rem; }
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero-cta-group { justify-content: flex-start; }
}
@media (max-width: 400px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn,
  .hero-cta-group a { width: 100%; justify-content: center; }
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 340px;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-stats { margin: 0; text-align: left; max-width: 320px; }
}
.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  margin-top: 0.2rem;
  line-height: 1.3;
}
.hero-image-wrap {
  position: relative;
  padding: 1rem 0.5rem;
  min-width: 0;
}
.hero-image-wrap::before { display: none; }
.hero-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid rgba(255,255,255,0.55);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
  border-radius: 2px;
  max-width: 100%;
}
.hero-badge {
  position: absolute;
  top: -0.5rem; left: 0.5rem;
  background: #fff;
  border: none;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  border-radius: 6px;
  z-index: 2;
}
.hero-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
}
.hero-badge-label { font-size: 0.6rem; color: #888; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.hero-cert {
  position: absolute;
  bottom: -0.5rem; right: 0.5rem;
  background: rgba(17,17,17,0.88);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 0.75rem 1rem;
  max-width: 13rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
}
.hero-cert-icon { color: var(--brand); width: 2rem; height: 2rem; flex-shrink: 0; }
.hero-cert-label { font-size: 0.6rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-cert-text { font-size: 0.82rem; font-weight: 700; color: #fff; margin-top: 1px; }

/* ===== SECTIONS ===== */
.section { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }
.section-surface { background: var(--surface); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--foreground);
}
.section-subtitle {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.card-shadow { box-shadow: 2px 4px 16px rgba(0,0,0,0.06); }

/* Service Cards */
.services-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.service-card:hover .service-card-title { color: var(--brand); }
.service-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  gap: 0.5rem;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
  text-decoration: none;
  transition: gap 0.2s;
}
.learn-more:hover { gap: 0.5rem; }

/* Why Us cards */
.why-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: 2rem;
}
.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--foreground);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}
.why-card:hover .why-icon { background: var(--brand); }
.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Stats box */
.stats-box {
  background: var(--foreground);
  color: #fff;
  padding: 2rem;
  position: relative;
  box-shadow: 8px 8px 0 var(--brand);
}
.stats-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: var(--brand);
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}
.stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Checklist */
.checklist { list-style: none; space-y: 0.75rem; }
.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Two column layout */
.two-col {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

/* Areas grid */
.areas-outer {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) { .areas-outer { grid-template-columns: 1fr 2fr; } }
.area-img { overflow: hidden; border: 1px solid var(--border); }
.area-img img { width: 100%; height: 100%; object-fit: cover; }
.areas-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
.area-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.25s;
}
.area-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.area-emoji { font-size: 1.5rem; }
.area-city { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-top: 0.5rem; }
.area-desc { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.6; }

/* ===== BRAND LOGOS ===== */
.brand-logos-section {
  padding: 4rem 0;
  background: var(--surface);
  border-top: 2px solid var(--foreground);
  border-bottom: 2px solid var(--foreground);
}
.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-fade-left {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 6rem; pointer-events: none;
  background: linear-gradient(to right, var(--surface), transparent);
  z-index: 2;
}
.marquee-fade-right {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 6rem; pointer-events: none;
  background: linear-gradient(to left, var(--surface), transparent);
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.75rem;
  transition: all 0.2s;
}
.brand-logo-item:hover { border-color: var(--brand); }
.brand-logo-name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

/* ===== TESTIMONIALS ===== */
.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .testimonials-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--foreground);
  color: #fff;
  padding: 1rem 1.5rem;
}
.rating-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand);
}
.rating-sub { font-size: 0.7rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; } }
.testi-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.06);
  transition: all 0.25s;
}
.testi-card:hover { border-color: var(--brand); transform: translateY(-4px); }
.testi-quote-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2rem; height: 2rem;
  color: rgba(255,106,26,0.15);
}
.testi-text {
  font-size: 0.875rem;
  color: rgba(17,17,17,0.85);
  line-height: 1.7;
  flex: 1;
}
.testi-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-photo {
  width: 3rem; height: 3rem;
  object-fit: cover;
  border-radius: 0;
  outline: 2px solid var(--brand);
}
.testi-name { font-weight: 600; font-size: 0.875rem; }
.testi-meta { font-size: 0.7rem; color: var(--muted); }

/* ===== VIDEO REVIEWS ===== */
.video-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: 1fr 1fr 1fr; } }
.video-grid-bottom {
  display: grid;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 1.25rem auto 0;
}
@media (min-width: 768px) { .video-grid-bottom { grid-template-columns: 1fr 1fr; } }
.video-card {
  background: var(--card);
  overflow: hidden;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.06);
  transition: all 0.25s;
}
.video-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-card:hover .video-thumb-wrap img { transform: scale(1.05); }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85), rgba(17,17,17,0.3), transparent);
  display: flex; align-items: center; justify-content: center;
}
.play-btn {
  width: 3.5rem; height: 3.5rem;
  background: var(--brand);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  transition: transform 0.2s;
}
.video-card:hover .play-btn { transform: scale(1.1); }
.video-service-tag {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  background: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
}
.video-card-body { padding: 1.25rem; }
.video-card-quote { font-size: 0.8rem; color: rgba(17,17,17,0.85); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-card-meta { font-size: 0.7rem; color: var(--muted); margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  place-items: center;
  padding: 1rem;
}
.video-modal.open { display: grid; }
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal-inner video { width: 100%; height: 100%; }
.video-modal-close {
  position: absolute;
  top: -3rem; right: 0;
  background: rgba(255,255,255,0.15);
  border: none; color: #fff; cursor: pointer;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.video-modal-close:hover { background: rgba(255,255,255,0.25); }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--foreground);
  color: #fff;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 8px 8px 0 var(--brand);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: var(--brand);
}
.cta-glow-l {
  position: absolute; top: -6rem; left: -6rem;
  width: 18rem; height: 18rem;
  background: rgba(255,106,26,0.2);
  filter: blur(3rem);
  pointer-events: none;
}
.cta-glow-r {
  position: absolute; bottom: -6rem; right: -6rem;
  width: 18rem; height: 18rem;
  background: rgba(255,106,26,0.15);
  filter: blur(3rem);
  pointer-events: none;
}
.cta-eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--brand); font-weight: 700; margin-bottom: 1rem; }
.cta-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  max-width: 32rem;
  margin: 0 auto;
}
.cta-subtitle {
  color: rgba(255,255,255,0.8);
  margin-top: 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.booking-modal.open { display: flex; }
.booking-modal-inner {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: var(--card);
  border-top: 4px solid var(--brand);
  max-height: 92vh;
  overflow-y: auto;
}
.booking-grid {
  display: grid;
}
@media (min-width: 768px) { .booking-grid { grid-template-columns: 1fr 1.4fr; } }
.booking-sidebar {
  background: var(--foreground);
  color: #fff;
  padding: 1.75rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) { .booking-sidebar { display: flex; } }
.booking-sidebar h3 { font-size: 1.4rem; margin: 0.75rem 0; }
.booking-sidebar p { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.booking-info-list { list-style: none; margin-top: 2rem; space-y: 0.75rem; }
.booking-info-list li { display: flex; gap: 0.6rem; font-size: 0.8rem; margin-bottom: 0.75rem; }
.booking-form-area { padding: 1.75rem; }
.booking-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem;
  background: var(--surface);
  border: none; cursor: pointer;
  display: grid; place-items: center;
  z-index: 10;
}
.booking-close:hover { background: var(--brand); color: #fff; }

/* Form elements */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--foreground);
}
.form-label .req { color: var(--destructive); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-error { font-size: 0.75rem; color: var(--destructive); margin-top: 0.25rem; }

/* Booking success */
.booking-success { padding: 2.5rem; text-align: center; }
.booking-success-icon {
  width: 4rem; height: 4rem;
  background: var(--brand);
  display: grid; place-items: center;
  margin: 0 auto 1.25rem;
  color: #fff;
}

/* ===== FOOTER ===== */
footer {
  background: var(--foreground);
  color: #fff;
  margin-top: 4rem;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
}
@media (min-width: 540px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; padding: 4rem 0; gap: 3rem; }
}
.footer-logo { margin-bottom: 1.25rem; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 2.25rem; height: 2.25rem;
  background: rgba(255,255,255,0.1);
  display: grid; place-items: center;
  text-decoration: none; color: #fff;
  transition: background 0.2s;
  font-size: 0.75rem; font-weight: 700;
}
.social-link:hover { background: var(--brand); }
.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  line-height: 1.5;
  word-break: break-word;
}
.footer-links a:hover { color: var(--brand); }
.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
  align-items: flex-start;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}
.footer-contact-list a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-list a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    font-size: 0.72rem;
  }
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  z-index: 50;
  width: 3.5rem; height: 3.5rem;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* ===== SERVICE DETAIL ===== */
.service-detail-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .service-detail-grid { grid-template-columns: 2fr 1fr; } }
.service-detail-content { }
.service-detail-content img { width: 100%; border: 1px solid var(--border); margin-bottom: 1.5rem; }
.service-detail-content p { font-size: 1rem; line-height: 1.8; color: rgba(17,17,17,0.9); margin-bottom: 1rem; }
.bullets-box {
  background: var(--surface);
  border-left: 4px solid var(--brand);
  padding: 1.75rem;
  margin-top: 2rem;
}
.bullets-box h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.bullets-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .bullets-grid { grid-template-columns: 1fr 1fr; } }
.service-sidebar { }
.sidebar-cta {
  background: var(--foreground);
  color: #fff;
  padding: 1.75rem;
  position: relative;
  margin-bottom: 1.5rem;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: var(--brand);
}
.sidebar-cta h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.sidebar-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.sidebar-other {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.75rem;
}
.sidebar-other h4 { font-size: 1rem; margin-bottom: 1rem; }
.other-services-list { list-style: none; }
.other-services-list li { border-bottom: 1px solid var(--border); }
.other-services-list li:last-child { border-bottom: none; }
.other-services-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.other-services-list a:hover { color: var(--brand); }

/* ===== BLOG ===== */
.featured-blog {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 1024px) { .featured-blog { grid-template-columns: 1fr 1fr; } }
.featured-blog:hover { border-color: var(--brand); }
.featured-blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.featured-blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.featured-blog:hover .featured-blog-img img { transform: scale(1.05); }
.featured-blog-body {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brand); }
.blog-title-lg {
  font-size: 1.75rem;
  margin-top: 0.75rem;
  line-height: 1.2;
  transition: color 0.2s;
}
.featured-blog:hover .blog-title-lg { color: var(--brand); }
.blog-excerpt { margin-top: 1rem; color: var(--muted); line-height: 1.7; }
.blog-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1.5rem;
  align-items: center;
}
.blog-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: all 0.25s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-title { font-size: 1.1rem; margin-top: 0.5rem; line-height: 1.3; transition: color 0.2s; }
.blog-card:hover .blog-card-title { color: var(--brand); }
.blog-card-excerpt { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Blog detail */
.blog-article { max-width: 48rem; }
.blog-meta-bar {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.blog-article img { width: 100%; margin-bottom: 2.5rem; border: 1px solid var(--border); }
.blog-article p { font-size: 1rem; line-height: 1.8; color: rgba(17,17,17,0.85); margin-bottom: 1.25rem; }
.blog-article h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.blog-cta-box {
  background: var(--surface);
  border-left: 4px solid var(--brand);
  padding: 1.5rem;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.blog-cta-box a { color: var(--brand); font-weight: 700; }
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  margin-top: 2.5rem;
  font-size: 0.875rem;
}

/* ===== CONTACT PAGE ===== */
.contact-cards {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: all 0.25s;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.06);
}
.contact-card:hover { border-color: var(--brand); transform: translateY(-4px); }
.contact-card-icon {
  width: 3rem; height: 3rem;
  background: var(--foreground);
  display: grid; place-items: center;
  color: #fff; margin-bottom: 1rem;
  transition: background 0.2s;
}
.contact-card:hover .contact-card-icon { background: var(--brand); }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--foreground); }
.contact-card p { font-size: 0.875rem; color: var(--muted); }

.contact-form-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand);
  padding: 2rem;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.06);
}
.info-point { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.info-point-icon { color: var(--brand); width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-point-title { font-size: 0.875rem; font-weight: 600; }
.info-point-sub { font-size: 0.8rem; color: var(--muted); }

/* ===== CERTIFICATIONS ===== */
.cert-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .cert-grid { grid-template-columns: 1fr 1fr; } }
.cert-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.06);
}
.cert-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.cert-bg-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  opacity: 0.08;
  font-size: 5rem;
  pointer-events: none;
}
.cert-icon {
  width: 3rem; height: 3rem;
  background: var(--brand);
  display: grid; place-items: center;
  color: #fff; margin-bottom: 1rem;
}
.cert-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.cert-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.brands-grid-certs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) { .brands-grid-certs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .brands-grid-certs { grid-template-columns: repeat(6, 1fr); } }
.brand-box {
  aspect-ratio: 3/2;
  background: var(--card);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: rgba(17,17,17,0.7);
  transition: all 0.2s;
}
.brand-box:hover { color: var(--brand); border-color: var(--brand); }

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
.project-card {
  overflow: hidden;
  transition: all 0.25s;
}
.project-card:hover { transform: translateY(-4px); }
.project-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .project-card-img img { transform: scale(1.05); }
.project-card-body { padding: 1.5rem; }
.project-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.project-category {
  background: var(--brand); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.25rem 0.625rem;
}
.project-year { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.project-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.project-scope { font-size: 0.875rem; color: var(--muted); }

/* ===== About Timeline ===== */
.timeline-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .timeline-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .timeline-grid { grid-template-columns: repeat(4, 1fr); } }
.timeline-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: all 0.2s;
}
.timeline-card:hover { border-color: var(--brand); }
.timeline-year { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--brand); }
.timeline-title { font-weight: 600; margin-top: 0.5rem; }
.timeline-desc { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.6; }

/* SVG icons inline */
svg.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
svg.icon-fill { fill: currentColor; stroke: none; }

/* Utilities */
.text-brand { color: var(--brand); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

@media (max-width: 640px) {
  .hero-badge { display: none; }
  .hero-cert { display: none; }
  .featured-blog-body { padding: 1.5rem; }
}

/* Hero trust badges mobile center */
@media (max-width: 1023px) {
  .hero-trust-badges { justify-content: center !important; }
}

/* Floating chip — desktop only */
.hide-mobile { display: none !important; }
@media (min-width: 1100px) { .hide-mobile { display: flex !important; } }
