/* ==========================================
   2PAINTER — PREMIUM LANDING PAGE STYLES
   ========================================== */

:root {
  --primary: #1e3a8a;
  --primary-light: #2d52c4;
  --primary-dark: #142760;
  --accent: #f97316;
  --accent-light: #fb9a52;
  --accent-dark: #d9600e;
  --text-dark: #334155;
  --text-mid: #64748b;
  --text-light: #94a3b8;
  --bg-light: #eef2f6;
  --bg-mid: #f1f5f9;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(30, 58, 138, 0.08);
  --shadow-md: 0 8px 24px rgba(30, 58, 138, 0.12);
  --shadow-lg: 0 20px 60px rgba(30, 58, 138, 0.18);
  --shadow-xl: 0 30px 80px rgba(30, 58, 138, 0.22);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  color: var(--primary);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: none;
  text-decoration: none;
  isolation: isolate;
}

/* Shimmer sweep on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.btn:hover::before {
  transform: translateX(100%);
}

/* Press overlay */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition-fast);
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
.btn:active::after {
  background: rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: scale(0.965) translateY(1px) !important;
}

/* Sizes */
.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 14px;
}
.btn--md {
  padding: 13px 26px;
  font-size: 0.9rem;
}
.btn--sm {
  padding: 9px 20px;
  font-size: 0.8rem;
  border-radius: 8px;
}

/* Primary */
.btn--primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 14px rgba(37, 99, 235, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.3);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 30px rgba(37, 99, 235, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Accent */
.btn--accent {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 45%, #ea6c0a 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 16px rgba(249, 115, 22, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.3);
}
.btn--accent:hover {
  background: linear-gradient(135deg, #fdba74 0%, #fb923c 40%, #f97316 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 32px rgba(249, 115, 22, 0.6),
    0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: #60a5fa;
  border: 1.5px solid rgba(96, 165, 250, 0.5);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(96, 165, 250, 0.9);
  color: #93c5fd;
  transform: translateY(-3px);
  box-shadow:
    0 6px 24px rgba(37, 99, 235, 0.3),
    0 0 0 4px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Glass */
.btn--glass {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 14px rgba(0, 0, 0, 0.25);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 8px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* White */
.btn--white {
  background: linear-gradient(160deg, #ffffff 0%, #f1f5f9 100%);
  color: #1e3a8a;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 #fff,
    0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn--white:hover {
  background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 28px rgba(0, 0, 0, 0.28);
}

/* Pulse CTA */
.btn--pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      0 4px 16px rgba(249, 115, 22, 0.45);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.15),
      0 6px 36px rgba(249, 115, 22, 0.7),
      0 0 0 10px rgba(249, 115, 22, 0.08);
  }
}

.btn--full {
  width: 100%;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(30, 58, 138, 0.08);
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ========== SCROLL REVEAL ========== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s ease var(--delay, 0s),
    transform 0.65s ease var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 10px 20px;
  position: relative;
  z-index: 200;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-20deg);
  animation: sheen 4s ease-in-out infinite;
}

@keyframes sheen {
  0% {
    left: -40%;
  }
  100% {
    left: 110%;
  }
}

.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.875rem;
  text-align: center;
}

.announcement-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
  transition:
    box-shadow var(--transition),
    background var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
}

.header__logo .logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.header__nav {
  flex: 1;
}

.nav-list {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  border-radius: 2px;
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.header__ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(30, 58, 138, 0.08);
  background: var(--white);
}
.mobile-nav.open {
  display: block;
}

.mobile-nav__list {
  margin-bottom: 16px;
}
.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(30, 58, 138, 0.06);
  transition: color var(--transition-fast);
}
.mobile-nav__link:hover {
  color: var(--primary);
}
.mobile-nav__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ========== HERO — SPLIT LAYOUT ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Subtle dot-grid texture */
/* .hero__bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(
      circle at 15% 85%,
      rgba(249, 115, 22, 0.18) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(30, 58, 138, 0.4) 0%,
      transparent 50%
    ),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
} */

