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

:root {
  --navy-950: #040d1a;
  --navy-900: #07162c;
  --navy-800: #0b2240;
  --navy-700: #102e54;
  --navy-card: rgba(11, 34, 64, 0.7);
  --navy-card-border: rgba(0, 212, 255, 0.16);

  --cyan-400: #38bdf8;
  --cyan-500: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.28);
  --blue-600: #0284c7;
  --blue-700: #0369a1;

  --emerald-500: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  --amber-400: #fbbf24;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;

  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(7, 22, 44, 0.06);
  --shadow-md: 0 12px 30px -10px rgba(7, 22, 44, 0.12);
  --shadow-lg: 0 24px 50px -12px rgba(7, 22, 44, 0.2);
  --shadow-glow: 0 0 35px var(--cyan-glow);

  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--slate-100);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-800);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-500);
}

/* Scroll Reveals */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-700);
  background-color: var(--slate-50);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 18px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a[href^="mailto:"] {
  word-break: break-all;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.container {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

/* Skip link for accessibility */
.skip-to-content {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 16px;
}

/* ==========================================================================
   TOP NOTIFICATION PROMO BAR (Approved Offer Badge)
   ========================================================================== */
.topbar {
  background: linear-gradient(90deg, #051428 0%, #0b2240 50%, #051428 100%);
  color: var(--slate-200);
  font-size: 0.81rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 40;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
}
.promo-badge .highlight {
  color: var(--cyan-400);
  background: rgba(0, 212, 255, 0.12);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 212, 255, 0.28);
}
.topbar-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-300);
  font-weight: 600;
}
.topbar-link:hover {
  color: var(--cyan-400);
}
.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald-500);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

/* ==========================================================================
   NAVIGATION HEADER (Frosted Glassmorphic)
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(7, 22, 44, 0.08);
  border-bottom-color: rgba(203, 213, 225, 0.8);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-link {
  display: flex;
  align-items: center;
  width: 250px;
  flex-shrink: 0;
}
.brand-link img {
  width: 100%;
  height: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu > a:not(.btn) {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--slate-700);
  position: relative;
  padding: 8px 0;
}
.nav-menu > a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
  border-radius: var(--radius-full);
  transition: width 0.25s ease;
}
.nav-menu > a:not(.btn):hover,
.nav-menu > a[aria-current="page"] {
  color: var(--navy-900);
}
.nav-menu > a:not(.btn):hover::after,
.nav-menu > a[aria-current="page"]::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 9px;
  color: var(--navy-900);
}

/* ==========================================================================
   BUTTONS & MICRO-INTERACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.6s ease;
}
.btn:hover::before {
  transform: rotate(45deg) translate(100%, 100%);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(7, 22, 44, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--blue-700) 100%);
  box-shadow: 0 12px 28px rgba(7, 22, 44, 0.32);
}
.btn-cyan {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 25px rgba(0, 114, 255, 0.35);
}
.btn-cyan:hover {
  box-shadow: 0 12px 30px rgba(0, 114, 255, 0.45);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.btn-whatsapp:hover {
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
}
.btn-outline {
  background: var(--white);
  color: var(--navy-900);
  border: 1.5px solid var(--slate-300);
}
.btn-outline:hover {
  border-color: var(--blue-600);
  background: var(--slate-50);
  color: var(--blue-600);
}
.btn-sm {
  min-height: 42px;
  padding: 8px 18px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   HERO SECTION (Luxury Aquatic Glow)
   ========================================================================== */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(120% 100% at 50% 0%, #0a1f3d 0%, #040d1a 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(0, 212, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(2, 132, 199, 0.15) 0%, transparent 45%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  color: var(--white);
}
.hero-content h1 .gradient-text {
  background: linear-gradient(110deg, #38bdf8 0%, #00d4ff 40%, #ffffff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
}
.guarantee-item .icon {
  color: var(--cyan-400);
}

/* ==========================================================================
   INSTANT ESTIMATE CALCULATOR WIDGET (Hero Companion)
   ========================================================================== */
.calc-card {
  background: rgba(15, 33, 60, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.12);
  position: relative;
}
.calc-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-400), transparent);
}
.calc-header {
  margin-bottom: 22px;
}
.calc-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-400);
  display: block;
  margin-bottom: 6px;
}
.calc-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin: 0;
}
.calc-field {
  margin-bottom: 18px;
}
.calc-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 8px;
}
.calc-select {
  width: 100%;
  background: rgba(7, 22, 44, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.calc-select:focus {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}
.calc-result-box {
  background: rgba(0, 212, 255, 0.08);
  border: 1px dashed rgba(0, 212, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0;
  text-align: center;
}
.calc-result-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  display: block;
  margin-bottom: 4px;
}
.calc-price {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--cyan-400);
}
.calc-note {
  font-size: 0.74rem;
  color: #94a3b8;
  margin-top: 4px;
  display: block;
}

/* ==========================================================================
   LIVE STATS & COUNTERS ROW
   ========================================================================== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 34px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-right: 1px solid var(--slate-200);
}
.stat-item:last-child {
  border-right: none;
}
.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.1);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1.1;
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--slate-600);
  font-weight: 600;
}

/* ==========================================================================
   INTERACTIVE BEFORE / AFTER COMPARISON SLIDER
   ========================================================================== */
.ba-section {
  padding: 90px 0;
  background: var(--slate-50);
}
.ba-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.ba-slider-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  user-select: none;
  cursor: ew-resize;
  background: #000;
  touch-action: pan-y;
}
.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--white);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.ba-after-wrapper .ba-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Will be dynamically sized in JS to maintain scale */
}
.ba-badge {
  position: absolute;
  top: 18px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.ba-badge.before {
  right: 18px;
  background: rgba(185, 28, 28, 0.9);
  color: var(--white);
}
.ba-badge.after {
  left: 18px;
  background: rgba(16, 185, 129, 0.95);
  color: var(--white);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  color: var(--navy-900);
  pointer-events: none;
  z-index: 10;
}
.ba-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate-600);
  margin-top: 14px;
  font-weight: 600;
}

