/* ============================================
   KANDO HOMEPAGE — styles.css
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Colors */
  --navy:        #06245C;
  --navy-light:  #0d3a8a;
  --teal:        #42B8AD;
  --teal-light:  #5DCFC4;
  --teal-bg:     #E8F8F7;
  --yellow:      #F4B24D;
  --yellow-bg:   #FEF5E7;
  --bg:          #F7FAFC;
  --white:       #FFFFFF;
  --text:        #102040;
  --text-sec:    #5B6B84;
  --border:      #E2EAF0;
  --navy-alpha:  rgba(6, 36, 92, 0.07);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Border Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(6,36,92,0.07);
  --shadow-md:   0 8px 24px rgba(6,36,92,0.10);
  --shadow-lg:   0 16px 48px rgba(6,36,92,0.14);
  --shadow-xl:   0 24px 64px rgba(6,36,92,0.18);

  /* Transitions */
  --trans: 0.25s ease;
  --trans-slow: 0.4s ease;

  /* Layout */
  --max-width: 1200px;
  --header-h: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--trans);
}

ul { list-style: none; }

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--light { background: var(--white); }
.section--bg    { background: var(--bg); }
.section--navy  { background: var(--navy); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-bg);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-sec);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  padding: 0.85rem 2rem;
  transition: all var(--trans);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--trans);
}

.btn:hover::after {
  background: rgba(255,255,255,0.1);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(6,36,92,0.25);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,36,92,0.35);
}

.btn-primary:active { transform: translateY(0); }

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

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

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(66,184,173,0.35);
}

.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66,184,173,0.45);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 1rem 2.4rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--trans);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo__icon svg {
  width: 22px;
  height: 22px;
}

.logo__text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo__text span {
  color: var(--teal);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sec);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--trans);
}

.nav__link:hover {
  color: var(--navy);
  background: var(--navy-alpha);
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--trans);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav__link {
  font-size: 1rem;
  padding: 0.85rem 1rem;
}

.mobile-nav .btn {
  margin-top: var(--space-sm);
  justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(66,184,173,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,36,92,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-bg);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(66,184,173,0.2);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.hero__title mark {
  background: none;
  color: var(--teal);
  position: relative;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero__stats {
  display: flex;
  gap: var(--space-lg);
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-sec);
  margin-top: 0.2rem;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero__mockup-bg {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(66,184,173,0.12) 0%, rgba(6,36,92,0.04) 60%, transparent 80%);
  border-radius: 50%;
}

.hero__mockup-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Floating badges on mockup */
.hero__float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}

.hero__float-badge--1 {
  top: 10%;
  left: -5%;
  animation-delay: 0.5s;
}

.hero__float-badge--2 {
  bottom: 18%;
  right: -5%;
  animation-delay: 1.2s;
}

.hero__float-badge--3 {
  bottom: 5%;
  left: 5%;
  animation-delay: 0.8s;
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon--teal  { background: var(--teal-bg); color: var(--teal); }
.float-icon--navy  { background: rgba(6,36,92,0.1); color: var(--navy); }
.float-icon--yellow{ background: var(--yellow-bg); color: var(--yellow); }

.float-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.float-lbl {
  font-size: 0.72rem;
  color: var(--text-sec);
  font-weight: 400;
  margin-top: 1px;
}

/* ============================================
   BENEFITS STRIP
   ============================================ */
.benefits {
  background: var(--navy);
  padding: var(--space-xl) 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66,184,173,0.06) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--trans);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(66,184,173,0.3);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.5rem;
}

.benefit-icon--teal   { background: rgba(66,184,173,0.18); }
.benefit-icon--yellow { background: rgba(244,178,77,0.18); }
.benefit-icon--white  { background: rgba(255,255,255,0.12); }

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features { background: var(--bg); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.6rem;
  position: relative;
}

.feature-icon-wrap--teal   { background: var(--teal-bg); }
.feature-icon-wrap--navy   { background: rgba(6,36,92,0.08); }
.feature-icon-wrap--yellow { background: var(--yellow-bg); }
.feature-icon-wrap--green  { background: rgba(72,199,142,0.12); }

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.7;
}

.feature-tag {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-bg);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

/* ============================================
   PROCESS / ABLAUF SECTION
   ============================================ */
.process { background: var(--white); }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

/* Connector line */
.process__grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  z-index: 0;
}

.step-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans);
  position: relative;
  z-index: 1;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--teal);
  position: relative;
  z-index: 2;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust { background: var(--bg); }

.trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.trust__content .section-title { text-align: left; }

.trust__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans);
}

