:root {
  --yellow: #ffd600;
  --black: #090909;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--white);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.container {
  width: min(1420px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 8px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: clamp(132px, 15vw, 190px);
  height: clamp(132px, 15vw, 190px);
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.round-action,
.language-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 214, 0, 0.45);
  border-radius: 999px;
  color: var(--black);
  background: rgba(0, 0, 0, 0.14);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.language-button {
  gap: 7px;
  padding: 0 14px;
  font-weight: 800;
}

.round-action:hover,
.language-button:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 214, 0, 0.35);
}

.icon {
  font-weight: 900;
  line-height: 1;
}

.tooltip-text {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 70;
  width: max-content;
  max-width: 260px;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  background: var(--slate-900);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.tooltip:hover .tooltip-text,
.tooltip:focus-within .tooltip-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section-with-decor {
  position: relative;
  overflow: hidden;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 190px 0 82px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy p {
  max-width: 700px;
  margin: 0 0 34px;
  color: var(--slate-700);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.55;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 17px 28px;
  color: var(--white);
  font-weight: 850;
  font-size: 18px;
  background: var(--yellow);
  box-shadow: 0 18px 45px rgba(255, 214, 0, 0.35);
  transition: transform 180ms ease, filter 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.05) brightness(0.98);
}

.full-width {
  width: 100%;
}

.mobile-only {
  display: none;
}

.hero-media {
  position: relative;
}

.media-glow {
  position: absolute;
  inset: -5px;
  border-radius: 26px;
  background: var(--yellow);
  filter: blur(26px);
  opacity: 0.48;
  pointer-events: none;
}

.video-card {
  position: relative;
  z-index: 2;
  height: clamp(240px, 34vw, 450px);
  border-radius: 26px;
  overflow: hidden;
  background: #111827;
  box-shadow: var(--shadow);
}

.video-card img,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card video {
  display: none;
}

.video-card.is-playing img,
.video-card.is-playing .play-button {
  display: none;
}

.video-card.is-playing video {
  display: block;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 28px;
  background: var(--yellow);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.soft-light {
  position: absolute;
  z-index: 0;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(255, 214, 0, 0.55);
  filter: blur(70px);
  opacity: 0.5;
  animation: blob 10s ease-in-out infinite;
}

.light-one {
  top: 10%;
  left: 4%;
}

.light-two {
  top: 25%;
  right: 4%;
  animation-delay: 2s;
}

.light-three {
  bottom: 6%;
  left: 34%;
  animation-delay: 4s;
}

.light-four {
  top: 18%;
  left: -110px;
}

.light-five {
  top: 42%;
  right: -120px;
  animation-delay: 2s;
}

.light-six {
  bottom: 12%;
  left: 32%;
  animation-delay: 4s;
}

.decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.decor-one {
  top: 128px;
  right: 10%;
  width: 92px;
}

.decor-two {
  top: 25%;
  left: 6%;
  width: 76px;
  animation-name: pulse;
}

.decor-three {
  bottom: 22%;
  left: 24%;
  width: 82px;
  animation-delay: 2s;
}

.decor-four {
  bottom: 12%;
  right: 28%;
  width: 60px;
  animation-name: pulse;
  animation-delay: 4s;
}

.timeline-section,
.contact-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f1f5f9 100%);
}

.timeline-section {
  overflow-x: clip;
  overflow-y: visible;
}

.progress-shell {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0;
  margin: 0 auto 58px;
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(12px);
}

@media (min-width: 900px) {
  .progress-shell {
    background: transparent;
    backdrop-filter: none;
  }
}

.progress-wrap {
  width: min(920px, 100% - 32px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.progress-segment {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(226, 232, 240, 0.95);
}

.progress-segment span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--yellow);
  transition: width 500ms ease;
}

.progress-segment.is-active span {
  width: 100%;
}

.section-heading {
  position: relative;
  z-index: 5;
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.section-heading p {
  margin: 0 auto;
  color: var(--slate-600);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.timeline-list {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 44px;
}

.timeline-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.timeline-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-content {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
}

.timeline-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  position: relative;
}

.step-number {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  color: var(--white);
  font-size: 27px;
  font-weight: 900;
  background: var(--yellow);
  box-shadow: 0 12px 34px rgba(255, 214, 0, 0.35);
}

.timeline-title h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}

.timeline-title::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 84px;
  width: 4px;
  height: 200px;
  background: var(--yellow);
  border-radius: 999px;
}

.timeline-content p,
.timeline-content li {
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.58;
}

.timeline-content ul {
  margin: 14px 0;
  padding-left: 88px;
}

.timeline-content p {
  margin: 0 0 12px;
  padding-left: 82px;
}

.timeline-video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 28px;
  background: #ffffff;
  box-sizing: border-box;
}

.timeline-video img,
.timeline-video video {
  width: 100%;
  height: 100%;
  max-height: 360px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

.timeline-video video {
  display: none;
}

.timeline-video.is-playing img,
.timeline-video.is-playing .play-button {
  display: none;
}

.timeline-video.is-playing video {
  display: block;
}

.cta-panel {
  position: relative;
  z-index: 5;
  width: min(960px, 100%);
  margin: 72px auto 0;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(255, 214, 0, 0.35);
  border-radius: 24px;
  text-align: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.74);
  box-shadow: var(--shadow);
}

.cta-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 38px);
}

.cta-panel p {
  margin: 0 0 28px;
  color: var(--slate-300);
  font-size: 18px;
}

.badge {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--black);
  font-weight: 800;
  background: rgba(255, 214, 0, 0.22);
}

