/* ===== RESET & TOKENS ===== */
*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media(min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  text-decoration: none;
  color: inherit;
}

button, a, input, select, textarea, .g-filter, .faq-question, .hero-slide, .ba-slider {
  touch-action: manipulation;
}

:root {
  --bg: #090a0f;
  --bg2: #11131c;
  --bg3: #181b29;
  --text: #f3f4f6;
  --text2: #9ca3af;
  --accent: #2563eb;
  --accent2: #7c3aed;
  --accent3: #10b981;
  --wa-green: #25d366;
  --wa-green-hover: #128c7e;
  --gold: #f59e0b;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --glass: rgba(18, 19, 28, 0.85);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="light"] {
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --bg3: #e2e8f0;
  --text: #0f172a;
  --text2: #475569;
  --card: rgba(255, 255, 255, 0.85);
  --card-border: rgba(37, 99, 235, 0.12);
  --glass: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(37, 99, 235, 0.18);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #38bdf8, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.services, .gallery-section, .recent-projects, .before-after, .why-us, .process, .testimonials, .faq-section, .cta-section, .footer {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.top-bar {
  background: linear-gradient(90deg, #1e1b4b, #311b92, #0f172a);
  color: #fff;
  padding: 0.45rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1000;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info a {
  color: #60a5fa;
  font-weight: 700;
  margin: 0 0.2rem;
}

.top-bar-info .dot {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.65rem 1.25rem;
  transition: transform 0.3s var(--ease-smooth), background 0.3s;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s var(--ease-smooth);
}

.brand-logo-img:hover {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text2);
  transition: color 0.25s var(--ease-smooth);
  padding: 0.4rem 0.2rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: #fff !important;
  padding: 0.55rem 1.35rem;
  border-radius: 99px;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 0.45rem 0.95rem;
  border-radius: 99px;
  color: #60a5fa;
  font-size: 0.88rem;
  min-height: 44px;
  transition: transform 0.3s var(--ease-smooth), background 0.3s;
}

.nav-phone-btn:hover {
  background: rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  color: #fff;
}

.theme-toggle, .hamburger {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 99px;
  padding: 0;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hamburger {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  min-height: 48px;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(124, 58, 237, 0.55);
}

.btn-call {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

.btn-call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.65);
}

.btn-wa {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-hover));
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.65);
}

.btn-ghost {
  background: rgba(18, 19, 28, 0.7);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent2);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-highlight-pulse {
  animation: subtleCtaPulse 3.5s var(--ease-smooth) infinite;
}

@keyframes subtleCtaPulse {
  0%, 100% {
    box-shadow: 0 6px 22px rgba(37, 99, 235, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.75), 0 0 15px rgba(56, 189, 248, 0.45);
    transform: scale(1.025);
  }
}

.phone-ring {
  display: inline-block;
  animation: softPhoneRing 4s ease-in-out infinite;
}

@keyframes softPhoneRing {
  0%, 80%, 100% { transform: rotate(0deg); }
  84% { transform: rotate(-10deg); }
  88% { transform: rotate(10deg); }
  92% { transform: rotate(-5deg); }
  96% { transform: rotate(5deg); }
}

.pulse-glow {
  animation: gentleGlow 3s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
  0% { box-shadow: 0 0 12px rgba(37, 99, 235, 0.3); }
  100% { box-shadow: 0 0 25px rgba(37, 99, 235, 0.7); }
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.hero-slider-section {
  position: relative;
  height: 92vh;
  min-height: 620px;
  overflow: hidden;
  background: #090a0f;
  display: flex;
  align-items: flex-end;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease-expo), visibility 0.8s;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.2rem;
  will-change: opacity, visibility;
  transform: translate3d(0, 0, 0);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1) translate3d(0, 0, 0);
  transition: transform 6s var(--ease-expo);
  filter: brightness(0.72) contrast(1.08);
  will-change: transform;
}

.hero-slide.active .hero-slide-img {
  transform: scale(1.06) translate3d(0, 0, 0);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 10, 15, 0.95) 0%, rgba(9, 10, 15, 0.45) 45%, transparent 100%);
}