/* Orbs */
.hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
.hero__orb--1 {
  width: 520px;
  height: 520px;
  background: rgba(249, 115, 22, 0.12);
  top: -180px;
  right: -120px;
  animation: orbFloat 10s ease-in-out infinite;
}
.hero__orb--2 {
  width: 380px;
  height: 380px;
  background: rgba(93, 120, 255, 0.1);
  bottom: -80px;
  left: -100px;
  animation: orbFloat 13s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 240px;
  height: 240px;
  background: rgba(251, 191, 36, 0.07);
  top: 55%;
  left: 45%;
  animation: orbFloat 8s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}

/* ── Split grid ── */
.hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 60px;
  padding: 80px 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── LEFT COLUMN ── */
.hero__left {
  max-width: 580px;
}

/* Staggered entry animations */
.hero-anim-1 {
  animation: heroSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero-anim-2 {
  animation: heroSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}
.hero-anim-3 {
  animation: heroSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}
.hero-anim-4 {
  animation: heroSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}
.hero-anim-5 {
  animation: heroSlideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}
.hero-anim-img {
  animation: heroSlideRight 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroSlideRight {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
  animation: dotBlink 2s ease-in-out infinite;
}

.hero__headline {
  font-size: clamp(2.6rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.headline-accent {
  background: linear-gradient(120deg, var(--accent) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* New outline-dark style for left-side hero */
.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Trust pills row */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  transition: background var(--transition-fast);
}
.trust-pill:hover {
  background: rgba(255, 255, 255, 0.14);
}
.trust-stars {
  color: #fbbf24;
  letter-spacing: 1px;
  font-size: 0.85rem;
}
.trust-emoji {
  font-size: 1rem;
}
.trust-pill strong {
  color: var(--white);
}

/* ── RIGHT COLUMN — Image ── */
.hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulsing outer rings */
.hero__img-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  animation: ringPulse 4s ease-in-out infinite;
}
.hero__img-ring {
  width: 580px;
  height: 580px;
  animation-delay: 0s;
}
.hero__img-ring--2 {
  width: 480px;
  height: 480px;
  border-color: rgba(249, 115, 22, 0.15);
  animation-delay: -2s;
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.3;
  }
}

/* Main image frame */
.hero__img-frame {
  position: relative;
  width: 420px;
  height: 520px;
  border-radius: 32px 32px 80px 32px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1.5px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: imgFloat 7s ease-in-out infinite;
}
@keyframes imgFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  30% {
    transform: translateY(-14px) rotate(0.4deg);
  }
  70% {
    transform: translateY(-6px) rotate(-0.2deg);
  }
}

.hero__img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__img-frame:hover .hero__img-main {
  transform: scale(1.06);
}

/* Sheen sweep on hover */
.hero__img-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.hero__img-frame:hover .hero__img-sheen {
  transform: translateX(120%);
}

/* ── Floating cards ── */
.hero__float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: transform var(--transition);
  z-index: 10;
}
.hero__float-card:hover {
  transform: translateY(-4px) scale(1.02);
}

/* Rating card — top left of image */
.hero__float-card--rating {
  top: 40px;
  left: -60px;
  animation: cardFloat 6s ease-in-out infinite;
  animation-delay: -1s;
}
/* Job done card — bottom right */
.hero__float-card--jobs {
  bottom: 60px;
  right: -50px;
  animation: cardFloat 7s ease-in-out infinite;
  animation-delay: -3s;
}
/* Experience badge — top right */
.hero__float-card--exp {
  top: -20px;
  right: -30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.4);
  animation: cardFloat 8s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.fcard__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.fcard__icon--check {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.fcard__val {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  line-height: 1.2;
}
.fcard__lbl {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 2px;
}

.fcard__exp-num {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.fcard__exp-num span {
  font-size: 1.2rem;
  color: var(--accent);
}
.fcard__exp-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  line-height: 1.3;
  font-weight: 500;
}

/* Animated brush stroke */
.hero__brush-stroke {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  opacity: 0.7;
}
.brush-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawBrush 1.4s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}
@keyframes drawBrush {
  to {
    stroke-dashoffset: 0;
  }
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* ========== STATS ========== */
.stats-section {
  background: linear-gradient(145deg, #0b1d4e 0%, #1e3a8a 55%, #142760 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
/* .stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
} */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  display: inline;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  font-weight: 500;
}

/* ========== OFFER SECTION ========== */
.offer-section {
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.offer-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 50%;
}

.offer-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.offer-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.offer-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.offer-highlight {
  color: var(--accent);
  position: relative;
}

.offer-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 36px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
}

.countdown-item {
  text-align: center;
}
.countdown-num {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  min-width: 64px;
}
.countdown-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.countdown-sep {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-top: -8px;
}
.offer-cta {
  text-align: center;
}

/* ========== WHY CHOOSE US ========== */
.why-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 58, 138, 0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 58, 138, 0.12);
}
.why-card:hover::before {
  transform: scaleX(1);
}