.trust-item:hover {
  transform: translateX(6px);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-icon--teal   { background: var(--teal-bg); }
.trust-icon--navy   { background: rgba(6,36,92,0.08); }
.trust-icon--yellow { background: var(--yellow-bg); }
.trust-icon--green  { background: rgba(72,199,142,0.12); }

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.trust-text p {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.5;
}

/* Trust Visual / Stats */
.trust__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.trust-stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans);
}

.trust-stat-card:first-child {
  grid-column: 1 / -1;
  background: var(--navy);
  border-color: transparent;
}

.trust-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-stat-card:first-child:hover {
  transform: translateY(-4px);
}

.trust-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.trust-stat-card:first-child .trust-stat-num { color: var(--teal); }

.trust-stat-label {
  font-size: 0.875rem;
  color: var(--text-sec);
  font-weight: 500;
}

.trust-stat-card:first-child .trust-stat-label { color: rgba(255,255,255,0.75); }

.trust-stat-emoji {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial {
  background: linear-gradient(135deg, var(--navy) 0%, #0a3278 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(66,184,173,0.15) 0%, transparent 70%);
}

.testimonial::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,178,77,0.1) 0%, transparent 70%);
}

.testimonial__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.testimonial__quote-mark {
  font-size: 8rem;
  line-height: 0.7;
  color: var(--teal);
  font-family: Georgia, serif;
  opacity: 0.5;
  margin-bottom: 0.5rem;
  display: block;
}

.testimonial__text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial__avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial__role {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

/* Stars */
.testimonial__stars {
  margin-bottom: var(--space-md);
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.testimonial__visual {
  position: relative;
}

.testimonial__badge-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.t-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  backdrop-filter: blur(10px);
  min-width: 180px;
}

.t-badge-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.t-badge-num span {
  color: var(--teal);
}

.t-badge-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: var(--bg);
  padding: var(--space-2xl) 0;
}

.cta__box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(66,184,173,0.08) 0%, transparent 70%);
}

.cta__emoji {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.cta__sub {
  font-size: 1.05rem;
  color: var(--text-sec);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.cta__note {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--text-sec);
}

.cta__note svg {
  display: inline;
  vertical-align: middle;
  margin-right: 0.3rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand .logo__text {
  color: var(--white);
}

.footer__brand .logo__text span {
  color: var(--teal);
}

.footer__brand-desc {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 280px;
}

.footer__tagline {
  display: inline-block;
  margin-top: var(--space-md);
  background: rgba(66,184,173,0.15);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(66,184,173,0.25);
}

.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--trans);
}

.footer__links a:hover {
  color: var(--teal);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}

.footer__badges {
  display: flex;
  gap: var(--space-sm);
}

.footer__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ============================================
   EARLY ACCESS FORM
   ============================================ */
.early-access-form {
  width: 100%;
  max-width: 500px;
}

.early-access-input-wrap {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.early-access-input {
  flex: 1;
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
  transition: border-color var(--trans), background var(--trans);
  backdrop-filter: blur(8px);
  min-width: 0;
}

.early-access-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.early-access-input:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.15);
}

.early-access-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.early-access-success {
  font-size: 0.95rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(66,184,173,0.12);
  border-radius: var(--radius-md);
  border: 1px solid rgba(66,184,173,0.25);
}

@media (max-width: 480px) {
  .early-access-input-wrap {
    flex-direction: column;
  }
  .early-access-input-wrap .btn {
    justify-content: center;
  }
}

/* ============================================
   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 — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --space-2xl: 5rem;
    --space-xl:  3rem;
  }

  .hero__inner {
    gap: var(--space-lg);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid::before { display: none; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-xl:  2.5rem;
    --header-h:  64px;
  }

  .nav { display: none; }
  .header__btn { display: none; }
  .nav-toggle { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__float-badge--1 { display: none; }
  .hero__float-badge--2 { display: none; }
  .hero__float-badge--3 { display: none; }

  .hero__visual {
    order: -1;
  }

  .hero__mockup-img {
    max-width: 85%;
    margin: 0 auto;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .trust__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .trust__visual {
    grid-template-columns: 1fr 1fr;
  }

  .trust-stat-card:first-child {
    grid-column: 1 / -1;
  }

  .testimonial__inner {
    grid-template-columns: 1fr;
  }

  .testimonial__badge-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .t-badge {
    min-width: 130px;
  }

  .cta__box {
    padding: var(--space-xl) var(--space-md);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

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

  .footer__badges {
    justify-content: center;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* ============================================
   RESPONSIVE — SMALL (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__stats {
    gap: var(--space-md);
  }

  .trust__visual {
    grid-template-columns: 1fr;
  }

  .trust-stat-card:first-child {
    grid-column: auto;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

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

  .cta__actions .btn {
    justify-content: center;
  }
}
