/* ==========================================================================
   BNA Orbit - Figma-Style Digital Marketing Agency Landing Page
   Design System: Neo-Luminescent Dark / Electric Cyan & Orbit Orange
   ========================================================================== */

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

:root {
  /* Brand Colors */
  --bg-dark: #060b18;
  --bg-darker: #030712;
  --bg-card: #0d152b;
  --bg-card-hover: #131f3d;
  --bg-card-glass: rgba(13, 21, 43, 0.72);
  --bg-glass-border: rgba(255, 255, 255, 0.08);
  --bg-glass-border-hover: rgba(0, 153, 255, 0.35);

  /* Primary Accent: Electric Cyan & Royal Blue */
  --primary: #0099ff;
  --primary-glow: rgba(0, 153, 255, 0.4);
  --primary-gradient: linear-gradient(135deg, #00d2ff 0%, #0066ff 100%);
  --cyan-accent: #00e5ff;

  /* Secondary Accent: Orbit Sun Orange */
  --orange: #ff7a00;
  --orange-light: #ff9e2c;
  --orange-glow: rgba(255, 122, 0, 0.35);
  --orange-gradient: linear-gradient(135deg, #ff9e2c 0%, #ff5500 100%);

  /* Neutral Text Colors */
  --text-white: #ffffff;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* State Colors */
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.3);
  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;

  /* Layout & Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows & Glows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 35px rgba(0, 153, 255, 0.28);
  --shadow-glow-orange: 0 0 35px rgba(255, 122, 0, 0.22);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Orbs */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  will-change: transform;
  animation: floatAmbient 20s infinite alternate ease-in-out;
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.55) 0%, rgba(0, 102, 255, 0) 70%);
  top: -10%;
  right: -5%;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.45) 0%, rgba(255, 85, 0, 0) 70%);
  bottom: 20%;
  left: -10%;
  animation-duration: 25s;
  animation-delay: -5s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.35) 0%, rgba(0, 153, 255, 0) 70%);
  top: 45%;
  right: 15%;
  animation-duration: 18s;
  animation-delay: -10s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 70%, transparent 100%);
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #ffffff 10%, #60a5fa 60%, #0099ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #ffc078 0%, #ff9e2c 50%, #ff7a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-orbit {
  background: linear-gradient(135deg, #00e5ff 0%, #0099ff 45%, #ff9e2c 85%, #ff7a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badges & Pills */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 153, 255, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan-accent);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.badge-pill.orange {
  background: rgba(255, 122, 0, 0.1);
  border-color: rgba(255, 122, 0, 0.3);
  color: var(--orange-light);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cyan-accent);
  box-shadow: 0 0 10px var(--cyan-accent);
  animation: pulseDot 2s infinite ease-in-out;
}

.badge-dot.orange {
  background-color: var(--orange);
  box-shadow: 0 0 10px var(--orange);
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-glow-blue);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 153, 255, 0.55);
}

.btn-orange {
  background: var(--orange-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-glow-orange);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 122, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--bg-glass-border);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--bg-glass-border-hover);
  transform: translateY(-2px);
  color: var(--cyan-accent);
}

.btn-whatsapp-solid {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.55);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
  font-weight: 700;
}

/* ==========================================================================
   Header & Figma-Style Navigation Bar
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.header-wrapper.scrolled {
  padding: 10px 0;
  background: rgba(6, 11, 24, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 21, 43, 0.7);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
}

.navbar:hover {
  border-color: rgba(0, 153, 255, 0.25);
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 153, 255, 0.35);
}

.brand-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav-phone svg {
  color: var(--orange);
  width: 16px;
  height: 16px;
}

.nav-phone:hover {
  background: rgba(255, 122, 0, 0.1);
  border-color: rgba(255, 122, 0, 0.3);
  color: var(--orange-light);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: rgba(6, 11, 24, 0.96);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--bg-glass-border);
  z-index: 1100;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-headline {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtext {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

.hero-subtext strong {
  color: var(--text-light);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-glass-border);
  margin-top: 12px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
}

.trust-num span {
  color: var(--cyan-accent);
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual / Interactive Orbit Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-graphic-container {
  width: 100%;
  max-width: 480px;
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring-outer {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 153, 255, 0.25);
  animation: rotateOrbit 30s linear infinite;
}

.orbit-ring-middle {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 0, 0.25);
  animation: rotateOrbitReverse 22s linear infinite;
}

.orbit-ring-inner {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.35);
}

@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateOrbitReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Orbit Center Core */
.orbit-core-card {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #0d1a38 0%, #060b18 90%);
  border: 2px solid rgba(0, 153, 255, 0.4);
  box-shadow: 0 0 50px rgba(0, 153, 255, 0.35), inset 0 0 30px rgba(0, 153, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  position: relative;
}

.core-orbit-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 10px var(--orange));
}