/* ==========================================================================
   BENTO GRID: 6-STAGE CLEANING PROCESS
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}
.section-dark {
  background: linear-gradient(180deg, #07162c 0%, #0b2240 100%);
  color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3 {
  color: var(--white);
}
.section-dark p {
  color: #cbd5e1;
}
.section-header {
  max-width: 680px;
  margin-bottom: 50px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.section-dark .section-kicker {
  color: var(--cyan-400);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: var(--shadow-md);
}
.section-dark .bento-card {
  background: var(--navy-card);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}
.section-dark .bento-card:hover {
  border-color: var(--navy-card-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.stage-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.stage-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan-400);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

/* ==========================================================================
   SERVICES GRID & PRICING PACKAGES
   ========================================================================== */
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-500);
  box-shadow: 0 20px 40px rgba(7, 22, 44, 0.08);
}
.service-card.featured {
  border: 2px solid var(--blue-600);
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}
.featured-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.service-price-tag {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-700);
  margin: 16px 0;
  display: block;
}

/* ==========================================================================
   REAL CUSTOMER REVIEWS (6 Verified 5-Star Testimonials)
   ========================================================================== */
.reviews-section {
  background: linear-gradient(180deg, var(--slate-100) 0%, var(--slate-50) 100%);
  padding: 95px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.3);
}
.review-stars {
  color: var(--amber-400);
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.review-body {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--slate-700);
  font-style: italic;
  margin-bottom: 22px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}
.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-900);
}
.author-meta {
  font-size: 0.77rem;
  color: var(--emerald-500);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   WORK GALLERY & VIDEO SHOWCASE
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--navy-900);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 22, 44, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.3s;
}
.gallery-title {
  font-size: 0.9rem;
  font-weight: 700;
}
.gallery-zoom-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  transition: transform 0.2s;
}
.gallery-item:hover .gallery-zoom-btn {
  transform: scale(1.1);
}
.video-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.video-card {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
  background: #000;
}
.video-caption {
  padding: 16px 20px;
  color: var(--white);
  font-size: 0.85rem;
  background: rgba(11, 34, 64, 0.9);
}

/* ==========================================================================
   SERVICE AREAS COVERAGE
   ========================================================================== */