.hero-slide-container {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  text-align: left;
}

.hero-slide-content {
  max-width: 880px;
  width: 100%;
}

.hero-slider-section.hero-initial-load .hero-slide[data-index="0"] .hero-slide-img {
  transform: scale(1) translate3d(0, 0, 0) !important;
  transition: none !important;
}

.hero-slider-section.hero-initial-load .hero-slide[data-index="0"] .anim-item {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
  will-change: transform, opacity;
}

.hero-slider-section.hero-initial-load.content-revealed .hero-slide[data-index="0"] .step-label {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.05s;
}

.hero-slider-section.hero-initial-load.content-revealed .hero-slide[data-index="0"] .step-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.20s;
}

.hero-slider-section.hero-initial-load.content-revealed .hero-slide[data-index="0"] .step-desc {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.35s;
}

.hero-slider-section.hero-initial-load.content-revealed .hero-slide[data-index="0"] .step-btns {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.50s;
}

.hero-top-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.hero-slide-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  padding: 0.45rem 1.2rem;
  border-radius: 99px;
  color: #38bdf8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-location-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.42rem 1.1rem;
  border-radius: 99px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.hero-location-ribbon strong {
  color: #38bdf8;
  font-weight: 800;
}

.anim-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
  will-change: transform, opacity;
}

.hero-slide.active .step-label {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}

.hero-slide.active .step-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.3s;
}

.hero-slide.active .step-desc {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.45s;
}

.hero-slide.active .step-btns {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.6s;
}

.hero-slide-title {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1.06;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.title-line {
  display: block;
}

.hero-slide-sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f3f4f6;
  max-width: 650px;
  margin-bottom: 0.85rem;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-slide-btns {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc);
  transition: width 0.1s linear;
}

.problems {
  padding: 6rem 0;
  background: var(--bg2);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin: 3rem 0 2.5rem;
}

.problem-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease-smooth);
  will-change: transform;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.6);
}

.problem-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.problem-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}

.problem-card:hover .problem-card-img {
  transform: scale(1.06);
}

.problem-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: #ef4444;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  text-transform: uppercase;
}

.problem-body {
  padding: 1.5rem;
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.problem-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.problem-body p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.6;
}

.solution-banner {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.solution-icon {
  font-size: 3rem;
}

.solution-text {
  flex: 1;
}

.solution-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.solution-text p {
  color: var(--text2);
  line-height: 1.6;
}

.services {
  padding: 6rem 0;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-top: 1rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
}

.service-badge-green { background: linear-gradient(135deg, #10b981, #059669); }
.service-badge-gold { background: linear-gradient(135deg, var(--gold), #d97706); }

.service-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.service-icon {
  font-size: 2rem;
  line-height: 1;
}

.service-head h3 {
  font-size: 1.3rem;
  font-weight: 800;
}

.service-subtag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.service-body p {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.service-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
}

.btn-card-call {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #60a5fa;
  text-align: center;
  padding: 0.65rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-smooth);
}

.btn-card-call:hover {
  background: var(--accent);
  color: #fff;
}

.btn-card-wa {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--wa-green);
  text-align: center;
  padding: 0.65rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-smooth);
}

.btn-card-wa:hover {
  background: var(--wa-green);
  color: #fff;
}

.gallery-section {
  padding: 6rem 0;
  background: var(--bg2);
  text-align: center;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.g-filter {
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--text2);
  padding: 0.65rem 1.4rem;
  min-height: 44px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.g-filter:hover, .g-filter.active {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-smooth), opacity 0.35s ease;
  will-change: transform;
}

.gallery-card.hide {
  display: none;
}

.g-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.g-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 10, 15, 0.9) 0%, rgba(9, 10, 15, 0.25) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  text-align: left;
  opacity: 0.95;
}

.g-zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.g-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 0.3rem;
}

.g-overlay h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.g-overlay p {
  font-size: 0.85rem;
  color: var(--text2);
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth);
  will-change: opacity;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.lightbox-details {
  padding: 1.8rem;
  text-align: left;
}

