/* html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
} */

:root {
  --primary: #0f172a;
  /* Navy */
  --accent: #0ea5e9;
  /* Tsamma Blue */
  --whatsapp: #25D366;
  /* WhatsApp Green */
  --whatsapp-dark: #075E54;
  --bg-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  --glass: rgba(255, 255, 255, 0.85);
  --border: rgba(255, 255, 255, 0.6);
  --text-main: #334155;
  --light-blue: #e0f2fe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  overflow-x: hidden;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo:hover {
  color: var(--primary);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn) {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* --- Badges & Tags --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--whatsapp);
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.section-header.light h2 {
  color: white;
}

.section-header.light p {
  color: rgba(255,255,255,0.8);
}

.section-header.light .section-tag {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero h1 span {
  color: var(--whatsapp);
}

.hero p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
}

/* Visual Container */
.visual-container {
  flex: 1;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.particle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
}

.chat-notification {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  width: 280px;
  border-left: 5px solid var(--whatsapp);
  transition: all 0.3s ease;
  opacity: 1;
}

.chat-notification:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.chat-1 { top: 15%; right: 10%; }
.chat-2 { top: 40%; left: 0%; }
.chat-3 { bottom: 25%; right: 5%; }
.chat-4 { bottom: 45%; left: 5%; }

.chat-icon {
  font-size: 24px;
  color: var(--whatsapp);
}

.chat-text h4 {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 3px;
}

.chat-text p {
  font-size: 0.8rem;
  color: #64748b;
}

/* --- Journey Section --- */
.journey-section {
  padding: 6rem 10%;
  background: white;
  position: relative;
}

.journey-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 30px;
  transform: none;
  width: 4px;
  height: 100%;
  background: #e2e8f0;
  border-radius: 2px;
}

.timeline-progress {
  position: absolute;
  left: 30px;
  transform: none;
  width: 4px;
  height: 0%;
  background: linear-gradient(to bottom, var(--whatsapp), var(--accent));
  border-radius: 2px;
  transition: height 0.3s ease;
}

.journey-step {
  position: relative;
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.journey-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-indicator {
  position: absolute;
  left: 6px;
  transform: none;
  z-index: 10;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
  z-index: 2;
}

.step-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: step-pulse 2s infinite;
  z-index: 1;
}

@keyframes step-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.step-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 20px 0 80px;
  margin-left: 20px;
}

.step-content.reverse {
  flex-direction: row-reverse;
}

.step-info {
  flex: 1;
}

.step-info h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.step-info p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-features {
  list-style: none;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-main);
}

.step-features i {
  color: var(--whatsapp);
  font-size: 0.9rem;
}

/* Phone Frame Styles */
.step-phone {
  flex: 0 0 320px;
}