.area-box {
  background: linear-gradient(135deg, #071e3d 0%, #0d325e 100%);
  border-radius: var(--radius-xl);
  padding: 50px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.area-box h2 {
  color: var(--white);
}
.area-box p {
  color: #cbd5e1;
}
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  transition: all 0.2s ease;
}
.area-tag:hover {
  background: var(--cyan-500);
  color: var(--navy-950);
  border-color: var(--cyan-500);
  transform: translateY(-2px);
}

/* ==========================================================================
   SMOOTH FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.active {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-md);
}
.faq-trigger {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
}
.faq-chevron {
  width: 24px;
  height: 24px;
  color: var(--blue-600);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 26px;
  color: var(--slate-600);
  font-size: 0.94rem;
  line-height: 1.7;
}
.faq-item.active .faq-content {
  padding-bottom: 22px;
}

/* ==========================================================================
   CALL TO ACTION STRIP
   ========================================================================== */
.cta-banner {
  background: radial-gradient(circle at 10% 20%, #0c2d54 0%, #051428 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 25px 60px rgba(7, 22, 44, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: var(--cyan-500);
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: #cbd5e1;
  max-width: 500px;
  margin: 0;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #030a14;
  color: var(--slate-400);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer h3, .footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand img {
  width: 240px;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a:hover {
  color: var(--cyan-400);
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--slate-400);
}

/* ==========================================================================
   FLOATING WHATSAPP & APP DOCK (Mobile Experience)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-whatsapp::before {
  content: "Chat with us";
  position: absolute;
  right: 75px;
  background: var(--navy-900);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
}
.floating-whatsapp:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: pulse-whatsapp 2.5s infinite;
}
@keyframes pulse-whatsapp {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.mobile-app-dock {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(7, 22, 44, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 8px 12px;
  z-index: 1000;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}
.dock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
}
.dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
}
.dock-call {
  background: rgba(255, 255, 255, 0.1);
}
.dock-wa {
  background: #10b981;
}
.dock-book {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
}

/* ==========================================================================
   MODAL LIGHTBOX (Accessible Dialog)
   ========================================================================== */
.lightbox-modal {
  padding: 0;
  background: transparent;
  border: none;
  max-width: min(92vw, 1000px);
  max-height: 92vh;
  margin: auto;
}
.lightbox-modal::backdrop {
  background: rgba(4, 13, 26, 0.88);
  backdrop-filter: blur(10px);
}
.lightbox-inner {
  position: relative;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lightbox-inner img {
  max-height: 75vh;
  width: auto;
  margin: 0 auto;
}
.lightbox-caption {
  padding: 16px 22px;
  color: var(--white);
  font-size: 0.92rem;
  background: var(--navy-800);
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: transform 0.2s;
}
.lightbox-close:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   FORMS & CONTACT STYLES
   ========================================================================== */
.form-box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--slate-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Grid Utilities */
.split-grid-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-grid-40-60 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
/* --- Tablet Breakpoint (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .split-grid-50, .split-grid-40-60 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bento-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ba-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .area-box {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile Breakpoint (max-width: 768px) --- */
@media (max-width: 768px) {
  /* Container & Base Typography */
  .container {
    width: min(100%, calc(100% - 36px));
  }
  h1 {
    font-size: clamp(1.85rem, 6.5vw, 2.5rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 18px;
  }
  h2 {
    font-size: clamp(1.45rem, 5vw, 1.95rem);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  h3 {
    font-size: 1.18rem;
    margin-bottom: 8px;
  }
  .section {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .split-grid-50, .split-grid-40-60 {
    gap: 28px;
  }

  /* Header & Navigation */
  .topbar {
    padding: 10px 0;
  }
  .promo-badge {
    flex-direction: column;
    text-align: center;
    font-size: 0.8rem;
    gap: 4px;
  }
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .nav-shell {
    min-height: 68px;
    gap: 16px;
  }
  .brand-link {
    width: 165px;
    max-width: 55vw;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    color: var(--navy-900);
    transition: background 0.2s;
  }
  .menu-toggle:active {
    background: var(--slate-200);
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 2px solid var(--slate-200);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    gap: 0;
    align-items: stretch;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu > a:not(.btn) {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--navy-900);
    padding: 14px 4px;
    border-bottom: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-menu > a:not(.btn):hover,
  .nav-menu > a[aria-current="page"] {
    color: var(--blue-600);
  }
  .nav-menu > a:not(.btn)::after {
    display: none;
  }
  .nav-menu .btn {
    margin-top: 14px;
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 0.96rem;
  }

  /* Hero Section */
  .hero {
    padding: 36px 0 48px;
  }
  .hero-status-pill {
    font-size: 0.76rem;
    padding: 6px 14px;
    margin-bottom: 18px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 24px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .hero-guarantee {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 18px;
  }
  .guarantee-item {
    font-size: 0.82rem;
  }

  /* Estimator Widget Card */
  .calc-card {
    padding: 22px 18px;
    border-radius: var(--radius-lg);
  }
  .calc-header {
    margin-bottom: 16px;
  }
  .calc-card h3 {
    font-size: 1.25rem;
  }
  .calc-field {
    margin-bottom: 14px;
  }
  .calc-select {
    font-size: 16px; /* Prevents auto-zoom in iOS */
    padding: 12px 14px;
  }
  .calc-result-box {
    padding: 14px;
    margin: 16px 0;
  }
  .calc-price {
    font-size: 1.65rem;
  }
  #calc-book-btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  /* Stats Bar */
  .stats-bar {
    padding: 22px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-item {
    padding: 12px 10px;
    border: none;
    background: var(--slate-100);
    border-radius: var(--radius-md);
    gap: 10px;
    align-items: center;
  }
  .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
  }
  .stat-icon svg {
    width: 20px;
    height: 20px;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .stat-label {
    font-size: 0.74rem;
    line-height: 1.25;
  }

  /* Before / After Slider */
  .ba-section {
    padding: 50px 0;
  }
  .ba-container {
    gap: 28px;
  }
  .ba-slider-shell {
    border-radius: var(--radius-lg);
    border-width: 3px;
    touch-action: pan-y;
  }
  .ba-badge.before, .ba-badge.after {
    top: 12px;
    padding: 4px 10px;
    font-size: 0.68rem;
  }
  .ba-badge.before {
    right: 12px;
  }
  .ba-badge.after {
    left: 12px;
  }
  .ba-handle {
    width: 38px;
    height: 38px;
  }
  .ba-handle svg {
    width: 18px;
    height: 18px;
  }
  .ba-hint {
    font-size: 0.78rem;
    margin-top: 10px;
  }

  /* Bento Grids (Processes, Services, About) */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bento-card {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }
  .stage-pill {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
    margin-bottom: 12px;
  }
  .stage-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }
  .bento-card h3 {
    font-size: 1.15rem;
  }
  .bento-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* Service Cards & Packages */
  .service-card {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }
  .featured-badge {
    top: -10px;
    right: 16px;
    font-size: 0.68rem;
    padding: 3px 10px;
  }
  .service-price-tag {
    font-size: 1.15rem;
    margin: 12px 0;
  }
  .service-card .btn {
    width: 100%;
    justify-content: center;
  }

  /* Reviews */
  .reviews-section {
    padding: 50px 0;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }
  .review-body {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .review-author {
    gap: 12px;
    padding-top: 14px;
  }
  .author-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.88rem;
  }
  .author-name {
    font-size: 0.92rem;
  }

  /* Work Gallery (Clean 2-Column Mobile Grid) */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item {
    border-radius: var(--radius-md);
  }
  .gallery-overlay {
    padding: 10px;
  }
  .gallery-title {
    font-size: 0.74rem;
    line-height: 1.25;
  }
  .gallery-zoom-btn {
    width: 30px;
    height: 30px;
    top: 6px;
    right: 6px;
  }
  .gallery-zoom-btn svg {
    width: 14px;
    height: 14px;
  }

  /* Video Cards */
  .video-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }
  .video-card {
    border-radius: var(--radius-md);
  }
  .video-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .video-caption {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  /* Service Areas Box */
  .area-box {
    padding: 26px 18px;
    border-radius: var(--radius-lg);
    gap: 24px;
  }
  .area-box h2 {
    font-size: 1.35rem;
  }
  .area-box p {
    font-size: 0.92rem;
  }
  .area-pills {
    gap: 8px;
  }
  .area-tag {
    padding: 7px 12px;
    font-size: 0.82rem;
    gap: 6px;
  }
  .area-tag .live-dot {
    width: 6px;
    height: 6px;
  }

  /* FAQ Accordion */
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-list {
    gap: 10px;
  }
  .faq-trigger {
    padding: 16px;
    font-size: 0.96rem;
    gap: 12px;
  }
  .faq-content {
    padding: 0 16px;
    font-size: 0.88rem;
  }
  .faq-item.active .faq-content {
    padding-bottom: 16px;
  }

  /* Call-To-Action Banner */
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    gap: 20px;
  }
  .cta-banner h2 {
    font-size: 1.38rem;
  }
  .cta-banner p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Forms & Contact Section */
  .form-box {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }
  .form-box h2 {
    font-size: 1.35rem;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-control {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 12px 14px;
  }
  textarea.form-control {
    min-height: 100px;
  }
  .form-box button[type="submit"] {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 0.92rem;
    white-space: normal;
    line-height: 1.35;
  }

  /* Footer */
  .footer {
    padding: 45px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 30px;
  }
  .footer-brand img {
    max-width: 180px;
    margin-bottom: 14px;
  }
  .footer-links {
    gap: 10px;
    font-size: 0.92rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.78rem;
    padding-top: 20px;
  }

  /* Floating WhatsApp */
  .floating-whatsapp {
    bottom: 18px;
    right: 16px;
    width: 50px;
    height: 50px;
    transform: none;
  }
  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
  .floating-whatsapp:hover {
    transform: scale(1.05);
  }
  .floating-whatsapp::before {
    display: none;
  }
  .mobile-app-dock {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

/* --- Small Mobile Phones (max-width: 480px) --- */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px);
  }
  h1 {
    font-size: clamp(1.6rem, 7.5vw, 2.05rem);
  }
  h2 {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }
  .section {
    padding: 42px 0;
  }
  .brand-link {
    width: 142px;
  }
  .stat-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 8px;
  }
  .stat-num {
    font-size: 1.28rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .calc-card, .form-box, .cta-banner, .area-box {
    padding: 20px 14px;
  }
  .bento-card, .service-card, .review-card {
    padding: 20px 14px;
  }
}