.lightbox-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: #38bdf8;
  text-transform: uppercase;
}

.lightbox-details h3 {
  font-size: 1.4rem;
  margin: 0.3rem 0 0.2rem;
}

.lightbox-details p {
  color: var(--text2);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.lightbox-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.lightbox-btn {
  padding: 0.75rem 1.4rem !important;
  font-size: 0.92rem !important;
  min-height: 44px;
  width: auto !important;
  flex: 1 1 140px;
  justify-content: center;
}

.recent-projects {
  padding: 6rem 0;
  text-align: center;
}

.projects-slider-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.proj-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.proj-body {
  padding: 1.5rem;
}

.proj-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.proj-badge {
  background: rgba(37, 99, 235, 0.2);
  color: #60a5fa;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
}

.proj-loc {
  font-size: 0.82rem;
  color: var(--text2);
}

.proj-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.proj-body p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.proj-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wa-green);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.before-after {
  padding: 6rem 0;
  background: var(--bg2);
  text-align: center;
}

.ba-slider-wrap {
  max-width: 800px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ba-slider {
  position: relative;
  height: 420px;
  display: flex;
  cursor: col-resize;
  user-select: none;
}

.ba-before, .ba-after {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.ba-before { left: 0; width: 50%; border-right: 3px solid #fff; z-index: 2; }
.ba-after { right: 0; left: 50%; width: 50%; z-index: 1; }

.ba-label {
  position: absolute;
  top: 1rem;
  z-index: 5;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  color: #fff;
}

.ba-before .ba-label { left: 1rem; background: #ef4444; }
.ba-after .ba-label { right: 1rem; background: #10b981; }

.ba-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.ba-after-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-scene-after-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 10, 15, 0.8), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
}

.ba-shield { font-size: 3.5rem; margin-bottom: 0.5rem; }
.ba-stars { font-size: 1.2rem; margin-top: 0.3rem; }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 6;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.why-us {
  padding: 6rem 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.35s var(--ease-smooth);
  will-change: transform;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.5);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.65;
}

.process {
  padding: 6rem 0;
  background: var(--bg2);
  text-align: center;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: left;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 60px 1fr;
  align-items: start;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(124, 58, 237, 0.35);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  z-index: 2;
}

.step-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.65;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  left: 85px;
  width: 2px;
  height: calc(100% - 52px);
  background: linear-gradient(to bottom, rgba(124, 58, 237, 0.6), transparent);
}

.testimonials {
  padding: 6rem 0;
  text-align: center;
}

.reviews-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 2.5rem auto 1.5rem;
  display: flex;
  align-items: center;
}

.reviews-track-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
  padding: 0.5rem 0.25rem;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease-expo);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.reviews-track .testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.35s var(--ease-smooth);
  text-align: left;
  will-change: transform;
}

.reviews-track .testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.4);
}

@media(max-width: 992px) {
  .reviews-track .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}

@media(max-width: 640px) {
  .reviews-track .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.t-stars {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.t-info strong {
  display: block;
  font-size: 0.93rem;
}

.t-info span {
  font-size: 0.82rem;
  color: var(--text2);
}

.reviews-nav-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s var(--ease-smooth);
  flex-shrink: 0;
}

.reviews-nav-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.reviews-nav-btn.prev-btn { margin-right: 0.8rem; }
.reviews-nav-btn.next-btn { margin-left: 0.8rem; }

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.review-dot {
  width: 12px;
  height: 12px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-dot.active {
  background: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

.faq-section {
  padding: 6rem 0;
  background: var(--bg2);
  text-align: center;
}

.faq-grid {
  max-width: 800px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  min-height: 52px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.4rem;
  color: #38bdf8;
  transition: transform 0.3s var(--ease-smooth);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth), padding 0.35s var(--ease-smooth);
  padding: 0 1.5rem;
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}

.cta-section {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.2), transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: calc(var(--radius) * 1.5);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow);
}

.cta-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.85rem;
}

.cta-sub {
  color: var(--text2);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-contact-quick {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text2);
}

