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

:root {
  --bg: #050608;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #a6adbb;
  --red: #ff3348;
  --blue: #7ab9ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 51, 72, 0.11), transparent 18%),
    radial-gradient(circle at 82% 8%, rgba(122, 185, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #040507 0%, #050608 22%, #07090d 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

.page-shell {
  position: relative;
  min-height: 100vh;
}

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

.topbar {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(calc(100% - 32px), 1160px);
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(9, 11, 15, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 144px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  font-size: 0.84rem;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a {
  padding: 7px 8px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.nav-cta {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #f44153 0%, #8e101d 100%);
  box-shadow: 0 18px 44px rgba(181, 24, 39, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
}

.hero-page {
  padding: 146px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-media,
.content-panel,
.faq-wrap,
.footer-wrap,
.stats-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(9, 11, 15, 0.84);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 40px;
}

.hero-media {
  overflow: hidden;
  min-height: 500px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d4dbe4;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
}

h1,
h2,
h3 {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.96;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.stats-panel {
  margin-top: 24px;
  padding: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.stat-card strong {
  display: block;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 0 0 96px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.content-panel {
  padding: 32px;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.card p,
.card li,
.content-panel p,
.content-panel li {
  color: var(--muted);
}

.card ul,
.content-panel ul {
  margin: 0;
  padding-left: 18px;
}

.card li + li,
.content-panel li + li {
  margin-top: 8px;
}

.wide-media {
  overflow: hidden;
  min-height: 340px;
  padding: 0;
}

.wide-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.faq-wrap {
  padding: 12px;
}

.faq-item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  list-style: none;
  cursor: pointer;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: #ffb0b8;
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
}

.footer {
  padding: 24px 0 56px;
}

.footer-wrap {
  padding: 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.footer-logo {
  width: 178px;
}

.footer-copy,
.footer-col a,
.footer-col address,
.footer-bottom {
  color: var(--muted);
}

.footer-heading {
  margin: 0 0 12px;
  color: #e6e9ee;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 9px;
}

.footer-col address {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.92rem;
}

.developer-mark {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}

.developer-mark img {
  width: 85px;
  height: auto;
  opacity: 0.88;
}

.developer-mark:hover img {
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 110px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .cards-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .hero-page {
    padding-top: 128px;
  }

  .hero-copy,
  .content-panel,
  .footer-wrap,
  .stats-panel {
    padding: 24px;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .topbar-inner {
    width: min(calc(100% - 20px), 1080px);
    padding: 12px 14px;
  }

  .brand img {
    width: 132px;
  }

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

  .developer-mark {
    margin-left: 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 104px;
    width: 58px;
    height: 58px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
