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

:root {
  --primary: #0878ed;
  --primary-dark: #005fca;
  --primary-light: #eaf6ff;
  --secondary: #6c5ce7;
  --success: #43e97b;
  --danger: #f5576c;
  --warning: #f9ca24;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 4px 20px rgba(21, 61, 104, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f0f7ff;
  color: #142033;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================
   GLASSMORPHISM
   ============================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-tag {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
}

/* ============================================
   RAINBOW EFFECTS
   ============================================ */
.rainbow-text {
  background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe, #43e97b, #f093fb);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowMove 4s ease-in-out infinite;
}

@keyframes rainbowMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.rainbow-btn {
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.rainbow-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe, #43e97b, #f093fb);
  background-size: 300% 300%;
  border-radius: inherit;
  animation: rainbowBorder 4s ease-in-out infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}

.rainbow-btn:hover::before {
  opacity: 1;
}

.rainbow-btn::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: inherit;
  z-index: -1;
}

.rainbow-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245, 87, 108, 0.3), 0 0 60px rgba(79, 172, 254, 0.15);
}

.rainbow-pill {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2), rgba(79, 172, 254, 0.2), rgba(67, 233, 123, 0.2)) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rainbow-bg {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.3), rgba(79, 172, 254, 0.3), rgba(67, 233, 123, 0.3)) !important;
  background-size: 300% 300% !important;
  animation: rainbowBg 6s ease-in-out infinite !important;
  border: 1px solid var(--glass-border) !important;
}

