:root {
  --cream: #fbf4df;
  --cream-strong: #f4e5bd;
  --surface: #ffffff;
  --surface-soft: #fffaf0;
  --ink: #162136;
  --muted: #5f6a79;
  --navy: #0c1f35;
  --gold: #c99326;
  --gold-soft: #f0cf84;
  --green: #16866f;
  --blue: #2468a8;
  --line: #eadfca;
  --shadow: 0 16px 34px rgba(22, 33, 54, 0.1);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(240, 207, 132, 0.35), transparent 32rem),
    linear-gradient(180deg, var(--cream), #fffdf7 42%, #f8f2e4);
  color: var(--ink);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(36, 104, 168, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.75rem;
  background: rgba(251, 244, 223, 0.88);
  backdrop-filter: blur(14px);
}

.header-card {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid rgba(201, 147, 38, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(12, 31, 53, 0.08);
}

.brand,
.footer-brand {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: min(12.25rem, 54vw);
  height: auto;
  max-height: 3.5rem;
  object-fit: contain;
}

.menu-toggle {
  min-height: 2.75rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.site-nav {
  grid-column: 1 / -1;
  display: none;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding-top: 0.55rem;
}

.site-nav.is-open {
  display: grid;
}

.site-nav a,
.footer-links a {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a {
  padding: 0.65rem 0.75rem;
  background: var(--surface-soft);
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover,
.inline-links a:hover {
  color: var(--blue);
}

.page-shell {
  width: min(1160px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 0.5rem 0 2rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0.55rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.hero-card,
.section-card,
.feature-card,
.notice-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  gap: 1.1rem;
  overflow: hidden;
  padding: 1rem;
  min-height: 24rem;
}

.home-hero {
  align-items: center;
  min-height: auto;
  padding: 1rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.home-hero .hero-copy {
  gap: 0.35rem;
}

.home-hero .cta-row {
  display: grid;
  grid-template-columns: 1fr;
}

.home-hero-media {
  order: -1;
}

.home-hero h1 {
  max-width: 11ch;
  font-size: clamp(2.45rem, 12vw, 4.45rem);
}

.home-hero .hero-copy > p:not(.badge) {
  max-width: 39rem;
}

.home-hero-media {
  position: relative;
  display: grid;
  gap: 0.7rem;
  align-self: stretch;
  align-content: center;
  padding: 0.65rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 147, 38, 0.16), rgba(36, 104, 168, 0.12)),
    var(--surface-soft);
  border: 1px solid var(--line);
}

.home-hero-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 633 / 227;
  object-fit: contain;
  background: #12082f;
  box-shadow: 0 16px 34px rgba(12, 31, 53, 0.14);
}

.home-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.home-hero-points span {
  min-height: 2.35rem;
  display: grid;
  place-items: center;
  padding: 0.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: clamp(0.78rem, 3.5vw, 0.9rem);
  font-weight: 900;
  text-align: center;
}

.badge,
.eyebrow {
  margin: 0 0 0.75rem;
  color: #805b0d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.85rem;
  color: var(--navy);
  font-size: clamp(2.2rem, 11vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 6vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-copy > p:not(.badge) {
  max-width: 48rem;
  font-size: 1.04rem;
}

.cta-row,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.button,
.quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 8px;
  padding: 0.72rem 1rem;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
}

.button.primary,
.quick-link {
  background: var(--navy);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--navy);
}

.button.whatsapp,
.quick-link.whatsapp {
  background: var(--green);
  color: #fff;
}

.button.telegram,
.quick-link.telegram {
  background: var(--blue);
  color: #fff;
}

.hero-visual {
  position: relative;
  min-height: 16rem;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 134, 111, 0.15), rgba(36, 104, 168, 0.16)),
    var(--surface-soft);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.phone-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78%, 18rem);
  transform: translate(-50%, -50%);
  padding: 1.25rem;
  border: 0.7rem solid #f5ead4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 18px 18px 0 rgba(12, 31, 53, 0.13);
}

.phone-shell span,
.phone-shell strong,
.phone-shell em {
  display: block;
}

.phone-shell span {
  margin-bottom: 1rem;
  color: var(--green);
  font-weight: 900;
}

.phone-shell strong {
  color: var(--navy);
  font-size: 1.25rem;
}

.phone-shell em {
  margin-top: 0.35rem;
  color: var(--muted);
  font-style: normal;
}

.status-pill {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 4.2rem;
  min-height: 2.2rem;
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(12, 31, 53, 0.12);
}

.status-pill.one { left: 1rem; bottom: 1rem; }
.status-pill.two { right: 1rem; top: 1rem; background: var(--green); color: #fff; }
.status-pill.three { right: 1rem; bottom: 1rem; background: var(--blue); color: #fff; }

.app-download-visual {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.app-action-card {
  width: min(100%, 22rem);
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  box-shadow: 0 16px 34px rgba(12, 31, 53, 0.1);
}

.app-logo {
  width: 6.7rem;
  height: 6.7rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(12, 31, 53, 0.16));
}

.app-action-copy {
  display: grid;
  gap: 0.25rem;
}

.app-action-copy span {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0;
}

.app-action-copy strong {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
}

.app-action-copy p {
  margin: 0;
  font-size: 0.96rem;
}

.app-action-buttons {
  width: 100%;
  display: grid;
  gap: 0.65rem;
}

.section-card,
.feature-card,
.notice-card {
  margin-top: 1rem;
  padding: 1.15rem;
}

.feature-card,
.split {
  display: grid;
  gap: 1rem;
}

.notice-card {
  background: linear-gradient(135deg, #fff9e8, #f3fbf8);
}

.content-flow p:last-child,
.section-card > p:last-child,
.notice-card > p:last-child,
.mini-card p:last-child,
.info-panel p:last-child,
.two-col-list p:last-child {
  margin-bottom: 0;
}

.button-grid {
  display: grid;
  gap: 0.65rem;
}

.button-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checklist-grid,
.two-col-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.mini-card,
.info-panel,
.compare-box,
.version-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 1rem;
}

.info-panel {
  background: #f9f0d6;
}

.info-panel.green {
  background: #e9f7f2;
}

.info-panel.blue {
  background: #e9f2fb;
}

.clean-list,
.step-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.clean-list li,
.step-list li {
  margin: 0.65rem 0;
}

.step-list strong {
  color: var(--navy);
}

.version-card,
.compare-box {
  display: grid;
  gap: 0.7rem;
}

.version-card div,
.compare-box div {
  display: grid;
  gap: 0.12rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.version-card div:last-child,
.compare-box div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.version-card span,
.compare-box span {
  color: var(--muted);
  font-size: 0.85rem;
}

.version-card strong,
.compare-box strong {
  color: var(--navy);
}

.small-note {
  margin: 1rem 0 0;
  font-size: 0.94rem;
}

.inline-links a,
.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.inline-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 0 1rem;
}

summary {
  min-height: 3.3rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin-bottom: 1rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 1.5rem 0 2rem;
  background: var(--navy);
  color: #fff;
}

.footer-grid {
  width: min(1160px, calc(100% - 1.5rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.footer-brand {
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-note {
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 760px) {
  .site-header {
    padding: 1rem;
  }

  .header-card {
    grid-template-columns: auto 1fr;
    padding: 0.75rem 1rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    grid-column: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.25rem;
    padding-top: 0;
  }

  .site-nav a {
    min-height: 2.45rem;
    padding: 0.45rem 0.65rem;
    background: transparent;
  }

  .page-shell {
    width: min(1160px, calc(100% - 2rem));
    padding-bottom: 3rem;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    padding: clamp(1.25rem, 3vw, 2rem);
  }

  .home-hero {
    padding: clamp(1.4rem, 3vw, 2.5rem);
  }

  .home-hero-media {
    order: 0;
    padding: 0.85rem;
  }

  .home-hero .cta-row {
    display: flex;
  }

  .section-card,
  .feature-card,
  .notice-card {
    margin-top: 1.15rem;
    padding: clamp(1.4rem, 3vw, 2rem);
  }

  .feature-card,
  .split {
    grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
    align-items: center;
  }

  .split.reverse > div:first-child {
    order: 2;
  }

  .button-grid.compact,
  .checklist-grid,
  .two-col-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .version-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .version-card div:nth-last-child(2) {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .checklist-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-copy > p:not(.badge) {
    font-size: 1.1rem;
  }
}