.why-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.08),
    rgba(30, 58, 138, 0.04)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  transition: all var(--transition);
}
.why-card:hover .why-card__icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.why-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ========== SERVICES ========== */
.services-section {
  padding: 70px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 58, 138, 0.07);
  transition: all var(--transition);
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-card__img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 28, 70, 0.9) 0%,
    rgba(14, 28, 70, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover .service-card__overlay {
  opacity: 1;
}

.service-card__body {
  padding: 20px 22px 24px;
}
.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 58, 138, 0.06);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(30, 58, 138, 0.06);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ========== BEFORE / AFTER ========== */
.before-after-section {
  padding: 70px 0;
  background: var(--white);
}

.ba-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-xl);
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
}
.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s;
}

.ba-label {
  position: absolute;
  bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 100px;
  color: var(--white);
}
.ba-label--after {
  left: 20px;
  background: rgba(30, 58, 138, 0.8);
  backdrop-filter: blur(4px);
}
.ba-label--before {
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ba-handle__line {
  width: 3px;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  position: absolute;
}
.ba-handle__btn {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  color: var(--primary);
  transition: transform var(--transition-fast);
}
.ba-handle__btn:hover {
  transform: scale(1.1);
}

/* ========== URGENCY SECTION ========== */
.urgency-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: var(--primary);
}
.urgency-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(249, 115, 22, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 60%
    );
}

.urgency-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.urgency-slots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fed7aa;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.urgency-dot-anim {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotBlink 1s ease-in-out infinite;
}

.urgency-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.urgency-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 36px;
}
.urgency-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== HOW IT WORKS ========== */
.hiw-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 16px;
}

.hiw-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-top: 100px;
  border-radius: 2px;
  opacity: 0.3;
  min-width: 20px;
}

.hiw-step {
  flex: 0 0 200px;
  text-align: center;
  position: relative;
  margin-top: 30px;
}

.hiw-step__num {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hiw-step__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
  transition: all var(--transition);
}
.hiw-step:hover .hiw-step__icon {
  transform: translateY(-6px) rotate(-5deg);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.35);
}

.hiw-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.hiw-step__text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .hiw-steps {
    flex-direction: column;
    gap: 24px;
  }

  /* .hiw-connector {
    display: none;
  } */

  .hiw-step {
    flex: auto;
    width: 100%;
    text-align: left;
    margin-top: 0;
    /* Card styles only on mobile */
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(30, 58, 138, 0.06);
    transition: all var(--transition);
  }

  /* Optional: add hover effect for mobile cards */
  .hiw-step:active {
    transform: scale(0.99);
    box-shadow: var(--shadow-md);
  }

  .hiw-step__num {
    text-align: left;
    margin-left: 10px;
  }

  .hiw-step__icon {
    margin: 0 0 20px 0;
  }

  .hiw-step__title {
    text-align: left;
  }

  .hiw-step__text {
    text-align: left;
  }
}