@keyframes rainbowBg {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes rainbowBorder {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ============================================
   LIQUID GLASS
   ============================================ */
.liquid-glass {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  animation: liquidGlass 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes liquidGlass {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(5%, -5%) rotate(3deg) scale(1.05);
    opacity: 0.7;
  }
  50% {
    transform: translate(-3%, 8%) rotate(-2deg) scale(0.95);
    opacity: 0.5;
  }
  75% {
    transform: translate(8%, 3%) rotate(4deg) scale(1.02);
    opacity: 0.6;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes floatReverse {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(-3deg);
  }
}

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

@keyframes drift {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    transform: translate(var(--tx), var(--ty));
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  height: 74px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeInDown 0.6s ease;
}

.brand {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.brand span {
  color: var(--primary);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 14px;
}

.topbar nav a {
  position: relative;
  transition: color var(--transition);
  padding: 6px 0;
}

.topbar nav a:not(.nav-cta):hover {
  color: var(--primary);
}

.topbar nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(135deg, #f093fb, #f5576c, #4facfe, #43e97b);
  background-size: 300% 300%;
  animation: rainbowBorder 4s ease-in-out infinite;
  transition: width var(--transition);
}

.topbar nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(8, 120, 237, 0.25);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(8, 120, 237, 0.35);
  color: #fff !important;
}

.nav-cta::after,
.nav-cta::before {
  display: none !important;
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 26px;
  cursor: pointer;
  transition: transform var(--transition);
  padding: 4px 8px;
  color: #142033;
}

.menu-btn:hover {
  transform: rotate(90deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 640px;
  padding: 80px 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #72d8ff 0%, #eaf8ff 40%, #f0f7ff 70%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  top: -80px;
  right: -60px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #4facfe, #43e97b);
  bottom: -60px;
  left: -70px;
  animation: floatReverse 10s ease-in-out infinite;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #f093fb, #4facfe);
  top: 25%;
  left: 5%;
  animation: float 12s ease-in-out infinite;
  animation-delay: -2s;
}

.orb-4 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #f5576c, #43e97b);
  bottom: 15%;
  right: 3%;
  animation: floatReverse 14s ease-in-out infinite;
  animation-delay: -4s;
}

.orb-5 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4facfe, #f093fb);
  top: 60%;
  left: 50%;
  animation: float 9s ease-in-out infinite;
  animation-delay: -1s;
}

.bg-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(8, 120, 237, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

.bg-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  animation: drift 8s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(79, 172, 254, 0.3);
  background: var(--primary);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 48px 56px;
  border-radius: var(--radius-lg);
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 99px;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge i {
  font-size: 14px;
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero h1 span {
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.2), transparent);
  background-size: 200% 100%;
  border-radius: 4px;
  z-index: -1;
  animation: shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 19px;
  color: #536176;
  max-width: 640px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  padding: 14px 30px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 52px;
}

.btn i {
  font-size: 16px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 25px rgba(8, 120, 237, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(8, 120, 237, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-color: var(--glass-border);
  color: var(--primary);
}

.btn-secondary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
}

.full-width {
  width: 100%;
}

.hero-trust {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  color: #4f6075;
  font-size: 13px;
  font-weight: 600;
}

.trust-badge {
  padding: 8px 18px;
  border-radius: 20px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-badge i {
  color: var(--primary);
}

.trust-badge:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 0 7%;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  animation: countUp 0.6s ease;
  display: block;
}

.stat-label {
  display: block;
  color: #69798e;
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

.stat-icon {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 32px;
  opacity: 0.06;
  color: var(--primary);
}

/* ============================================
   SECTION HEADER
   ============================================ */
section {
  padding: 80px 7%;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 40px;
  line-height: 1.1;
  margin: 8px 0 12px;
  letter-spacing: -1px;
}

.section-header p {
  color: #68788c;
  font-size: 17px;
}

.section-header.light h2 {
  color: #fff;
}

.section-header.light p {
  color: #a9bdd2;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #f093fb, #4facfe);
  opacity: 0.4;
}

.eyebrow::before {
  right: calc(100% + 14px);
}

.eyebrow::after {
  left: calc(100% + 14px);
}

/* ============================================
   SERVICES
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f093fb, #f5576c, #4facfe, #43e97b);
  background-size: 300% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  animation: rainbowBorder 4s ease-in-out infinite;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 172, 254, 0.25);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(79, 172, 254, 0.06);
}

.service-icon {
  font-size: 38px;
  margin-bottom: 10px;
  display: inline-block;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-6deg);
}

.service-card h3 {
  font-size: 17px;
  margin: 12px 0 7px;
}

.service-card p {
  font-size: 13px;
  color: #6a788a;
  line-height: 1.5;
}

.service-card button {
  margin-top: 18px;
  border: 0;
  background: rgba(8, 120, 237, 0.08);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
}

.service-card button:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  background: rgba(7, 26, 50, 0.95);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.how-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.06), transparent);
  animation: float 20s ease-in-out infinite;
}

.how-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.how-step {
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative;
}

.how-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(79, 172, 254, 0.25) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.step-number-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.step-number {
  font-size: 36px;
  font-weight: 900;
  color: #66d5ff;
  line-height: 1;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #66d5ff, rgba(102, 213, 255, 0.1));
  margin-left: 12px;
}

.step-icon-wrapper {
  margin-bottom: 16px;
}

.step-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 213, 255, 0.15), rgba(79, 172, 254, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #66d5ff;
  transition: all var(--transition);
}

.how-step:hover .step-icon-circle {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(135deg, rgba(102, 213, 255, 0.25), rgba(79, 172, 254, 0.25));
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  color: #afc1d4;
  font-size: 14px;
  margin-bottom: 12px;
}

.step-features {
  list-style: none;
  padding: 0;
}

.step-features li {
  color: #afc1d4;
  font-size: 13px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-features li i {
  color: #43e97b;
  font-size: 12px;
}

.process-flow {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 40px 0 30px;
  position: relative;
  z-index: 1;
}

.flow-line {
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, #66d5ff, rgba(102, 213, 255, 0.2));
  position: absolute;
}

.flow-dots {
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.flow-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(102, 213, 255, 0.3);
  border: 2px solid rgba(102, 213, 255, 0.2);
  transition: all var(--transition);
}

.flow-dot.active {
  background: #66d5ff;
  border-color: #66d5ff;
  box-shadow: 0 0 20px rgba(102, 213, 255, 0.4);
}

.how-cta {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ============================================
   REQUEST
   ============================================ */
.request-section {
  background: rgba(238, 248, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.request-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 24px;
}

.request-wrapper form,
.request-sidebar {
  padding: 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.request-wrapper form:hover,
.request-sidebar:hover {
  box-shadow: var(--shadow-md);
}

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

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  color: #142033;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-field label .required {
  color: #f5576c;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  font: inherit;
  outline: none;
  transition: all var(--transition);
  font-size: 14px;
  color: #142033;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(8, 120, 237, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

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

.char-count {
  text-align: right;
  font-size: 12px;
  color: #74849a;
  margin-top: 4px;
}

.form-note {
  font-size: 12px;
  color: #74849a;
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.request-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.request-sidebar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.sidebar-icon {
  font-size: 48px;
  animation: float 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  color: #fff;
}

.request-sidebar h3 {
  font-size: 22px;
  margin: 12px 0 8px;
  position: relative;
  z-index: 1;
}

.request-sidebar p {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.sidebar-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
  position: relative;
  z-index: 1;
}

.sidebar-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.sidebar-features span i {
  color: #43e97b;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: #fff;
  color: var(--primary);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
  border: none;
  justify-content: center;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-text {
  color: #64748a;
  max-width: 600px;
  margin: 12px 0;
  font-size: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
}

.about-stat {
  text-align: center;
}

.about-stat .stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  display: block;
}

.about-stat .stat-label {
  font-size: 13px;
  color: #69798e;
  font-weight: 600;
}

.about-features {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-content h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.feature-content p {
  color: #718095;
  font-size: 13px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(234, 246, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 60px 7%;
  margin: -80px -7% 0;
  border-radius: 0;
}

.contact-info p {
  color: #66768a;
  font-size: 17px;
  margin-top: 8px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-item {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}

.contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-item i {
  font-size: 22px;
  color: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 120, 237, 0.08);
  border-radius: 50%;
}

.contact-item strong {
  display: block;
  font-size: 13px;
  color: #69798e;
  font-weight: 600;
}

.contact-item span {
  font-size: 15px;
  font-weight: 700;
}

.contact-card {
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-card p {
  color: #66768a;
  margin-bottom: 20px;
}

.contact-card-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: rgba(6, 23, 44, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #b9c8d8;
  padding: 30px 7%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand b {
  display: block;
  color: #fff;
  font-size: 18px;
}

.footer-brand span {
  font-size: 12px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 13px;
}

/* ============================================
   FLOAT WHATSAPP
   ============================================ */
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #19c86a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(25, 200, 106, 0.35);
  transition: all var(--transition);
  animation: pulse 2s ease-in-out infinite;
  border: none;
}

.float-wa:hover {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 12px 40px rgba(25, 200, 106, 0.45);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-container {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .request-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 5%;
    margin: -60px -5% 0;
  }
  .hero-content {
    padding: 36px 32px;
  }
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    height: auto;
    padding: 14px 5%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu-btn {
    display: block;
  }

  .topbar nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 4px;
    gap: 8px;
  }

  .topbar nav.open {
    display: flex;
  }

  .topbar nav a {
    padding: 10px 14px;
    border-radius: 8px;
  }

  .topbar nav a:not(.nav-cta):hover {
    background: rgba(8, 120, 237, 0.06);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 22px !important;
  }

  .hero,
  section {
    padding: 60px 5%;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-content {
    padding: 28px 20px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .stat-item {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 32px;
  }

  .service-grid,
  .how-container {
    grid-template-columns: 1fr;
  }

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

  .section-header h2 {
    font-size: 32px;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 16px;
  }

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

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-wrapper {
    padding: 30px 5%;
    margin: -40px -5% 0;
  }

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

  .contact-card-actions {
    flex-direction: column;
    width: 100%;
  }

  .contact-card-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-stats {
    gap: 24px;
  }

  .float-wa {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }

  .process-flow {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
  }

  .stat-number {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .request-wrapper form,
  .request-sidebar {
    padding: 20px 16px;
  }

  .how-step {
    padding: 24px 20px;
  }

  .step-number {
    font-size: 28px;
  }

  .contact-item {
    padding: 12px 16px;
  }

  .contact-item i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}