:root {
  --bg: #0f1419;
  --bg-soft: #161d26;
  --surface: #1c2532;
  --line: #27313f;
  --text: #e8edf2;
  --muted: #9aa6b2;
  --brand: #2ec4b6;
  --brand-2: #0f4c75;
  --accent: #ffd166;
  --danger: #ef476f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --maxw: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 15px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--accent);
}
h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}
h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  margin-bottom: 0.8rem;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 0.7rem;
  color: var(--muted);
}
ul,
ol {
  padding-left: 1.2rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
li {
  margin-bottom: 0.3rem;
}
section {
  padding: 3rem 0;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1rem;
}
main {
  flex: 1;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.9rem 0;
  background: linear-gradient(
    180deg,
    rgba(15, 20, 25, 0.85),
    rgba(15, 20, 25, 0)
  );
  transition:
    transform 0.35s ease,
    background 0.3s ease;
}
.site-header.hidden {
  transform: translateY(-110%);
}
.site-header.scrolled {
  background: rgba(15, 20, 25, 0.96);
  backdrop-filter: blur(10px);
  position: fixed;
  animation: slideIn 0.35s;
}
@keyframes slideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.brand .logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: conic-gradient(
    from 180deg,
    var(--brand),
    var(--accent),
    var(--brand-2),
    var(--brand)
  );
  display: grid;
  place-items: center;
  color: #0f1419;
}
.brand .logo i {
  font-size: 18px;
}
.nav-list {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-list a {
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-list a:hover,
.nav-list a.active {
  background: var(--surface);
  color: var(--accent);
}
.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle i {
  transition: transform 0.3s;
}
.nav-toggle[aria-expanded="true"] i {
  transform: rotate(90deg);
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 15px;
  }

  .nav-list {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 25, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(8px);
  }
  .nav-list.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list a {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  }
}

.hero {
  position: relative;
  padding: 9rem 0 4rem;
  background:
    radial-gradient(
      ellipse at top right,
      rgba(46, 196, 182, 0.18),
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(15, 76, 117, 0.35),
      transparent 60%
    ),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(46, 196, 182, 0.12);
  color: var(--brand);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(46, 196, 182, 0.25);
}
.hero p.lead {
  font-size: 1.05rem;
  margin-top: 0.8rem;
  margin-bottom: 1.5rem;
  color: #c5cdd6;
}
.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.hero-stats div b {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  display: block;
}
.hero-stats div span {
  font-size: 0.78rem;
  color: var(--muted);
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--surface);
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.85rem;
}
.hero-badge i {
  color: var(--brand);
  font-size: 24px;
}

@media (max-width: 760px) {
  .hero {
    padding: 7rem 0 3rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-stats {
    margin-top: 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.btn-primary {
  background: var(--brand);
  color: #0f1419;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: #0f1419;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--accent);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.section-head .kicker {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.section-head p {
  font-size: 0.98rem;
}

.features {
  background: var(--bg-soft);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
}
.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(46, 196, 182, 0.18),
    rgba(255, 209, 102, 0.12)
  );
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 24px;
  margin-bottom: 0.8rem;
}

.steps {
  position: relative;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  counter-reset: step;
}
.step {
  background: var(--bg-soft);
  padding: 1.4rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--brand);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  opacity: 0.6;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split img {
  aspect-ratio: 5/4;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.split ul.checks {
  list-style: none;
  padding: 0;
}
.split ul.checks li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: #c5cdd6;
}
.split ul.checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
  color: #0f1419;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: bold;
}
@media (max-width: 760px) {
  .split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
}
.price-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(46, 196, 182, 0.08), var(--surface));
}
.price-card .tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.price-card .price {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  color: var(--text);
  margin: 0.8rem 0;
  font-weight: 700;
}
.price-card .price small {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  flex: 1;
}
.price-card ul li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.88rem;
  color: #c5cdd6;
}
.price-card ul li:last-child {
  border-bottom: none;
}
.price-card ul li i {
  color: var(--brand);
  margin-right: 0.4rem;
}

.testimonials {
  background: var(--bg-soft);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.t-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid var(--line);
  position: relative;
}
.t-card .stars {
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.t-card blockquote {
  font-style: italic;
  color: #c5cdd6;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
}
.t-card .author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.t-card .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.t-card .author small {
  color: var(--muted);
  font-size: 0.75rem;
  display: block;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.4rem;
  transition: transform 0.25s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #fff;
  margin: 2rem 0;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 0.6rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}
.contact-info .row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.8rem;
  background: var(--bg-soft);
  border-radius: 10px;
}
.contact-info .row i {
  color: var(--brand);
  font-size: 20px;
  margin-top: 2px;
}
.contact-info .row b {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.contact-info .row span {
  color: var(--text);
  font-size: 0.92rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #c5cdd6;
  display: block;
  margin-bottom: 0.3rem;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.18);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
}
.checkbox input {
  margin-top: 3px;
  accent-color: var(--brand);
}

.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

footer {
  background: #0a0e13;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-grid .links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-grid .links a {
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-grid .links a:hover {
  color: var(--accent);
}
.footer-grid .copy {
  color: var(--muted);
}

.policy-page {
  padding: 8rem 0 3rem;
}
.policy-page .container {
  max-width: 860px;
}
.policy-page h1 {
  margin-bottom: 0.5rem;
}
.policy-page .updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  display: block;
}
.policy-page h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}
.policy-page h3 {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: var(--text);
}
.policy-page p,
.policy-page li {
  font-size: 0.93rem;
  color: #bfc8d2;
}

.center-page {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem 3rem;
}
.center-page .inner {
  max-width: 520px;
}
.center-page .big {
  font-family: "Outfit", sans-serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.center-page .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  font-size: 38px;
  color: #fff;
  box-shadow: var(--shadow);
}

.cookie-popup {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  z-index: 200;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  transform: translateY(140%);
  transition: transform 0.4s ease;
}
.cookie-popup.show {
  transform: translateY(0);
}
.cookie-popup h4 {
  font-family: "Outfit", sans-serif;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}
.cookie-popup p {
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}
.cookie-popup .actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-popup .btn {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

@media (max-width: 480px) {
  section {
    padding: 2.2rem 0;
  }
  .hero {
    padding: 6.5rem 0 2.5rem;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  .cookie-popup {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 0.9rem;
  }
}