/* ========== FAQ ========== */
.faq-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(30, 58, 138, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.02) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(30, 58, 138, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: rgba(30, 58, 138, 0.12);
  box-shadow: 0 12px 24px -12px rgba(30, 58, 138, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.25s ease;
  background: none;
  border: none;
  border-radius: 20px;
}

.faq-question:hover {
  color: var(--primary-light);
  background: rgba(30, 58, 138, 0.02);
}

.faq-question[aria-expanded="true"] {
  padding-bottom: 12px;
  color: var(--primary-dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.08) 0%,
    rgba(30, 58, 138, 0.04) 100%
  );
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover .faq-icon {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.15) 0%,
    rgba(30, 58, 138, 0.08) 100%
  );
  transform: scale(1.05);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--white);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer.open p {
  transform: translateY(0);
  opacity: 1;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
  padding-top: 4px;
  padding-bottom: 20px;
  border-left: 3px solid rgba(30, 58, 138, 0.2);
  padding-left: 16px;
  transform: translateY(-8px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

/* Staggered reveal animation for items */
.faq-item {
  opacity: 0;
  animation: faqSlideUp 0.5s ease forwards;
}

@keyframes faqSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item:nth-child(1) {
  animation-delay: 0.05s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.15s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.25s;
}
.faq-item:nth-child(6) {
  animation-delay: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer.open {
    padding-bottom: 20px;
  }

  .faq-answer p {
    font-size: 0.9rem;
    padding-left: 12px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-icon::before,
  .faq-icon::after {
    width: 12px;
  }
}

/* Optional: Add a subtle gradient border on active items */
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(30, 58, 138, 0.2);
  box-shadow: 0 16px 32px -16px rgba(30, 58, 138, 0.15);
}

/* Smooth scroll behavior for the section */
html {
  scroll-behavior: smooth;
}
/* ========== CONTACT ========== */
/* ========== CONTACT SECTION - PREMIUM REDESIGN ========== */

.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background orbs */
.contact-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(30, 58, 138, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.08),
    rgba(249, 115, 22, 0.08)
  );
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--accent) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 2 Column Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* Contact Cards Container */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card Design */
.contact-card {
  background: var(--white);
  border-radius: 24px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.06);
  border: 1px solid rgba(30, 58, 138, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient overlay on hover */
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.02),
    rgba(249, 115, 22, 0.02)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -12px rgba(30, 58, 138, 0.15);
  border-color: rgba(30, 58, 138, 0.12);
}

/* Icon Wrapper */
.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
  transform: scale(1.02);
}
.contact-card:hover .contact-card__icon i {
  transform: scale(1.1);
}

.contact-card__icon--blue {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.12),
    rgba(30, 58, 138, 0.05)
  );
  color: var(--primary);
}

.contact-card__icon--green {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.12),
    rgba(37, 211, 102, 0.05)
  );
  color: #25d366;
}

.contact-card__icon--orange {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.12),
    rgba(249, 115, 22, 0.05)
  );
  color: var(--accent);
}

/* Card Typography */
.contact-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-card__value {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin: 2px 0;
}

.contact-card__note {
  font-size: 0.75rem;
  color: var(--text-light);
}

.contact-card__arrow {
  margin-left: auto;
  color: #cbd5e1;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.contact-card:hover .contact-card__arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ========== MAP CARD - AWESOME REDESIGN ========== */
.contact-map {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 45px -12px rgba(30, 58, 138, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 250px;
}

.contact-map:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 55px -15px rgba(30, 58, 138, 0.45);
}

/* Map iframe styling */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  border: none;
  transition: transform 0.5s ease;
  filter: grayscale(0.1) contrast(1.05);
}