.core-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.core-sub {
  font-size: 0.72rem;
  color: var(--cyan-accent);
  font-weight: 600;
  text-transform: uppercase;
}

/* Orbit Floating Metric Cards */
.orbit-floating-card {
  position: absolute;
  background: rgba(13, 21, 43, 0.85);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transition: transform var(--transition-fast);
  animation: floatCard 6s infinite ease-in-out;
}

.orbit-floating-card:hover {
  transform: scale(1.05);
  border-color: rgba(0, 153, 255, 0.4);
}

.card-roas {
  top: 15px;
  right: -10px;
  border-left: 3px solid var(--primary);
  animation-delay: 0s;
}

.card-leads {
  bottom: 25px;
  left: -20px;
  border-left: 3px solid var(--orange);
  animation-delay: -2s;
}

.card-quality {
  bottom: -15px;
  right: 25px;
  border-left: 3px solid var(--success);
  animation-delay: -4s;
}

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

.card-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
}

.card-icon-box.blue { color: var(--cyan-accent); background: rgba(0, 153, 255, 0.15); }
.card-icon-box.orange { color: var(--orange-light); background: rgba(255, 122, 0, 0.15); }
.card-icon-box.green { color: var(--success); background: rgba(16, 185, 129, 0.15); }

.card-info {
  display: flex;
  flex-direction: column;
}

.card-info .metric-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
}

.card-info .metric-name {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Highlight Strength Banner: "Quality and Precision & Support is our Strength"
   ========================================================================== */
.strength-section {
  padding: 80px 0;
  position: relative;
}

.strength-hero-box {
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 153, 255, 0.18) 0%, rgba(13, 21, 43, 0.7) 60%, rgba(6, 11, 24, 0.9) 100%);
  border: 1px solid rgba(0, 153, 255, 0.28);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.strength-hero-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-accent), var(--orange), transparent);
}

.strength-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
}

.strength-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-top: 14px;
  margin-bottom: 16px;
}

.strength-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.strength-card {
  background: rgba(13, 21, 43, 0.6);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.strength-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 153, 255, 0.45);
  box-shadow: 0 15px 35px rgba(0, 153, 255, 0.15);
  background: rgba(19, 31, 61, 0.85);
}

.strength-card.orange-theme:hover {
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.15);
}

.strength-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 153, 255, 0.12);
  border: 1px solid rgba(0, 153, 255, 0.25);
  color: var(--cyan-accent);
}

.strength-card.orange-theme .strength-icon-wrap {
  background: rgba(255, 122, 0, 0.12);
  border-color: rgba(255, 122, 0, 0.25);
  color: var(--orange-light);
}

.strength-card.green-theme .strength-icon-wrap {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--success);
}

.strength-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.strength-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.strength-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.strength-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.strength-list li svg {
  color: var(--cyan-accent);
  flex-shrink: 0;
}

.strength-card.orange-theme .strength-list li svg {
  color: var(--orange);
}

.strength-card.green-theme .strength-list li svg {
  color: var(--success);
}

/* ==========================================================================
   Services Section (6 Core Services)
   ========================================================================== */
.services-section {
  padding: 100px 0;
  position: relative;
}

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

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 14px;
}

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

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

.service-card {
  background: var(--bg-card-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.4), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 153, 255, 0.15);
  border-color: rgba(0, 153, 255, 0.35);
}

.service-card:hover::after {
  opacity: 1;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 153, 255, 0.12);
  border: 1px solid rgba(0, 153, 255, 0.25);
  color: var(--cyan-accent);
}