.contact-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.info-card,
.form-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.info-card h3,
.form-card h3 {
  margin: 0 0 8px;
  font-size: 25px;
}

.info-card > p,
.form-card > p {
  margin: 0 0 26px;
  color: var(--slate-600);
  line-height: 1.55;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 214, 0, 0.25);
  flex-shrink: 0;
}

.method-icon i {
  margin-left:18.5px;
  margin-top:18.5px;
  font-size: 24px;
  color: #1e293b;
  line-height: 1;
}

.iti {
  width: 100% !important;
  display: block !important;
}

.iti input {
  width: 100% !important;
  min-height: 44px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 999px !important;
  padding: 10px 16px 10px 95px !important;
}

.iti__flag-container {
  border-radius: 999px 0 0 999px !important;
}

.iti__selected-flag {
  padding-left: 16px !important;
  border-radius: 999px 0 0 999px !important;
}

.iti__country-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 360px !important;
  font-size: 14px !important;
  z-index: 99999 !important;
}

.iti__country {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 10px !important;
}

.iti__country::marker {
  display: none !important;
  content: "" !important;
}

.contact-method strong,
.contact-method a,
.contact-method span {
  display: block;
}

.contact-method strong {
  margin-bottom: 4px;
}

.contact-method a,
.contact-method span {
  color: var(--slate-600);
  text-decoration: none;
  word-break: break-word;
}

.social-row {
  display: flex;
  gap: 12px;
  padding-top: 10px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  background: var(--yellow);
  transition: transform 180ms ease, filter 180ms ease;
}

.social-row a:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(0.96);
}

form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--slate-700);
  font-weight: 700;
}

label em {
  color: #94a3b8;
  font-style: normal;
  font-weight: 600;
}

input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--slate-900);
  background: var(--white);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 214, 0, 0.22);
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--slate-700);
  font-weight: 700;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  background: var(--yellow);
  box-shadow: 0 18px 45px rgba(255, 214, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal-from-left,
.reveal-from-right {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-from-left {
  transform: translateX(-32px);
}

.reveal-from-right {
  transform: translateX(32px);
}

.is-loaded .reveal-from-left,
.is-loaded .reveal-from-right {
  opacity: 1;
  transform: translateX(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

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

  50% {
    transform: scale(1.08);
  }
}

@keyframes blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(18px, -24px) scale(1.08);
  }

  66% {
    transform: translate(-18px, 18px) scale(0.96);
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding-top: 176px;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-copy p {
    text-align: left;
  }

  .desktop-only {
    display: none;
  }

  .hero-media {
    position: relative;
    z-index: 20;
  }

  .mobile-only {
    display: inline-flex !important;
    width: 100%;
    margin-top: 26px;
    position: relative;
    z-index: 999 !important;
    pointer-events: auto !important;
  }

  .timeline-card {
    display: flex;
    flex-direction: column;
    border-radius: 28px;
  }

  .timeline-content {
    padding: 28px 24px 20px;
  }

  .timeline-title {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
  }

  .step-number {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .timeline-title h3 {
    font-size: 28px;
    line-height: 1.18;
  }

  .timeline-title::after {
    left: 29px;
    top: 78px;
    width: 4px;
    height: 210px;
  }

  .timeline-content p,
  .timeline-content ul {
    padding-left: 72px;
  }

  .timeline-content p,
  .timeline-content li {
    font-size: 18px;
    line-height: 1.55;
  }

  .timeline-content ul {
    margin: 18px 0;
  }

  .timeline-video {
    width: calc(100% - 48px);
    height: auto;
    min-height: unset;
    margin: 18px auto 24px;
    padding: 0;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
  }

  .timeline-video img,
  .timeline-video video {
    width: 100%;
    height: 100%;
    min-height: unset;
    max-height: none;
    border-radius: 18px;
    object-fit: cover;
  }

  .media-glow {
    pointer-events: none !important;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    padding-top: 4px;
  }

  .logo {
    width: 118px;
    height: 118px;
  }

  .header-actions {
    gap: 8px;
  }

  .round-action,
  .language-button {
    min-width: 42px;
    height: 42px;
  }

  .language-button {
    padding: 0 10px;
  }

  .hero-section {
    padding-top: 142px;
  }

  .hero-grid {
    gap: 28px;
  }

  .video-card {
    height: 220px;
    border-radius: 18px;
  }

  .play-button {
    width: 68px;
    height: 68px;
  }

  .timeline-section,
  .contact-section {
    padding: 64px 0;
  }

  .progress-shell {
    padding: 0;
    margin-bottom: 40px;
  }

  .progress-wrap {
    width: 100%;
    border-radius: 0;
    gap: 4px;
    padding: 10px 12px;
  }

  .progress-segment {
    height: 8px;
  }

  .timeline-content {
    padding: 26px 24px 18px;
  }

  .timeline-title {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .timeline-title h3 {
    font-size: 24px;
    line-height: 1.18;
  }

  .timeline-title::after {
    left: 26px;
    top: 72px;
    height: 190px;
  }

  .timeline-content p,
  .timeline-content ul {
    padding-left: 64px;
  }

  .timeline-content p,
  .timeline-content li {
    font-size: 16px;
    line-height: 1.55;
  }

  .timeline-video {
    width: calc(100% - 32px);
    margin: 16px auto 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .decor,
  .soft-light {
    opacity: 0.14;
  }
}

@media (max-width: 900px) {
  .timeline-title::after {
    left: 29px;
    top: 78px;
    width: 4px;
    height: 340px;
  }
}

@media (max-width: 620px) {
  .timeline-title::after {
    left: 26px;
    top: 72px;
    width: 4px;
    height: 320px;
  }
}