/* =========================================
   Syntho — Global Design System
   ========================================= */

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

/* ---- CSS VARIABLES ---- */
:root {
  --navy:        #0f3460;
  --navy-dark:   #0a2444;
  --navy-deeper: #061830;
  --blue:        #00d4ff;
  --blue-dim:    #0099cc;
  --blue-glow:   rgba(0, 212, 255, 0.15);
  --blue-glow2:  rgba(0, 212, 255, 0.08);
  --white:       #ffffff;
  --gray-100:    #f0f4f8;
  --gray-300:    #b0bec5;
  --gray-500:    #607d8b;
  --gray-700:    #37474f;
  --dark-card:   #0d2d52;
  --dark-card2:  #112847;
  --gradient-hero: linear-gradient(135deg, #061830 0%, #0a2444 40%, #0f3460 100%);
  --gradient-blue: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  --gradient-card: linear-gradient(135deg, #0d2d52 0%, #112847 100%);
  --shadow-blue: 0 0 30px rgba(0, 212, 255, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Plus Jakarta Sans', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--navy-deeper);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deeper); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 3px; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}
.navbar.scrolled {
  background: rgba(6, 24, 48, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  padding: 0.65rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient-blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.logo span { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.btn-nav {
  background: var(--gradient-blue);
  color: var(--navy-deeper) !important;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0,212,255,0.5);
}
.btn-nav::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6,24,48,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-blue);
  color: var(--navy-deeper);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(0,212,255,0.35);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0,212,255,0.55);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(0,212,255,0.4);
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-glow);
  transform: translateY(-2px);
}

/* =========================================
   SECTION UTILS
   ========================================= */
.section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-full {
  padding: 6rem 0;
}
.section-full .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  background: var(--blue-glow);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.section-title em {
  font-style: normal;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: pulse-badge 2s ease-in-out infinite;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #00ff88;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes pulse-badge { 0%,100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.2); } 50% { box-shadow: 0 0 0 8px rgba(0,212,255,0); } }

.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: normal;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--blue); }
.hero-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }

/* Voice Wave Animation */
.voice-wave-container {
  margin: 3rem auto;
  width: 320px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}
.voice-wave-container::before {
  content: '📞';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.8));
  animation: phoneFloat 3s ease-in-out infinite;
}
@keyframes phoneFloat { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-54%) scale(1.05); } }
.wave-bar {
  width: 4px;
  border-radius: 4px;
  background: var(--gradient-blue);
  animation: wave 1.2s ease-in-out infinite;
  opacity: 0.85;
}
.wave-bar:nth-child(1)  { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2)  { height: 40px; animation-delay: 0.1s; }
.wave-bar:nth-child(3)  { height: 65px; animation-delay: 0.2s; }
.wave-bar:nth-child(4)  { height: 50px; animation-delay: 0.3s; }
.wave-bar:nth-child(5)  { height: 75px; animation-delay: 0.4s; }
.wave-bar:nth-child(6)  { height: 90px; animation-delay: 0.5s; }
.wave-bar:nth-child(7)  { height: 75px; animation-delay: 0.4s; }
.wave-bar:nth-child(8)  { height: 50px; animation-delay: 0.3s; }
.wave-bar:nth-child(9)  { height: 65px; animation-delay: 0.2s; }
.wave-bar:nth-child(10) { height: 40px; animation-delay: 0.1s; }
.wave-bar:nth-child(11) { height: 20px; animation-delay: 0s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem-section {
  background: linear-gradient(180deg, var(--navy-deeper) 0%, #0a1c36 100%);
  padding: 6rem 0;
}
.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pain-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,80,80,0.6), transparent);
}
.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.2);
  box-shadow: var(--shadow-card);
}
.pain-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pain-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.pain-card p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.pain-stat { 
  display: inline-block;
  margin-top: 1rem;
  color: #ff5050;
  font-size: 1.4rem;
  font-weight: 800;
}

/* =========================================
   SOLUTION SECTION
   ========================================= */