.service-card.orange-accent .service-icon {
  background: rgba(255, 122, 0, 0.12);
  border-color: rgba(255, 122, 0, 0.25);
  color: var(--orange-light);
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.service-features li svg {
  color: var(--cyan-accent);
  flex-shrink: 0;
}

.service-card.orange-accent .service-features li svg {
  color: var(--orange);
}

.service-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan-accent);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.service-card.orange-accent .service-btn {
  color: var(--orange-light);
}

.service-btn:hover {
  gap: 12px;
}

/* ==========================================================================
   Interactive Marketing ROI Calculator (Figma-Style Tool)
   ========================================================================== */
.calculator-section {
  padding: 80px 0;
  position: relative;
}

.calc-box {
  background: linear-gradient(135deg, rgba(13, 21, 43, 0.9) 0%, rgba(6, 11, 24, 0.95) 100%);
  border: 1px solid rgba(0, 153, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.calc-header h2 {
  font-size: 2.2rem;
  margin-top: 10px;
  margin-bottom: 12px;
}

.calc-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.calc-control-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.calc-val-badge {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cyan-accent);
  background: rgba(0, 153, 255, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 153, 255, 0.3);
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: background var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-gradient);
  cursor: pointer;
  box-shadow: 0 0 15px var(--primary);
  border: 2px solid #ffffff;
  transition: transform var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-pill {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bg-glass-border);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.service-pill:hover, .service-pill.active {
  background: rgba(0, 153, 255, 0.2);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 0 12px rgba(0, 153, 255, 0.25);
  transform: translateY(-1px);
}

.slider-ticks-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 6px;
}

/* Service Budget Output Dashboard */
.calc-results-card {
  background: linear-gradient(135deg, rgba(13, 21, 43, 0.95) 0%, rgba(8, 14, 30, 0.98) 100%);
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 153, 255, 0.08);
}

.service-plan-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.service-tier-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan-accent);
  background: rgba(0, 153, 255, 0.12);
  border: 1px solid rgba(0, 153, 255, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.service-package-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.service-package-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange-light);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.service-package-price .price-period {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Deliverables checklist box */
.deliverables-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.deliverables-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.deliverables-list li {
  font-size: 0.88rem;
  color: var(--text-white);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.del-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  color: var(--cyan-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-meta-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.meta-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.meta-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
}

.calc-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* ==========================================================================
   Testimonials Section (Scrolling Marquee from Native Clients)
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollMarquee 38s linear infinite;
}

.marquee-track.reverse {
  animation: scrollMarqueeReverse 42s linear infinite;
  margin-top: 24px;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollMarqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--bg-card-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: rgba(0, 153, 255, 0.4);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.test-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

.test-avatar.orange-border {
  border-color: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}

.test-initials-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.22) 0%, rgba(0, 229, 255, 0.12) 100%);
  border: 1.5px solid var(--cyan-accent);
  box-shadow: 0 0 14px var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.test-initials-badge.orange-theme {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.22) 0%, rgba(255, 158, 44, 0.12) 100%);
  border-color: var(--orange);
  box-shadow: 0 0 14px var(--orange-glow);
  color: #ffffff;
}

.test-user-info {
  display: flex;
  flex-direction: column;
}

.test-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  color: var(--cyan-accent);
  display: inline-flex;
}

.test-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.test-stars {
  color: #ffb800;
  display: flex;
  gap: 2px;
  font-size: 0.85rem;
}

.test-quote {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: normal;
}

.test-metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 153, 255, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan-accent);
  margin-top: 6px;
}

.test-metric-badge.orange {
  background: rgba(255, 122, 0, 0.1);
  border-color: rgba(255, 122, 0, 0.2);
  color: var(--orange-light);
}

/* ==========================================================================
   Contact Us Section ("Get In Touch Today")
   ========================================================================== */
.contact-section {
  padding: 100px 0 80px;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--bg-card-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-xl);
  padding: 44px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-title {
  font-size: 2.2rem;
  margin-top: 10px;
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bg-glass-border);
  transition: all var(--transition-fast);
}

