*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #F5A623;
  --navy: #1E2D6B;
  --dark: #0a0a0a;
  --gray: #6B7280;
  --light: #F5F5F7;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.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; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 980px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s var(--transition);
  border: 2px solid transparent;
  letter-spacing: -0.01em;
}
.btn--primary { background: var(--gold); color: var(--white); box-shadow: 0 4px 20px rgba(245,166,35,0.35); }
.btn--primary:hover { background: #e09518; transform: scale(1.03); box-shadow: 0 6px 28px rgba(245,166,35,0.45); }
.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); transform: scale(1.03); }
.btn--ghost { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.35); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,0.22); transform: scale(1.03); }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s var(--transition);
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo img { height: 80px; width: auto; }
.navbar__links { display: flex; align-items: center; gap: 28px; }
.navbar__links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s;
  opacity: 0.85;
}
.navbar__links a:hover { color: var(--gold); opacity: 1; }
.navbar__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.navbar__burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* HERO FRAME */
.hero__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero__frame svg { width: 100%; height: 100%; }
.hero__inner { position: relative; z-index: 3; }

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #0f1f5c 0%, #1E2D6B 45%, #2d4199 100%);
  display: flex;
  align-items: center;
  padding: 100px 48px 60px;
  gap: 60px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 60px; }
.hero__badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.35);
  padding: 6px 18px;
  border-radius: 980px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__content { flex: 1; }
.hero__content h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero__content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 260px;
}
.hero__card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  width: 100%;
  transition: transform 0.4s var(--transition), background 0.3s;
}
.hero__card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.13); }
.stat__number { display: block; font-size: 2.6rem; font-weight: 800; color: var(--gold); letter-spacing: -0.03em; line-height: 1; }
.stat__label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 8px; line-height: 1.5; }

/* SECTIONS */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-subtitle { text-align: center; color: var(--gray); margin-bottom: 56px; font-size: 1rem; line-height: 1.6; }

/* VALUE PROP */
.value-prop { background: var(--navy); padding: 72px 48px; }
.value-prop__quote {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.92);
  font-style: normal;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.65;
  border-left: 4px solid var(--gold);
  padding-left: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* DIFFERENTIATOR */
.differentiator { padding: 110px 0; background: var(--light); }
.differentiator .section-title { margin-bottom: 56px; }
.diff__grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 20px; }
.diff__col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--transition);
}
.diff__col:hover { transform: translateY(-6px); }
.diff__col--bad { border-top: 3px solid #EF4444; }
.diff__col--good { border-top: 3px solid #22C55E; }
.diff__col h3 { font-size: 1rem; font-weight: 600; margin-bottom: 14px; color: var(--dark); letter-spacing: -0.01em; }
.diff__col p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* BENEFITS */
.benefits { padding: 110px 0; }
.benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.4s var(--transition), box-shadow 0.4s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); }
.benefit-card__icon { font-size: 2.4rem; margin-bottom: 18px; }
.benefit-card h3 { font-size: 1rem; font-weight: 650; margin-bottom: 10px; color: var(--navy); letter-spacing: -0.01em; }
.benefit-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* PHASES */
.how-it-works { padding: 110px 0; background: var(--light); }
.phases { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; }
.phase {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--transition);
}
.phase:hover { transform: translateY(-4px); }
.phase__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.phase__number { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.04em; }
.phase__duration { font-size: 0.7rem; font-weight: 600; color: var(--white); background: var(--navy); padding: 4px 10px; border-radius: 980px; }
.phase h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.01em; }
.phase ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.phase ul li { font-size: 0.83rem; color: var(--gray); padding-left: 16px; position: relative; line-height: 1.5; }
.phase ul li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.phase__connector { width: 28px; height: 2px; background: linear-gradient(90deg, var(--gold), rgba(245,166,35,0.3)); margin-top: 42px; flex-shrink: 0; }

/* SECTORS */
.sectors { padding: 90px 0; }
.sectors__grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 48px; }
.sector-tag {
  background: var(--light);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 980px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s var(--transition);
  cursor: default;
  letter-spacing: -0.01em;
}
.sector-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: scale(1.04); }

/* PACKAGES */
.packages { padding: 110px 0; background: var(--light); }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.4s var(--transition), box-shadow 0.4s;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.package-card--featured { border-color: var(--gold); transform: scale(1.03); box-shadow: 0 16px 56px rgba(245,166,35,0.18); }
.package-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.package-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 980px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.package-card__name { font-size: 1.5rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.package-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }
.package-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.package-card ul li { font-size: 0.88rem; color: var(--dark); padding-left: 22px; position: relative; line-height: 1.5; }
.package-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.package-card .btn { text-align: center; }

/* TEAM */
.team { padding: 110px 0; }
.team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.4s var(--transition);
}
.team-card:hover { transform: translateY(-5px); }
.team-card__icon { font-size: 2rem; margin-bottom: 16px; }
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.01em; }
.team-card__role { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; display: block; }
.team-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }

/* CTA */
.cta { padding: 110px 0; background: linear-gradient(145deg, #0f1f5c 0%, #1E2D6B 55%, #2d4199 100%); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(245,166,35,0.07) 0%, transparent 60%); pointer-events: none; }
.cta__inner { text-align: center; position: relative; }
.cta h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -0.03em; }
.cta p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 44px; line-height: 1.7; }
.cta__form { display: flex; flex-direction: column; gap: 12px; max-width: 480px; margin: 0 auto; }
.cta__form input, .cta__form select {
  padding: 15px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border 0.25s, background 0.25s;
  font-family: inherit;
  backdrop-filter: blur(8px);
}
.cta__form select option { color: var(--dark); background: var(--white); }
.cta__form input::placeholder { color: rgba(255,255,255,0.45); }
.cta__form input:focus, .cta__form select:focus { border-color: var(--gold); background: rgba(255,255,255,0.13); }
.cta__form .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; margin-top: 4px; }

/* FOOTER */
.footer { background: #000; padding: 52px 48px; }
.footer__inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer__logo { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; }
.footer p { font-size: 0.82rem; color: rgba(255,255,255,0.35); letter-spacing: -0.01em; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .phases { grid-template-columns: 1fr 1fr; gap: 16px; }
  .phase__connector { display: none; }
  .diff__grid { grid-template-columns: 1fr; }
  .packages__grid { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-6px); }
  .section-inner { padding: 0 24px; }
}
@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__burger { display: flex; }
  .navbar__links.open { display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: 24px; gap: 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
  .hero { padding: 100px 24px 60px; }
  .hero__inner { flex-direction: column; text-align: center; }
  .hero__content p { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__visual { width: 100%; flex-direction: row; }
  .hero__card { flex: 1; }
  .phases { grid-template-columns: 1fr; }
  .value-prop { padding: 52px 24px; }
  .footer { padding: 40px 24px; }
}