.solution-section {
  padding: 6rem 0;
  background: var(--navy-deeper);
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.solution-features { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon-wrap {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--blue-glow);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.feature-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.phone-mockup {
  background: var(--gradient-card);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-blue), var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
}
.call-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}
.call-avatar {
  width: 40px; height: 40px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy-deeper);
  font-weight: 700;
}
.call-name { font-weight: 600; font-size: 0.95rem; }
.call-status { font-size: 0.75rem; color: #00ff88; }
.call-timer { margin-left: auto; font-size: 0.85rem; color: rgba(255,255,255,0.5); font-family: monospace; }
.transcript { display: flex; flex-direction: column; gap: 0.85rem; }
.msg { display: flex; gap: 0.6rem; align-items: flex-end; }
.msg.bot { flex-direction: row; }
.msg.user { flex-direction: row-reverse; }
.msg-bubble {
  max-width: 75%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.msg.bot .msg-bubble {
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.15);
  color: rgba(255,255,255,0.9);
  border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  border-bottom-right-radius: 4px;
}
.msg-name { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.typing-indicator { display: flex; gap: 4px; padding: 0.4rem 0.6rem; }
.typing-indicator span {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: typing 1.2s ease-in-out 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(-6px); } }

/* =========================================
   HOW IT WORKS (HOMEPAGE)
   ========================================= */
.hiw-section { padding: 6rem 0; background: linear-gradient(180deg, #0a1c36 0%, var(--navy-deeper) 100%); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 40px; left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(0,212,255,0.1), var(--blue));
  background-size: 200% auto;
  animation: flowLine 2s linear infinite;
}
@keyframes flowLine { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
.step-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: rgba(0,212,255,0.3); }
.step-num {
  width: 56px; height: 56px;
  background: var(--gradient-blue);
  color: var(--navy-deeper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 20px rgba(0,212,255,0.4);
}
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* =========================================
   INDUSTRIES
   ========================================= */
.industries-section { padding: 6rem 0; background: var(--navy-deeper); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.industry-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0,212,255,0.25);
  box-shadow: var(--shadow-blue);
}
.industry-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.industry-name { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); }

/* =========================================
   PRICING
   ========================================= */
.pricing-section { padding: 6rem 0; background: linear-gradient(180deg, #0a1c36 0%, var(--navy-deeper) 100%); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.popular {
  border-color: rgba(0,212,255,0.4);
  box-shadow: var(--shadow-blue);
}
.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-blue);
}
.popular-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--gradient-blue);
  color: var(--navy-deeper);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.plan-name { font-size: 0.85rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.plan-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.4rem; }
.plan-price .amount { font-size: 3rem; font-weight: 800; }
.plan-price .currency { font-size: 1.3rem; font-weight: 700; color: var(--blue); }
.plan-price .period { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.plan-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 1.8rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.plan-features li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; }
.plan-features li .check { color: #00ff88; flex-shrink: 0; margin-top: 1px; }
.plan-features li .cross { color: #ff5050; flex-shrink: 0; margin-top: 1px; }
.plan-cta { width: 100%; padding: 0.9rem; font-size: 1rem; font-weight: 700; border-radius: 50px; transition: var(--transition); }
.plan-cta.primary { background: var(--gradient-blue); color: var(--navy-deeper); box-shadow: 0 0 20px rgba(0,212,255,0.3); }
.plan-cta.primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,212,255,0.5); }
.plan-cta.secondary { background: transparent; color: var(--blue); border: 2px solid rgba(0,212,255,0.3); }
.plan-cta.secondary:hover { background: var(--blue-glow); border-color: var(--blue); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { padding: 6rem 0; background: var(--navy-deeper); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.2); }
.stars { color: #ffd700; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: var(--navy-deeper);
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-role { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* =========================================
   FAQ
   ========================================= */
.faq-section { padding: 6rem 0; background: linear-gradient(180deg, var(--navy-deeper) 0%, #0a1c36 100%); }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--gradient-card);
  border: 1px solid rgba(0,212,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(0,212,255,0.2); }
.faq-question {
  width: 100%; text-align: left;
  background: none; color: var(--white);
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; transition: var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon { color: var(--blue); font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.2rem; }
.faq-answer p { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.7; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy-deeper);
  border-top: 1px solid rgba(0,212,255,0.06);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-contact { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 0.5rem; }
.footer-contact a:hover { color: var(--blue); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul a:hover { color: var(--blue); }
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-badges { display: flex; gap: 0.75rem; }
.footer-badge {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

/* =========================================
   WHATSAPP BUTTON
   ========================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: whatsFloat 3s ease-in-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(37,211,102,0.65); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
@keyframes whatsFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.whatsapp-btn:hover { animation: none; transform: scale(1.12); }

/* =========================================
   INNER PAGES — HERO SUBPAGE
   ========================================= */
.page-hero {
  padding: 9rem 1.5rem 5rem;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -1px; }
.page-hero h1 em { font-style: normal; background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 550px; margin: 0 auto; }

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-section { padding: 5rem 0; background: var(--navy-deeper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--blue-glow);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.contact-item a { color: var(--blue); }
.contact-form-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: rgba(255,255,255,0.7); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,212,255,0.4);
  background: rgba(0,212,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--navy-dark); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =========================================
   PROCESS STEPS (HOW IT WORKS PAGE)
   ========================================= */
.process-section { padding: 6rem 0; background: var(--navy-deeper); }
.process-timeline { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px; top: 60px; bottom: -40px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(0,212,255,0.1) 100%);
}
.step-indicator {
  text-align: center;
  padding-top: 4px;
}
.step-circle {
  width: 56px; height: 56px;
  background: var(--gradient-blue);
  color: var(--navy-deeper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 0 25px rgba(0,212,255,0.4);
  position: relative; z-index: 1;
}
.step-body {
  padding-bottom: 3rem;
}
.step-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--white); }
.step-body p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.step-badge {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--blue-glow);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

/* =========================================
   TECH STACK
   ========================================= */
.tech-section { padding: 5rem 0; background: linear-gradient(180deg, #0a1c36 0%, var(--navy-deeper) 100%); }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.tech-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.tech-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.25); }
.tech-card .tech-logo { font-size: 2rem; margin-bottom: 0.75rem; }
.tech-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.tech-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .solution-grid { grid-template-columns: 1fr; }
  .phone-mockup { max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats { gap: 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
}