.channel-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 153, 255, 0.35);
  transform: translateX(4px);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 153, 255, 0.12);
  color: var(--cyan-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon.orange {
  background: rgba(255, 122, 0, 0.12);
  color: var(--orange-light);
}

.channel-icon.green {
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp-green);
}

.channel-details {
  display: flex;
  flex-direction: column;
}

.channel-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.channel-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.4;
}

/* Contact Form Card */
.contact-form-card {
  background: linear-gradient(135deg, rgba(13, 21, 43, 0.9) 0%, rgba(6, 11, 24, 0.95) 100%);
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 44px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.form-header h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: rgba(0, 153, 255, 0.06);
  box-shadow: 0 0 15px rgba(0, 153, 255, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 95px;
}

/* ==========================================================================
   WhatsApp Floating Chatbot Widget
   ========================================================================== */
.whatsapp-widget-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-trigger-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6);
  transition: all var(--transition-normal);
  position: relative;
  animation: pulseWhatsapp 2.5s infinite;
}

.whatsapp-trigger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-notification-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: #ff3b30;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chatbot Modal Box */
.whatsapp-chat-modal {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #0d1527;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: slideUpChat 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  backdrop-filter: blur(20px);
}

.whatsapp-chat-modal.open {
  display: flex;
}

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

.chat-modal-header {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.chat-agent-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.chat-agent-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.chat-agent-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #075e54;
}

.chat-agent-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.chat-agent-details span {
  font-size: 0.75rem;
  opacity: 0.9;
}

.chat-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.chat-close-btn:hover {
  opacity: 1;
}

.chat-modal-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #090e1c;
  max-height: 340px;
  overflow-y: auto;
}

.chat-bubble {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 88%;
}

.chat-bubble.bot {
  background: #162344;
  color: var(--text-light);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  align-self: flex-start;
}

.chat-bubble.user {
  background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  box-shadow: 0 4px 14px rgba(0, 153, 255, 0.3);
}

.chat-wa-direct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 8px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.chat-wa-direct-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2bf075 0%, #16a08f 100%);
}

.chat-bubble.time {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 4px;
  display: block;
  text-align: right;
}

.chat-quick-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.quick-option-btn {
  background: rgba(0, 153, 255, 0.12);
  border: 1px solid rgba(0, 153, 255, 0.25);
  color: var(--cyan-accent);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-option-btn:hover {
  background: rgba(0, 153, 255, 0.25);
  border-color: var(--primary);
  transform: translateX(4px);
}

.chat-modal-footer {
  padding: 12px 14px;
  background: #0d1527;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.chat-send-btn:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--bg-glass-border);
  padding: 70px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-white);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--cyan-accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Modals & Toast Notifications
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-box {
  background: #0d1527;
  border: 1px solid rgba(0, 153, 255, 0.35);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  padding: 38px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.toast-notification {
  display: none !important; /* Removed unnecessary bottom button for clean, frictionless experience across all devices */
}

/* ==========================================================================
   Comprehensive Responsive Breakpoints (Mobile, Tablet & Desktop)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .contact-grid, .calc-box {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .services-grid, .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-visual {
    order: -1;
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-phone {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .services-grid, .strength-grid {
    grid-template-columns: 1fr;
  }
  .calc-box, .strength-hero-box, .contact-info-card, .contact-form-card {
    padding: 24px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-trust-badges {
    flex-wrap: wrap;
    gap: 14px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .service-meta-grid {
    grid-template-columns: 1fr;
  }
  .service-pills {
    gap: 6px;
  }
  .service-pill {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
  .calc-results-card {
    padding: 24px 18px;
  }
  .service-package-price {
    font-size: 1.7rem;
  }
  .modal-box {
    padding: 28px 18px;
    width: 95%;
  }
  .whatsapp-widget-container {
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-trigger-btn {
    width: 56px;
    height: 56px;
  }
  .whatsapp-chat-modal {
    width: calc(100vw - 36px);
    max-width: 340px;
    bottom: 74px;
    right: 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .calc-left h2, .section-header h2 {
    font-size: 1.8rem;
  }
  .slider-ticks-row {
    flex-direction: column;
    gap: 4px;
  }
  .deliverables-list li {
    font-size: 0.84rem;
  }
}
