:root {
  --bg: #f7f8fb;
  --text: #122e57;
  --muted: #4f6382;
  --primary: #f57c00;
  --primary-600: #d96a00;
  --primary-soft: #fff5ea;
  --dark: #0b2f5c;
  --dark-2: #0a2547;
  --white: #ffffff;
  --success: #1d8f5f;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  --shadow-hover: 0 16px 40px rgba(16, 24, 40, 0.12);
  --shadow-glow: 0 0 32px rgba(245, 124, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(11, 47, 92, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  border-bottom: 1px solid #e5edf7;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  width: clamp(150px, 20vw, 220px);
  height: auto;
}

.brand-logo-footer {
  width: clamp(130px, 18vw, 185px);
  height: auto;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  background: linear-gradient(120deg, var(--primary), #ff9f43);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  background: #edf4ff;
  color: var(--dark);
}

.menu-btn {
  display: none;
  border: 0;
  border-radius: 10px;
  background: #edf4ff;
  color: var(--dark);
  font-weight: 600;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 8% -10%, rgba(245, 124, 0, 0.42) 0%, transparent 45%),
    radial-gradient(circle at 100% 20%, rgba(255, 154, 53, 0.35) 0%, transparent 33%),
    linear-gradient(135deg, #0b2f5c 0%, #113f76 48%, #0a2547 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.2;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  background: #fff;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  width: 230px;
  height: 230px;
  left: -80px;
  bottom: -100px;
  background: #fff;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

h1,
.h1 {
  margin: 0 0 1rem;
  line-height: 1.15;
  font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
}

.lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #ecf4ff;
  max-width: 58ch;
}

.hero-logo-wrap {
  margin-bottom: 1rem;
}

.hero-logo {
  width: min(520px, 100%);
  padding: 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover {
  background: var(--primary-600);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), var(--shadow-glow);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: var(--muted-light);
  color: var(--text);
  border: 1px solid #e5edf7;
}

.btn-secondary:hover {
  background: #f5f7fb;
  border-color: var(--primary);
  transform: translateY(-1px);
}
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  padding: 1.2rem;
  backdrop-filter: blur(8px);
  text-align: center;
}

.hero-points {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.hero-points li {
  margin: 0.55rem 0;
  font-size: 0.95rem;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.45rem;
}

.star {
  font-size: 1.3rem;
  opacity: 0.75;
  transform: scale(1);
  filter: drop-shadow(0 0 6px rgba(255, 198, 94, 0.5));
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  display: inline-block;
  cursor: default;
}

.star.show {
  opacity: 0.85;
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255, 198, 94, 0.7));
}

.star.star-animate {
  animation: starTwinkle 3.2s ease-in-out infinite;
  animation-delay: var(--star-delay, 0ms);
}

.stats {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  color: var(--white);
}

.stats::before {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 124, 0, 0.22) 0%, transparent 55%);
  animation: statsGlowMove 8s ease-in-out infinite;
  pointer-events: none;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem 0;
}

.stat {
  position: relative;
  text-align: center;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: -70px;
  right: -70px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.45) 0%, rgba(245, 124, 0, 0) 68%);
  opacity: 0.7;
  transform: scale(0.9);
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.stat:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(245, 124, 0, 0.5);
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.32), 0 0 22px rgba(245, 124, 0, 0.25);
}

.stat:hover::before {
  transform: scale(1.08);
  opacity: 0.95;
}

.stat:hover::after {
  left: 150%;
}

.stat.stat-animate {
  animation: statEnter 1.4s cubic-bezier(0.22, 1, 0.36, 1) both,
             statAura 2.8s ease-in-out infinite;
  animation-delay: var(--stat-delay, 0ms), calc(var(--stat-delay, 0ms) + 1s);
}

.stat strong {
  display: inline-block;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: transparent;
  background: linear-gradient(95deg, #ffd7a6 0%, #ffad5e 28%, #fff1de 50%, #ffad5e 72%, #ffd7a6 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1;
  text-shadow: 0 0 0 rgba(255, 173, 94, 0);
  animation: statNumberShine 3.2s ease-in-out infinite;
}

.stat strong.counter-done {
  animation: counterGlow 1s ease;
}

.stat p {
  margin: 0.3rem 0 0;
  color: #e2e8f0;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.notice {
  background: var(--primary-soft);
  color: #b15500;
  text-align: center;
  font-weight: 600;
  padding: 0.9rem 1rem;
}

.section {
  padding: 4.2rem 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.8vw, 2.25rem);
  line-height: 1.2;
  text-align: center;
  color: var(--text);
}

