* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  color: #0f172a;
  overflow-x: hidden;
}

/* BACKGROUND GLOW */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1ABC9C33, transparent 70%);
  top: -200px;
  left: -200px;
  filter: blur(80px);
  z-index: -1;
}

/* GLOBAL */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 120px 0;
  text-align: center;
}

h2 {
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;

  color: #0f172a;
  letter-spacing: -1px;
}

.section {
  padding: 100px 0;
  background: #ffffff;
}
/* NAV */
.navbar {
  position: sticky;
  top: 0;
    background: rgba(255,255,255,0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #334155;
  transition: 0.3s;
}

nav a:hover {
  color: var(--teal);
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 0px solid rgba(26,188,156,0.6);
  /* padding: -10px; */
  background: rgba(255,255,255,0.05);
}

/* FULL LOGO IN NAVBAR */
/* NAVBAR LOGO */
.full-logo{
  width: 165px;
  height: auto;
  object-fit: contain;

  display: block;

  transition: 0.3s ease;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.full-logo:hover{
  transform: scale(1.03);
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #0f172a;
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
  padding: 130px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  background: rgba(26,188,156,0.1);
  border: 1px solid rgba(26,188,156,0.3);
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 70px;
  line-height: 1.05;
}

.hero-text span {
  color: #1ABC9C;
}

.hero-text p {
  margin: 20px 0;
  opacity: 0.8;
  max-width: 450px;
}

.hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GLOW BEHIND PHONE */
.mockup-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(26,188,156,0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* MOCKUP 3D EFFECT */
/* MOCKUP 3D EFFECT */
.mockup {
  width: 340px;
  max-width: 100%;
  position: relative;
  z-index: 2;

  border-radius: 40px;

  transform: perspective(1000px) rotateY(-10deg) rotateX(6deg);

  transition: 0.6s ease;

  animation: float 4s ease-in-out infinite;

  box-shadow:
    0 40px 80px rgba(0,0,0,0.18),
    0 0 0 10px rgba(255,255,255,0.5);
}

/* EXTRA PREMIUM LOOK */
.app-screen {
  border: 8px solid #ffffff;
  background: white;
}

/* HOVER EFFECT */
.mockup:hover {
  transform:
    perspective(1000px)
    rotateY(0deg)
    rotateX(0deg)
    scale(1.03);
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* STATS */
.stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}

.stats div {
  text-align: left;
}

.stats b {
  font-size: 20px;
  display: block;
}

/* BUTTONS */
.btn {
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.primary {
  background: linear-gradient(45deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
}

.primary:hover {
  transform: translateY(-2px);
}

.secondary {
  background: #ffffff;
  color: #1ABC9C;
  border: 1px solid rgba(26,188,156,0.2);
  box-shadow: 0 4px 15px rgba(26,188,156,0.1);
  font-weight: 600;
}

.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,188,156,0.2);
  border-color: rgba(26,188,156,0.4);
}

.outline {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
}

.glow {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 25px rgba(26,188,156,0.25);
}

.big {
  padding: 16px 28px;
  font-size: 16px;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARDS */
.card {
  padding: 30px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}

.danger { border: 1px solid rgba(255,80,80,0.3); }
.success { border: 1px solid #1ABC9C; }

/* STEPS */
.steps {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.step {
  width: 260px;
}

.circle {
  width: 70px;
  height: 70px;
  background: #1ABC9C;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-weight: bold;
  margin-bottom: 15px;
}

/* =========================
   FEATURES GRID
========================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* =========================
   FLIP CARD WRAPPER
========================= */

.flip-card {
  perspective: 1200px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 220px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  z-index: 1;
}

/* FLIP */
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* COMMON CARD STYLE */
.front,
.back {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;

  border-radius: 18px;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);

  box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

/* FRONT */
.front {
  z-index: 2;
  backface-visibility: hidden;
}

.back {
  backface-visibility: hidden;
}

/* BACK (IMPORTANT FIX) */
.back {
  z-index: 3;
  background: #ffffff;
  color: #0f172a;
  transform: rotateY(180deg);
  font-size: 14px;
  line-height: 1.5;
  opacity: 1;
}

/* IMAGE */
.front img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* HOVER BORDER (PURPLE THEME) */
.flip-card:hover .front,
.flip-card:hover .back {
  border: 2px solid #4B2E83;
  box-shadow: 0 0 25px rgba(75,46,131,0.25);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .flip-inner {
    height: 240px;
  }
}
/* CTA SECTION - PREMIUM REDESIGN */
.cta {
  padding: 120px 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #0f172a;
}

/* Dynamic background glow */
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,188,156,0.3) 0%, rgba(75,46,131,0.2) 50%, transparent 80%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: pulseGlow 6s infinite alternate;
  z-index: 1;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* INNER WRAPPER - Glassmorphism */
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  max-width: 800px;
  padding: 60px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* HEADING */
.cta-inner h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  color: #ffffff;
  letter-spacing: -1px;
}

/* BUTTON */
.cta-inner .big {
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(26,188,156,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-inner .big:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(26,188,156,0.4);
}

@media(max-width: 768px) {
  .cta {
    padding: 80px 20px;
  }
  .cta-inner {
    padding: 40px 20px;
  }
  .cta-inner h2 {
    font-size: 32px;
  }
}

/* CONTACT */
.contact-box {
  margin-bottom: 20px;
  opacity: 0.8;
}

input, textarea {
  width: 320px;
  padding: 12px;
  margin: 10px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  color: #0f172a;
}

/* FOOTER */
footer {
  padding: 25px;
  text-align: center;
  opacity: 0.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-grid,
  .grid-2,
  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }
}

.compare-slider {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 60px auto;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* BOXES */
.compare-box {
  padding: 40px;
  min-height: 320px;
  color: #0f172a;
}

.compare-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #4B2E83;
}

.compare-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0.9;
}

.left {
  background: rgba(255,80,80,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
}

.right {
  background: rgba(26,188,156,0.05);
}

/* SLIDER HANDLE (visual premium feel) */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #1ABC9C, #16A085);
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(26,188,156,0.6);
}

/* CENTER LABEL EFFECT */
.compare-slider::after {
  content: "VS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #ffffff;
  color: #4B2E83;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* =========================================
   SECTION SHARED EYEBROW + HIGHLIGHT
========================================= */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1ABC9C;
  background: rgba(26,188,156,0.1);
  border: 1px solid rgba(26,188,156,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.highlight-teal {
  color: #1ABC9C;
}

.section-sub {
  font-size: 16px;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.advantage-header,
.how-header {
  text-align: center;
  margin-bottom: 10px;
}

/* =========================================
   WHY VALLO WINS - NEW PROFESSIONAL DESIGN
========================================= */
.compare-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.compare-panel {
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare-panel:hover {
  transform: translateY(-6px);
}

.panel-left {
  background: #fff8f8;
  border: 1.5px solid rgba(239,68,68,0.15);
  box-shadow: 0 12px 40px rgba(239,68,68,0.06);
  border-radius: 20px 0 0 20px;
}

.panel-right {
  background: #f0fdf9;
  border: 1.5px solid rgba(26,188,156,0.2);
  box-shadow: 0 12px 40px rgba(26,188,156,0.08);
  border-radius: 0 20px 20px 0;
}

.panel-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.badge-old {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
}

.badge-new {
  background: rgba(26,188,156,0.12);
  color: #1ABC9C;
  border: 1px solid rgba(26,188,156,0.25);
}

.panel-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

.panel-title-teal {
  color: #1ABC9C;
}

.compare-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.item-bad {
  color: #64748b;
  background: rgba(239,68,68,0.04);
}

.item-bad:hover {
  background: rgba(239,68,68,0.08);
}

.item-good {
  color: #0f172a;
  background: rgba(26,188,156,0.05);
}

.item-good:hover {
  background: rgba(26,188,156,0.1);
}

.item-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(239,68,68,0.12);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.item-check {
  background: rgba(26,188,156,0.12);
  color: #1ABC9C;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}

.vs-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #4B2E83;
  letter-spacing: 1px;
}

/* Responsive compare */
@media (max-width: 768px) {
  .compare-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .panel-left {
    border-radius: 20px;
  }

  .panel-right {
    border-radius: 20px;
  }

  .vs-divider {
    padding: 4px 0;
  }
}

/* =========================================
   HOW IT WORKS - PREMIUM DESIGN
========================================= */
.steps-premium {
  display: flex;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.step-premium {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 20px;
}

.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ABC9C, #16A085);
  color: white;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26,188,156,0.3);
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-premium:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(26,188,156,0.45);
}

.step-line {
  flex: 1;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(26,188,156,0.5), rgba(26,188,156,0.1));
  position: absolute;
  top: 28px;
  left: 50%;
  right: -50%;
  z-index: 1;
}

.step-line.last-line {
  display: none;
}

.step-content {
  background: #ffffff;
  border: 1px solid rgba(26,188,156,0.12);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-premium:hover .step-content {
  transform: translateY(-6px);
  border-color: #1ABC9C;
  box-shadow: 0 16px 40px rgba(26,188,156,0.12);
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(26,188,156,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(26,188,156,0.15);
  transition: background 0.3s ease;
}

.step-premium:hover .step-icon-wrap {
  background: rgba(26,188,156,0.15);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
}

.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1ABC9C;
  background: rgba(26,188,156,0.1);
  border: 1px solid rgba(26,188,156,0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Steps Premium Responsive */
@media (max-width: 768px) {
  .steps-premium {
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
  }

  .step-line {
    display: none;
  }

  .step-num-wrap {
    margin-bottom: 16px;
  }
}

.contact-subtitle {
  opacity: 0.7;
  margin-bottom: 30px;
}

/* EMAIL BLOCK */
.contact-info {
  margin: 25px 0 40px;
  opacity: 0.85;
  line-height: 1.8;
}

/* FORM WRAPPER CENTER */
.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* FORM CARD */
.contact-form {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;

  padding: 25px;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

/* FORM TITLE */
.contact-form h3 {
  margin-bottom: 10px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);

  background: rgba(0,0,0,0.2);
  color: white;
  outline: none;
}

/* TEXTAREA */
.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* FOOTER */
.footer {
  margin: 0;
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

/* FOOTER LINKS */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #1ABC9C;
}

/* SOCIAL */
.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  margin: 0 10px;
  color: #1ABC9C;
  text-decoration: none;
  font-weight: 500;
}

.social-icons a:hover {
  text-decoration: underline;
}

/* COPYRIGHT */
.footer .copyright {
  opacity: 0.6;
  font-size: 13px;
  margin-top: 10px;
}
section:last-of-type {
  padding-bottom: 0;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;

  background: rgba(155, 89, 182, 0.15);
  border: 1px solid rgba(155, 89, 182, 0.5);
  color: #c084fc;

  margin-left: 10px;
  font-weight: 500;
}
.download-btn {
  background: linear-gradient(45deg, #1ABC9C, #16A085);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26,188,156,0.25);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px; /* tighter spacing */
}

/* optional: remove extra button margin if any */
.nav-cta .btn {
  margin: 0;
}

:root {
  --teal: #1ABC9C;
  --teal-dark: #16A085;
  --purple: #4B2E83;
  --white: #FFFFFF;
  --soft: #F6F8FC;
}

.card,
.flip-inner,
.front,
.back,
.contact-form {
  background: var(--white);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

h1, h2, h3 {
  color: #0f172a;
}

p {
  color: #475569;
}

.hero,
.section,
.compare-slider,
.feature-grid {
  position: relative;
  z-index: 1;
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

/* CONTACT CARDS */
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 16px;
  padding: 25px;
  text-align: left;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border: 1px solid #1ABC9C;
  box-shadow: 0 15px 35px rgba(26,188,156,0.15);
}

/* TITLES */
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #4B2E83;
}

/* TEXT */
.contact-card p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #334155;
}

/* CHAT SPECIAL CARD */
.chat-card {
  border: 1px dashed #4B2E83;
  background: linear-gradient(180deg, #ffffff, #f8f9ff);
}

/* BADGE */
.badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 999px;

  background: rgba(26,188,156,0.15);
  color: #1ABC9C;
  font-weight: 600;
}

.badge.coming {
  background: rgba(75,46,131,0.15);
  color: #4B2E83;
}

/* FORM CENTER FIX */
.form-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* TEAM SECTION WRAPPER */
#team {
  text-align: center;
}

.team-header {
  text-align: center;
  margin-bottom: 10px;
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TEAM CARD - PREMIUM */
.team-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 20px;
  padding: 36px 24px 28px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, border-color 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(26,188,156,0.3);
  box-shadow: 0 24px 48px rgba(26,188,156,0.12);
}

/* CARD GLOW */
.team-card-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(26,188,156,0.12), transparent 70%);
  filter: blur(25px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.team-card:hover .team-card-glow {
  opacity: 1;
}

/* AVATAR WRAPPER */
.team-avatar-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
}

.team-avatar-wrap .avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #1ABC9C, #4B2E83) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ringRotate 6s linear infinite;
  opacity: 0.4;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .avatar-ring {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* CRAZY PROFESSIONAL SHINE EFFECT */
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  pointer-events: none;
}

.team-card:hover::before {
  left: 150%;
}


/* AVATAR */
.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

img.avatar {
  object-fit: cover;
  background: #ffffff;
  padding: 3px;
  border: 2px solid rgba(26,188,156,0.2);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover img.avatar {
  transform: scale(1.06);
  border-color: #1ABC9C;
  box-shadow: 0 10px 24px rgba(26,188,156,0.2);
}

/* TEXT */
.team-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.team-role {
  font-size: 13px;
  font-weight: 500;
  color: #64748b !important;
  letter-spacing: 0.3px;
}

/* DIVIDER */
.team-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #1ABC9C, #4B2E83);
  margin: 14px auto 0;
  border-radius: 2px;
  opacity: 0.5;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.team-card:hover .team-divider {
  width: 60px;
  opacity: 1;
}

/* PROFILE LINK */
.team-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  color: #1ABC9C;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.team-profile-link:hover {
  gap: 8px;
}

.team-profile-link span {
  transition: transform 0.3s ease;
}

.team-profile-link:hover span {
  transform: translateX(3px);
}

/* ==============================
   SCROLL REVEAL ANIMATIONS
============================== */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   TABLET / DESKTOP MODE OVERLAP FIX
=========================== */
@media (min-width: 769px) and (max-width: 1150px) {
  nav a {
    margin: 0 5px;
    font-size: 14px;
  }
  .full-logo {
    width: 120px;
  }
  .nav-cta .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* ===========================
   COMPREHENSIVE MOBILE FIX
=========================== */
@media (max-width: 768px) {

  /* HAMBURGER VISIBLE */
  .hamburger {
    display: flex;
  }

  /* NAV LINKS - HIDDEN BY DEFAULT */
  .navbar nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .navbar nav.active {
    display: flex;
  }

  .navbar nav a {
    padding: 14px 0;
    margin: 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .navbar nav a:last-child {
    border-bottom: none;
  }

  /* NAV CTA - right edge */
  .nav-cta {
    margin-left: auto;
  }

  .nav-cta .btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .nav-cta .badge {
    display: none;
  }

  /* LOGO MOBILE - centered */
  .full-logo {
    width: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .full-logo:hover {
    transform: translate(-50%, -50%) scale(1.03);
  }

  .nav {
    position: relative;
    min-height: 60px;
  }

  .hamburger {
    order: -1;
  }

  /* HERO */
  .hero {
    padding: 60px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    margin: 15px auto;
    max-width: 100%;
  }

  /* HERO BUTTONS */
  .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* STATS */
  .stats {
    justify-content: center;
  }

  /* PHONE MOCKUP - mobile float enabled, no 3D tilt */
  .mockup {
    width: 240px;
    transform: none;
    animation: float 4s ease-in-out infinite;
  }

  .mockup-glow {
    width: 260px;
    height: 260px;
  }

  /* SECTIONS */
  .section {
    padding: 60px 0;
  }

  h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  /* STEPS */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step {
    width: 100%;
    max-width: 300px;
  }

  /* COMPARE SLIDER */
  .compare-slider {
    grid-template-columns: 1fr;
    margin: 30px auto;
  }

  .compare-box {
    padding: 25px;
    min-height: auto;
  }

  .slider-handle {
    display: none;
  }

  .compare-slider::after {
    display: none;
  }

  /* FEATURES */
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .flip-inner {
    height: 180px;
  }

  .front img {
    width: 50px;
    height: 50px;
  }

  /* CTA */
  .cta {
    padding: 80px 20px;
  }

  .cta-inner h2 {
    font-size: 28px;
  }

  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* FORM */
  .contact-form {
    max-width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  input, textarea {
    width: 100%;
    margin: 8px 0;
  }

  /* TEAM */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .team-card {
    padding: 28px 20px 22px;
  }

  /* GRID-2 */
  .grid-2 {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .full-logo {
    width: 110px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .stats div {
    text-align: center;
  }

  .flip-inner {
    height: 200px;
  }

  .cta-inner h2 {
    font-size: 24px;
  }
}

/* =========================================
   SUCCESS TICK ANIMATION & SPINNER
========================================= */
.success-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
  animation: fadeIn 0.5s ease-in-out;
  text-align: center;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #1ABC9C;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 4;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 0 auto;
  box-shadow: inset 0px 0px 0px #1ABC9C;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

@keyframes scale {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
  100% { box-shadow: inset 0px 0px 0px 40px #1ABC9C; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s ease-in-out infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}