.form-group input, .form-group select {
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  min-height: 48px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus, .form-group select:focus {
  border-color: #38bdf8;
}

.cta-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-trust span {
  font-size: 0.85rem;
  color: var(--text2);
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
}

.hidden { display: none !important; }

.footer {
  background: var(--bg2);
  border-top: 1px solid var(--card-border);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  margin: 1rem 0 1.25rem;
}

.footer-contact-direct p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.footer-contact-direct a {
  color: #38bdf8;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li, .footer-col ul a {
  font-size: 0.88rem;
  color: var(--text2);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text2);
}

/* ===== FLOATING EMAIL BUTTON (EXACT SAME POSITION, SIZE & STYLE AS FORMER WHATSAPP BUBBLE) ===== */
.email-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.8rem;
  z-index: 998;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
  transition: transform 0.3s var(--ease-smooth);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.email-float:hover {
  transform: scale(1.12) translate3d(0, 0, 0) !important;
}

.email-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: var(--shadow);
}

.email-float:hover .email-tooltip {
  opacity: 1;
}

.mobile-bottom-bar {
  display: none;
}

@media(max-width: 768px) {
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 0.65rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  .mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0.5rem;
    min-height: 48px;
    border-radius: 99px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .mobile-call {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
  }

  .mobile-wa {
    background: linear-gradient(135deg, var(--wa-green), var(--wa-green-hover));
  }

  .email-float {
    bottom: 5.5rem;
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media(max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar {
    padding: 0.55rem 0.85rem;
    height: 128px;
    display: flex;
    align-items: center;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  .logo {
    flex: 0 0 72%;
    max-width: 72%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 4%;
  }

  .brand-logo-img {
    width: 100% !important;
    max-width: 350px !important;
    height: auto !important;
    max-height: 112px !important;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.75));
  }

  .nav-actions {
    flex: 0 0 28%;
    max-width: 28%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-left: 0;
  }

  .theme-toggle, .hamburger {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 99px;
    padding: 0;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: 44px;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 128px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg2);
    border-bottom: 1px solid var(--card-border);
    padding: 1.8rem;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-phone-btn {
    display: none;
  }

  .hero-slide {
    padding-bottom: 1.5rem;
  }

  .hero-top-meta {
    margin-bottom: 0.4rem;
  }

  .hero-location-ribbon {
    display: flex !important;
    width: 100% !important;
    font-size: 0.74rem !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 12px !important;
    line-height: 1.4 !important;
    margin-bottom: 0.85rem !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .ba-slider {
    height: 300px;
  }

  .reviews-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .reviews-nav-btn.prev-btn { margin-right: 0.4rem; }
  .reviews-nav-btn.next-btn { margin-left: 0.4rem; }

  .process-step {
    grid-template-columns: 40px 1fr;
  }

  .step-num {
    display: none;
  }

  .process-step:not(:last-child)::after {
    left: 20px;
  }
}

@media(max-width: 480px) {
  .navbar {
    padding: 0.45rem 0.85rem;
    height: 118px;
  }

  .logo {
    flex: 0 0 72%;
    max-width: 72%;
    padding-left: 2%;
  }

  .brand-logo-img {
    max-height: 102px !important;
    max-width: 310px !important;
  }

  .nav-actions {
    flex: 0 0 28%;
    max-width: 28%;
    justify-content: flex-start;
    gap: 6px;
  }

  .theme-toggle, .hamburger {
    height: 44px;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1rem;
  }

  .nav-links {
    top: 118px;
  }

  .hero-slider-section {
    height: 90vh;
    min-height: 540px;
  }

  .hero-slide-title {
    font-size: 2.2rem;
  }

  .hero-slide-sub {
    font-size: 1.02rem;
    margin-bottom: 0.85rem;
  }

  .hero-slide-btns {
    flex-direction: column;
  }

  .btn:not(.lightbox-btn) {
    width: 100%;
  }

  .lightbox-btn {
    width: 100% !important;
    flex: none !important;
  }

  .cta-inner {
    padding: 2rem 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