.section p.section-sub {
  margin: 0.5rem 0 0;
  color: var(--muted);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  font-size: 1rem;
}

.grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 240, 244, 0.8);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 8px 32px rgba(16, 24, 40, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), 
              box-shadow 0.3s ease, 
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(245, 124, 0, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.12), var(--shadow-glow);
  border-color: rgba(245, 124, 0, 0.2);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin-top: 0.6rem;
  margin-bottom: 0.35rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
}

.card h2 {
  text-align: center;
}

.card p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-link {
  display: block;
  transition: all 0.3s ease;
}

.card-link:hover .card {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 56px rgba(16, 24, 40, 0.16), var(--shadow-glow);
  border-color: rgba(245, 124, 0, 0.3);
}

.card-link:hover .card::before {
  opacity: 1;
}

.icon {
  font-size: 1.55rem;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 620px;
  margin-inline: auto;
}

.list-clean li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.6rem 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ffd9bf;
  background: #fff6ee;
  color: #b55b0f;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section .badge {
  margin-inline: auto;
}

.contact-box {
  background: linear-gradient(160deg, rgba(255, 247, 241, 0.6) 0%, rgba(255, 255, 255, 0.5) 100%);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 223, 199, 0.6);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 8px 32px rgba(16, 24, 40, 0.06);
  transition: all 0.3s ease;
}

.contact-box:hover {
  background: linear-gradient(160deg, rgba(255, 247, 241, 0.8) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-color: rgba(245, 124, 0, 0.3);
  box-shadow: 0 16px 40px rgba(245, 124, 0, 0.15);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.pill {
  border: 1px solid #d4deec;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  background: #fff;
  color: var(--dark);
}

.pill:hover {
  background: #f6f9ff;
}

form {
  display: grid;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1f3f6a;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.25rem;
  border: 2px solid #c3d1e3;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: #fbfdff;
  color: #12335f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: #6c7f99;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1);
  transform: scale(1.01);
}

input.error,
select.error,
textarea.error {
  border-color: #e53e3e;
  background: #fff5f5;
}

input.error:focus,
select.error:focus,
textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-error {
  color: #e53e3e;
  font-size: 0.82rem;
  margin-top: 0.3rem;
  display: none;
}

.form-error.show {
  display: block;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.89rem;
  text-align: center;
}

footer {
  background: var(--dark-2);
  color: #dde8f7;
  margin-top: 2rem;
}

.footer-nav a {
  color: #d8e6f8;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-inner {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes statEnter {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes statAura {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(2, 6, 23, 0.24), 0 0 0 rgba(245, 124, 0, 0.2);
  }
  50% {
    box-shadow: 0 16px 34px rgba(2, 6, 23, 0.32), 0 0 28px rgba(245, 124, 0, 0.3);
  }
}

@keyframes statNumberShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes statsGlowMove {
  0%,
  100% {
    transform: translateX(-6%) translateY(2%) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translateX(6%) translateY(-2%) scale(1.08);
    opacity: 0.85;
  }
}

@keyframes counterGlow {
  0% {
    transform: scale(1);
    text-shadow: none;
  }
  50% {
    transform: scale(1.12);
    text-shadow: 0 0 24px rgba(255, 173, 94, 0.5);
  }
  100% {
    transform: scale(1);
    text-shadow: none;
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 198, 94, 0.8)) drop-shadow(0 0 24px rgba(245, 124, 0, 0.6));
    opacity: 1;
  }
  25% {
    transform: scale(1.25);
    filter: drop-shadow(0 0 18px rgba(255, 198, 94, 1)) drop-shadow(0 0 32px rgba(245, 124, 0, 0.8));
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 14px rgba(255, 198, 94, 0.9)) drop-shadow(0 0 28px rgba(245, 124, 0, 0.7));
    opacity: 0.95;
  }
  75% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 20px rgba(255, 198, 94, 1)) drop-shadow(0 0 36px rgba(245, 124, 0, 0.9));
    opacity: 1;
  }
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.08) 0%, rgba(245, 124, 0, 0.03) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  margin-top: 1.8rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 240, 244, 0.9);
  border-radius: 13px;
  padding: 1.2rem;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '✦';
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.15;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(245, 124, 0, 0.1);
  border-color: rgba(245, 124, 0, 0.25);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff9f43);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-info h4 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 600;
}

