:root {
  color-scheme: dark;
  --bg: #03040a;
  --card: rgba(255, 255, 255, 0.05);
  --accent: #f94144;
  --accent-soft: rgba(249, 65, 68, 0.35);
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.65);
  --border: rgba(255, 255, 255, 0.08);
  --success: #70e000;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.2;
  mix-blend-mode: screen;
  z-index: 1;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 20;
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #6c63ff);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

.ambient {
  position: fixed;
  width: clamp(220px, 25vw, 460px);
  height: clamp(220px, 25vw, 460px);
  background: radial-gradient(circle, rgba(249, 65, 68, 0.35), transparent 65%);
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  animation: ambientDrift 16s ease-in-out infinite alternate;
  transition: transform 0.35s ease-out;
}

.ambient-right {
  top: 5%;
  right: -8%;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.5), transparent 70%);
}

.ambient-left {
  top: 35%;
  left: -12%;
}

.ambient-bottom {
  bottom: -10%;
  right: 15%;
  background: radial-gradient(
    circle,
    rgba(120, 247, 187, 0.4),
    transparent 70%
  );
}

header.hero {
  position: relative;
  min-height: 100vh;
  padding: 2.5rem clamp(1.5rem, 3vw, 5rem) 4rem;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(249, 65, 68, 0.35),
      transparent 35%
    ),
    radial-gradient(circle at 80% 0%, rgba(94, 96, 206, 0.4), transparent 45%),
    #020411;
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 3;
}

.logo {
  display: flex;
  align-items: center;

  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo .img {
  width: 32px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, #f94144, #f9844a);
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(249, 65, 68, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card);
  color: var(--text);
  align-items: center;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-content p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0;
}

.hero-media {
  position: relative;
  min-height: 400px;
}

[data-parallax] {
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
}

.floating-photo {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(3, 4, 10, 0.65);
  animation: float 6s ease-in-out infinite;
  --float-offset: 0px;
  transform: translate3d(
    0,
    calc(var(--parallax-offset, 0px) + var(--float-offset, 0px)),
    0
  );
}

.floating-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.photo-main {
  width: 340px;
  height: 420px;
  top: 0;
  right: 10%;
  animation-delay: 0.2s;
}

.photo-secondary {
  width: 230px;
  height: 280px;
  bottom: 4%;
  left: 5%;
  animation-delay: 0.8s;
}

.accent-badge {
  position: absolute;
  top: 15%;
  left: 0%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.3rem;
  width: 210px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
  animation-delay: 0.4s;
}

.accent-badge h3 {
  margin: 0;
  font-size: 1.1rem;
}

.accent-badge p {
  margin: 0.3rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.accent-badge span {
  color: var(--success);
  font-weight: 600;
}

.lead-form {
  margin: 1.75rem 0 0;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

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

.lead-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(3, 4, 10, 0.35);
  color: var(--text);
}

.lead-form input::placeholder {
  color: var(--muted);
}

.lead-form .btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-message.success {
  color: var(--success);
}

.stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0;
}

.stat {
  min-width: 130px;
}

.stat h4 {
  margin: 0;
  font-size: 2rem;
}

main {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 3vw, 5rem) 4rem;
  background: linear-gradient(
    180deg,
    rgba(4, 4, 20, 0) 0%,
    rgba(4, 4, 20, 0.45) 45%,
    #010208 100%
  );
}

section {
  margin: 5rem auto;
  padding: 2.5rem clamp(1.25rem, 2.5vw, 2.5rem);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  backdrop-filter: blur(25px);
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

section > * + * {
  margin-top: 1.25rem;
}

section::before,
section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(249, 65, 68, 0.18), transparent 70%);
  filter: blur(60px);
  opacity: 0.5;
  z-index: -1;
  animation: glowPulse 12s ease-in-out infinite;
}

section::after {
  background: radial-gradient(circle, rgba(108, 99, 255, 0.2), transparent 70%);
  top: auto;
  bottom: -15%;
  right: -5%;
}

section::before {
  top: -20%;
  left: -10%;
}

section h2 {
  margin-top: 0;
  font-size: clamp(23px, 4vw, 3rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  will-change: transform;
  transform: translate3d(0, var(--tilt-offset, 0px), 0);
  transition: transform 0.45s ease;
}

.feature-card span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.highlight {
  background: linear-gradient(
    135deg,
    rgba(249, 65, 68, 0.08),
    rgba(94, 96, 206, 0.1)
  );
}

.parallax-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.showcase-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--border);
  background: #05060f;
  margin: 0;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  opacity: 0.9;
}

.showcase-card .tag {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(3, 4, 10, 0.85);
  font-size: 0.85rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.step {
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  will-change: transform;
  transform: translate3d(0, var(--tilt-offset, 0px), 0);
  transition: transform 0.45s ease;
}

.step strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.calculator {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  color: var(--muted);
  font-size: 0.95rem;
}

input[type="number"],
input[type="range"] {
  padding: 0.8rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  width: 100%;
}

input[type="range"] {
  -webkit-appearance: none;
  height: 6px;
  border-radius: 16px;
  padding: 0;
  background: rgba(255, 255, 255, 0.15);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 5px 15px rgba(249, 65, 68, 0.35);
}

.calculator-results {
  border-radius: 28px;
  border: 1px solid var(--border);
  padding: 10px;
  background: rgba(3, 4, 10, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.result-card {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  will-change: transform;
  transform: translate3d(0, var(--tilt-offset, 0px), 0);
  transition: transform 0.4s ease;
}
.result-card strong {
  overflow-wrap: break-word;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

blockquote {
  margin: 0;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  will-change: transform;
  transform: translate3d(0, var(--tilt-offset, 0px), 0);
  transition: transform 0.45s ease;
}

blockquote::before {
  content: "“";
  position: absolute;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.1);
  top: -1rem;
  left: 1rem;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

footer {
  padding: 3rem clamp(1.5rem, 3vw, 5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientDrift {
  from {
    opacity: 0.35;
    filter: blur(70px);
  }

  to {
    opacity: 0.55;
    filter: blur(90px);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.35;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.65;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.35;
    transform: scale(0.95);
  }
}

@keyframes float {
  0% {
    --float-offset: 0px;
  }

  50% {
    --float-offset: -12px;
  }

  100% {
    --float-offset: 0px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .accent-badge {
    left: 0%;
  }
  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    flex-direction: column;
    background: rgb(3 4 10 / 92%);
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    display: none;
  }

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

  .mobile-toggle {
    display: inline-flex;
  }

  .timeline {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  header.hero {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

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

  .floating-photo {
    position: relative;
    width: 100%;
    height: 260px;
    left: 0 !important;
    right: 0 !important;
    top: auto;
    bottom: auto;
    margin-bottom: 1rem;
  }

  .accent-badge {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 1rem;
  }

  .hero-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: auto;
  }

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

  section {
    padding: 2rem 1.25rem;
  }
}
.terms {
  position: absolute;
  top: 200px;
  width: 100%;
}

@media screen and (max-width: 490px) {
  .btn.primary.header {
    font-size: 15px;
    padding: 10px;
  }

  .terms {
    top: 100px;
  }
}

@media screen and (max-width: 450px) {
  .btn.primary.header {
    display: none;
  }
}
.privacy {
  display: flex;
  flex-direction: column;
}
.iti__country-name {
  color: #0e0f1d!important;
}
