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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== LOADER ========== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(1) {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border-top-color: var(--primary);
  animation-duration: 1.2s;
}

.loader-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-right-color: #a78bfa;
  animation-duration: 1s;
  animation-direction: reverse;
}

.loader-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-bottom-color: #34d399;
  animation-duration: 0.8s;
}

.loader-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

.loader-text {
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #7c3aed, #34d399);
  width: 0%;
  z-index: 200;
  transition: width 0.1s;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

/* ========== CURSOR GLOW ========== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
}

/* ========== PARTICLES ========== */
.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 100;
  transition: all 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #ede9fe 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #a78bfa;
  bottom: -100px;
  left: -50px;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: #34d399;
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.typing-text {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cursor-blink {
  color: var(--primary);
  animation: blink 0.8s step-end infinite;
  font-weight: 300;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== MARQUEE ========== */
.marquee-strip {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 8px;
}

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

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ========== SECTION ========== */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 48px;
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  text-align: center;
}

.stat {
  padding: 24px 12px;
  background: var(--light);
  border-radius: 12px;
  transition: transform 0.3s;
}

.stat:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-suffix {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ========== WHY US ========== */
.why-us {
  padding: 100px 0;
  background: var(--light);
}

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

.why-card {
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.why-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.08);
  position: absolute;
  top: 16px;
  right: 24px;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ========== PRODUCTS ========== */
.services {
  padding: 100px 0;
}

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

.service-card {
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #7c3aed);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.product-tag {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-tag.coming-soon {
  background: #fef3c7;
  color: #d97706;
}

/* ========== TESTIMONIAL ========== */
.testimonial-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
}

.testimonial-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: -10px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: var(--light);
}

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.contact-form-wrap:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrap iframe {
  border: none;
  border-radius: 14px;
  width: 100%;
  min-height: 700px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--gray);
}

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

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s;
  background: #f8fafc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--white);
}

/* ========== FOOTER ========== */
.footer {
  padding: 32px 0;
  border-top: 1px solid #e2e8f0;
}

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

.footer p {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .cursor-glow { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

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

  .hero { min-height: auto; padding: 140px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-container { flex-direction: column; text-align: center; }
  .agents-grid { grid-template-columns: 1fr; }
  .agents-comparison { flex-direction: column; gap: 12px; }
  .comparison-vs { font-size: 0.9rem; }
  .featured-product { grid-template-columns: 1fr; text-align: center; }
  .featured-visual { display: none; }
  .contact-form-wrap { padding: 4px; }
  .contact-form-wrap iframe { min-height: 600px; }
}

/* ========== AI AGENTS SECTION ========== */
.agents-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.agents-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.agents-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.agents-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
  50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.6); }
}

.agents-section .section-title {
  color: var(--white);
}

.agents-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
}

.agent-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s;
  position: relative;
  backdrop-filter: blur(10px);
}

.agent-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.agent-card.featured {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.08);
}

.agent-card.featured:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
}

.agent-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agent-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.agent-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.agent-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  animation: agent-pulse 3s ease-in-out infinite;
}

@keyframes agent-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.agent-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.agent-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.agent-features {
  list-style: none;
  margin-bottom: 24px;
}

.agent-features li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.agent-features li:last-child {
  border-bottom: none;
}

.agent-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.price-period {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.agents-cta {
  text-align: center;
  position: relative;
}

.agents-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.comparison-item {
  text-align: center;
}

.comparison-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.comparison-cost {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: line-through;
}

.comparison-cost.highlight {
  color: #34d399;
  text-decoration: none;
  font-size: 1.5rem;
}

.comparison-vs {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* ========== FEATURED PRODUCT ========== */
.featured-product {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.featured-product::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.featured-content {
  position: relative;
}

.featured-badge {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.featured-content h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.featured-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 20px;
}

.featured-features {
  list-style: none;
  margin-bottom: 24px;
}

.featured-features li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding: 5px 0;
}

.featured-visual {
  text-align: center;
  position: relative;
}

.featured-icon-large {
  font-size: 5rem;
  margin-bottom: 12px;
  animation: float 3s ease-in-out infinite;
}

.featured-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-style: italic;
}

.agents-sub-title {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  margin-bottom: 32px;
}

/* ========== CONTACT FORM LEAD CAPTURE ========== */
.lead-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 12px;
}

.lead-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.lead-note a:hover {
  text-decoration: underline;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 12px;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