.contact-map:hover iframe {
  transform: scale(1.01);
}

/* Pulse animation on map corner */
@keyframes cornerPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.contact-map::before {
  animation: cornerPulse 3s ease-in-out infinite;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-card {
    padding: 18px 20px;
  }

  .contact-card__icon {
    width: 50px;
    height: 50px;
  }

  .contact-card__value {
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
  .section-tag {
    display: block;
    text-align: left;
    width: fit-content;
  }

  .section-title {
    font-size: 1.75rem;
    text-align: left;
  }

  .section-sub {
    font-size: 0.95rem;
    text-align: left;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-cards {
    gap: 16px;
  }

  .contact-card {
    padding: 16px 18px;
    gap: 14px;
  }

  .contact-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .contact-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .contact-card__value {
    font-size: 0.9rem;
  }

  .contact-card__note {
    font-size: 0.7rem;
  }

  .contact-map {
    min-height: 300px;
    border-radius: 24px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  .contact-map::after {
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 0.65rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-card {
    padding: 14px 16px;
  }

  .contact-card__icon {
    width: 44px;
    height: 44px;
  }

  .contact-card__value {
    font-size: 0.85rem;
  }

  .contact-map {
    min-height: 260px;
  }

  .contact-map iframe {
    min-height: 260px;
  }
}

/* Scroll Reveal Animation */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE AWESOMENESS (mobile-first refinements) ========== */
@media screen and (max-width: 992px) {
  .contact-section {
    padding: 90px 0;
  }
  .contact-grid {
    gap: 40px;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .contact-card {
    padding: 20px 22px;
  }
  .contact-card__value {
    font-size: 1rem;
  }
  .contact-card__icon {
    width: 52px;
    height: 52px;
  }
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-sub {
    font-size: 1rem;
  }
  .contact-card {
    padding: 18px 20px;
    gap: 16px;
  }
  .contact-card__value {
    font-size: 0.95rem;
  }
  .contact-card__icon {
    width: 48px;
    height: 48px;
  }
  .contact-map {
    min-height: 320px;
  }
  .map-placeholder::after {
    bottom: 16px;
    right: 16px;
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  .map-placeholder p {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-card {
    flex-wrap: wrap;
  }
  .contact-card__arrow {
    margin-left: auto;
    margin-top: 0;
  }
  .contact-card__value {
    font-size: 0.9rem;
  }
  .section-header {
    margin-bottom: 48px;
  }
  .contact-card__icon {
    width: 44px;
    height: 44px;
  }
  .contact-card__icon svg {
    width: 22px;
    height: 22px;
  }
  .map-placeholder::after {
    display: none; /* clean on extra small */
  }
}

/* reveal-up animation friendly (if you have scroll reveal — keep classes) */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* manual delay support */
.reveal-up {
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 40px 48px;
}

.footer__logo {
  margin-bottom: 16px;
  height: 70px;
  width: auto;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition-fast);
}
.social-icon:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__links-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
  position: relative;
  display: inline-block;
}
.footer__links ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}
.footer__links ul li a:hover {
  color: var(--white);
}
.footer__links ul li a:hover::after {
  width: 100%;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}
.footer__contact-item:hover {
  color: var(--white);
}
.footer__contact-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}
.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ========== STICKY WHATSAPP ========== */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 999;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.sticky-wa:hover {
  background: #1eb85a;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}
.sticky-wa__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* ========== DESKTOP ONLY / MOBILE ONLY ========== */
.desktop-only {
  display: flex;
}
.mobile-only {
  display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  /* Hero split */
  .hero__split {
    gap: 36px;
    padding: 70px 40px;
    grid-template-columns: 1fr 1fr;
  }
  .hero__img-frame {
    width: 100%px;
    height: 420px;
  }
  .hero__img-ring {
    width: 460px;
    height: 460px;
  }
  .hero__img-ring--2 {
    width: 370px;
    height: 370px;
  }
  .hero__float-card--rating {
    left: -20px;
  }
  .hero__float-card--jobs {
    right: -16px;
  }
  /* Other grids */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  /* Hero: stack vertically */
  .hero__split {
    grid-template-columns: 1fr;
    padding: 70px 24px 80px;
    text-align: center;
    gap: 52px;
  }
  .hero__left {
    max-width: 100%;
  }
  .hero__badge {
    display: flex !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: fit-content !important;
    align-self: flex-start !important;
  }
  .hero__sub {
    text-align: left;
  }
  .hero__ctas {
    justify-content: center;
  }

  .hero__right {
    justify-content: center;
  }
  .hero__img-frame {
    width: 100%;
    height: 360px;
    border-radius: 24px 24px 60px 24px;
  }
  .hero__img-ring {
    width: 380px;
    height: 380px;
  }
  .hero__img-ring--2 {
    width: 310px;
    height: 310px;
  }
  .hero__float-card--rating {
    left: -10px;
    top: 20px;
  }
  .hero__float-card--jobs {
    right: -10px;
    bottom: 30px;
  }
  .hero__float-card--exp {
    top: -10px;
    right: 0;
  }
  .hero__brush-stroke {
    bottom: 10px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stat-card:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stat-card:last-child,
  .stat-card:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hiw-steps {
    flex-direction: column;
    align-items: center;
  }
  .hiw-connector {
    width: 2px;
    height: 40px;
    flex: 0;
    margin: 0;
    background: linear-gradient(180deg, var(--primary), var(--accent));
  }
  .hiw-step {
    flex: none;
    width: 100%;
    max-width: 360px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  .container {
    padding: 0 20px;
  }

  /* Header */
  .header__nav {
    display: none;
  }
  .header__ctas.desktop-only {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }

  .urgency-slots {
    display: block;
    text-align: left;
    width: fit-content;
  }

  /* Hero mobile */
  .hero__split {
    padding: 40px 20px 70px;
    gap: 40px;
  }
  .hero__headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
    text-align: left;
  }
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .hero__img-frame {
    width: 100%;
    height: 320px;
  }
  .hero__img-ring {
    width: 320px;
    height: 320px;
  }
  .hero__img-ring--2 {
    width: 260px;
    height: 260px;
  }
  .hero__float-card {
    padding: 10px 14px;
    gap: 8px;
  }
  .hero__float-card--rating {
    left: 0;
    top: 10px;
  }
  .hero__float-card--jobs {
    right: 0;
    bottom: 20px;
  }
  .hero__float-card--exp {
    display: none;
  }
  .hero__brush-stroke {
    display: none;
  }

  /* Sections */
  .why-section,
  .services-section,
  .testimonials-section,
  .before-after-section,
  .urgency-section,
  .hiw-section,
  .faq-section,
  .contact-section,
  .stats-section,
  .offer-section
  .footer {
    padding: 40px 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .ba-slider {
    height: 280px;
  }
  .urgency-ctas {
    flex-direction: column;
    align-items: center;
  }
  .urgency-ctas .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
  .urgency-headline {
    text-align: left;
  }
  .urgency-sub {
    text-align: left;
  }

  .countdown {
    padding: 16px 20px;
    gap: 10px;
  }
  .countdown-num {
    font-size: 1.8rem;
    min-width: 48px;
  }
  .sticky-wa {
    padding: 14px 20px;
    right: 16px;
    bottom: 16px;
  }
  .footer__logo{
    margin-top: 40px;
  }
  .footer__bottom-inner {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .countdown {
    gap: 6px;
    padding: 12px 16px;
  }
  .countdown-num {
    font-size: 1.5rem;
    min-width: 40px;
  }
  .countdown-sep {
    font-size: 1.5rem;
  }
  .sticky-wa span {
    display: none;
  }
  .sticky-wa {
    padding: 16px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
  }
  .hero__float-card {
    display: none;
  }
}