.phone-frame {
  width: 280px;
  background: #111;
  border-radius: 35px;
  padding: 10px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 25px;
  background: #111;
  border-radius: 0 0 15px 15px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-header-wa {
  background: var(--whatsapp-dark);
  padding: 35px 15px 15px;
  border-radius: 25px 25px 0 0;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.wa-avatar {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-contact div {
  display: flex;
  flex-direction: column;
}

.wa-contact strong {
  font-size: 0.9rem;
}

.wa-contact span {
  font-size: 0.7rem;
  opacity: 0.8;
}

.phone-chat {
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8c4be' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 15px 10px;
  height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-date {
  text-align: center;
  font-size: 0.7rem;
  background: rgba(225, 218, 208, 0.9);
  padding: 5px 12px;
  border-radius: 8px;
  color: #54656f;
  margin: 0 auto 10px;
}

.msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.msg-in {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.msg-out {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.msg-time {
  font-size: 0.65rem;
  color: #667781;
  text-align: right;
  margin-top: 4px;
}

/* WhatsApp Buttons */
.wa-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 5px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.wa-buttons.visible {
  opacity: 1;
  transform: translateY(0);
}

.wa-btn {
  flex: 1;
  min-width: 80px;
  padding: 10px;
  background: white;
  border: 1px solid #00a884;
  border-radius: 8px;
  color: #00a884;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa-btn:hover {
  background: #00a884;
  color: white;
}

.wa-btn-accept { border-color: var(--whatsapp); color: var(--whatsapp); }
.wa-btn-decline { border-color: #ef4444; color: #ef4444; }
.wa-btn-reschedule { border-color: var(--accent); color: var(--accent); }

/* WhatsApp Form */
.wa-form {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.wa-form.visible {
  opacity: 1;
  transform: translateY(0);
}

.wa-form-header {
  background: var(--whatsapp-dark);
  color: white;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.wa-form-field {
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}

.wa-form-field label {
  display: block;
  font-size: 0.65rem;
  color: #667781;
  margin-bottom: 3px;
}

.wa-form-field input {
  width: 100%;
  border: none;
  font-size: 0.8rem;
  color: var(--primary);
  background: transparent;
}

.wa-form-submit {
  width: 100%;
  padding: 12px;
  background: var(--whatsapp);
  color: white;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Interview Card */
.interview-card {
  background: #f0f2f5;
  border-radius: 8px;
  overflow: hidden;
  margin: 5px 0;
}

.interview-header {
  background: var(--accent);
  color: white;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.interview-body {
  padding: 10px;
}

.interview-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.75rem;
  color: #333;
}

.interview-row i {
  color: var(--accent);
  width: 16px;
}

/* Confirmation Card */
.confirmation-card {
  background: linear-gradient(135deg, #dcf8c6, #b8f0b8);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.confirm-icon {
  font-size: 2rem;
  color: var(--whatsapp);
  margin-bottom: 8px;
}

.confirm-title {
  font-weight: 700;
  color: var(--whatsapp-dark);
  margin-bottom: 8px;
}

.confirm-details {
  font-size: 0.75rem;
  color: #333;
}

.confirm-details p {
  margin: 3px 0;
}

.confirm-map {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 8px 15px;
  background: var(--accent);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  text-decoration: none;
}

/* Success Card */
.success-card {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.success-card i {
  font-size: 2rem;
  color: #d97706;
  margin-bottom: 8px;
}

.success-card p {
  font-size: 0.8rem;
  color: #333;
  margin: 3px 0;
}

.phone-input {
  background: #f0f2f5;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0 0 25px 25px;
}

.phone-input input {
  flex: 1;
  border: none;
  background: white;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.phone-input i {
  color: #54656f;
}

/* --- Talent Pools Section --- */
.pools-section {
  padding: 6rem 10%;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.pools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(37, 211, 102, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 40%);
}

.pools-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.pool-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  opacity: 1;
}

.pool-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}

.pool-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.private-pool .pool-icon {
  background: linear-gradient(135deg, var(--whatsapp), #20bd5a);
  color: white;
}

.public-pool .pool-icon {
  background: linear-gradient(135deg, var(--accent), #38bdf8);
  color: white;
}

.pool-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pool-card > p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pool-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pool-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pool-features li:last-child {
  border-bottom: none;
}

.pool-features i {
  color: var(--whatsapp);
}

.pool-stats {
  display: flex;
  gap: 2rem;
}

.pool-stat {
  display: flex;
  flex-direction: column;
}

.pool-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
}

.pool-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* Pool Flow */
.pool-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
}

.flow-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--whatsapp);
}

.flow-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.flow-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 1.25rem;
}

/* --- Phone Demo Section --- */
.phone-section {
  padding: 5rem 10%;
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.phone-text {
  flex: 1;
}

.phone-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.phone-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.replay-btn {
  margin-top: 2rem;
}

/* Mobile Mockup */
.mobile-mockup {
  width: 300px;
  height: 580px;
  background: #fff;
  border-radius: 40px;
  border: 8px solid #222;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.mobile-header {
  background: var(--whatsapp-dark);
  padding: 20px;
  padding-top: 35px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-screen {
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8c4be' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  height: calc(100% - 85px);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  overflow-x: hidden;
}

.bubble {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 0.8rem;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.bubble-left {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 0;
  color: black;
}

.bubble-right {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 0;
  color: black;
}

.typing-indicator {
  display: none;
  background: white;
  padding: 12px 16px;
  border-radius: 10px;
  border-top-left-radius: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: auto;
}

.typing-indicator.active {
  display: flex;
  gap: 5px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #90949c;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* --- Features Section --- */
.features {
  padding: 6rem 10%;
  text-align: center;
  background: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 2.5rem;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  opacity: 1;
}

.feature-item:hover {
  background: white;
  border-color: #e2e8f0;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-item h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.feature-item p {
  color: #64748b;
  line-height: 1.6;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: var(--light-blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--accent);
  font-size: 1.5rem;
}

/* --- About Section --- */
.about-section {
  padding: 6rem 10%;
  background: white;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
}

.about-logo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-content h2 span {
  color: var(--whatsapp);
}

.about-intro {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-story {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-story p {
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
}

.value-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--whatsapp), #20bd5a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.value-item p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.about-origin {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(14, 165, 233, 0.1));
  border-radius: 12px;
  border-left: 4px solid var(--whatsapp);
}

.about-origin i {
  color: var(--whatsapp);
  font-size: 1.25rem;
  margin-top: 2px;
}

.about-origin p {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
}

/* --- CTA Section --- */
.cta-section {
  padding: 6rem 10%;
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.cta-phones {
  display: flex;
  gap: -30px;
}

.cta-phone {
  width: 180px;
  height: 320px;
  background: white;
  border-radius: 25px;
  border: 5px solid #333;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.cta-phone-1 { transform: rotate(-5deg); }
.cta-phone-2 { transform: rotate(5deg) translateX(-30px); }

.mini-chat {
  background: #e5ddd5;
  height: 100%;
  padding: 60px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-msg {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  max-width: 90%;
}

.mini-msg.in {
  background: white;
  align-self: flex-start;
}

.mini-msg.out {
  background: #dcf8c6;
  align-self: flex-end;
}

.cta-text {
  max-width: 500px;
}

.cta-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-text p {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-text .cta-buttons {
  justify-content: flex-start;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.float-el {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whatsapp);
  font-size: 1.25rem;
}

.float-1 { top: 20%; left: 10%; animation: float-anim 6s infinite; }
.float-2 { top: 60%; right: 15%; animation: float-anim 8s infinite 1s; }
.float-3 { bottom: 20%; left: 20%; animation: float-anim 7s infinite 2s; }
.float-4 { top: 30%; right: 10%; animation: float-anim 5s infinite 0.5s; }

@keyframes float-anim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* --- Footer --- */
.site-footer {
  background: var(--primary);
  color: white;
  padding: 4rem 10% 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--whatsapp);
}

.footer-links {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--whatsapp);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  
  .hero-content {
    margin-bottom: 2rem;
  }
  
  .hero p {
    margin: 0 auto 2rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .visual-container {
    height: 400px;
  }
  
  .chat-notification {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 10px;
  }
  
  .visual-container {
    flex-wrap: wrap;
    height: auto;
    gap: 15px;
  }
  
  .step-content,
  .step-content.reverse {
    flex-direction: column;
    padding: 0 20px 0 70px;
    margin-left: 0;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .phone-section {
    flex-direction: column-reverse;
  }
  
  .cta-content {
    flex-direction: column;
  }
  
  .cta-phones {
    margin-bottom: 2rem;
  }
  
  .cta-text {
    text-align: center;
  }
  
  .cta-text .cta-buttons {
    justify-content: center;
  }
  
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  
  .about-image {
    flex: none;
  }
  
  .about-logo {
    width: 180px;
    height: 180px;
  }
  
  .about-glow {
    width: 210px;
    height: 210px;
  }
  
  .value-item {
    text-align: left;
  }
  
  .about-origin {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nav-links a:not(.btn) {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .pools-container {
    grid-template-columns: 1fr;
  }
  
  .pool-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links {
    gap: 2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}