.testimonial-info p {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.testimonial-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

/* === TIMELINE SECTION === */
.timeline-section {
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.05) 0%, rgba(245, 124, 0, 0.02) 100%);
  position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(245, 124, 0, 0.2) 10%, 
    rgba(245, 124, 0, 0.2) 90%, 
    transparent 100%);
  transform: translateY(-50%);
  pointer-events: none;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
  padding: 1rem 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-step.reveal {
  animation: slideUpStep 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.timeline-step[data-step="1"] { animation-delay: 0.1s; }
.timeline-step[data-step="2"] { animation-delay: 0.25s; }
.timeline-step[data-step="3"] { animation-delay: 0.4s; }
.timeline-step[data-step="4"] { animation-delay: 0.55s; }

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 173, 94, 0.15) 0%, rgba(245, 124, 0, 0.08) 100%);
  border: 2.5px solid rgba(245, 124, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.1), inset 0 0 20px rgba(245, 124, 0, 0.05);
}

.timeline-step:hover .step-circle {
  border-color: rgba(245, 124, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 173, 94, 0.25) 0%, rgba(245, 124, 0, 0.15) 100%);
  box-shadow: 0 0 0 8px rgba(245, 124, 0, 0.08), inset 0 0 30px rgba(245, 124, 0, 0.1);
  transform: scale(1.08);
}

.step-num {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  animation: floatEmoji 2.5s ease-in-out infinite;
}

.timeline-step[data-step="1"] .step-num { animation-delay: 0s; }
.timeline-step[data-step="2"] .step-num { animation-delay: 0.3s; }
.timeline-step[data-step="3"] .step-num { animation-delay: 0.6s; }
.timeline-step[data-step="4"] .step-num { animation-delay: 0.9s; }

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.6rem 0;
  line-height: 1.3;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@keyframes slideUpStep {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatEmoji {
  0%, 100% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(0 0 0px rgba(245, 124, 0, 0.3));
  }
  50% {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(245, 124, 0, 0.4));
  }
}

/* === FAQ SECTION === */
.faq-list {
  max-width: 800px;
  margin: 1.5rem auto 0;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 240, 244, 0.8);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  box-shadow: 0 12px 32px rgba(245, 124, 0, 0.12);
  border-color: rgba(245, 124, 0, 0.2);
}

.faq-question {
  padding: 1rem 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: all 0.25s ease;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.faq-question:hover {
  background: rgba(245, 124, 0, 0.04);
  color: var(--primary);
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-text {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* === TIMELINE === */
.timeline {
  max-width: 800px;
  margin: 1.5rem auto;
  position: relative;
  padding: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
  transform: translateX(-1px);
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: timelineReveal 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #ff9f43);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  transform: translateX(-50%);
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(245, 124, 0, 0.3);
}

.timeline-content {
  width: calc(50% - 2rem);
  margin-left: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 240, 244, 0.8);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.06);
}

.timeline-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 600;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 12px;
  }

  .timeline-marker {
    left: 12px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .timeline-content {
    width: calc(100% - 4rem);
    margin-left: 3rem;
  }
}

@media (prefers-color-scheme: dark) {
  .timeline-content {
    background: rgba(26, 35, 53, 0.4);
    border-color: rgba(139, 149, 168, 0.2);
  }
}

@keyframes timelineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === SCROLL TO TOP === */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #ff9f43);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: 0 8px 24px rgba(245, 124, 0, 0.3);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.scroll-to-top.show {
  display: flex;
  animation: slideUp 0.3s ease;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(245, 124, 0, 0.4);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === SPINNER/LOADING === */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* === MOBILE MENU SMOOTH === */
.nav.open {
  max-height: 400px;
  opacity: 1;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5edf7;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav a {
    padding: 0.8rem 1rem;
    border-radius: 0;
    width: 100%;
  }

  .menu-btn {
    display: block;
  }
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  background: var(--dark-2);
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-hover);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-top: 2.5rem;
  }

  .step-circle {
    width: 64px;
    height: 64px;
    margin-bottom: 1.2rem;
  }

  .step-num {
    font-size: 1.8rem;
  }

  .step-content h3 {
    font-size: 1.05rem;
  }

  .step-content p {
    font-size: 0.88rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: #ffffff;
    border-top: 1px solid #e5edf7;
    box-shadow: 0 8px 18px rgba(12, 40, 74, 0.08);
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: clamp(130px, 42vw, 170px);
  }

  .timeline-section::before {
    display: none;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .step-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .step-num {
    font-size: 1.6rem;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial {
    padding: 1.1rem;
  }

  .testimonial-text {
    font-size: 0.87rem;
  }
}
