:root {
  --blue-900: #04124f;
  --blue-800: #0a2d9e;
  --blue-700: #1358dd;
  --blue-500: #2d84ff;
  --gold-500: #ffb000;
  --gold-400: #ffc229;
  --ink-900: #081038;
  --ink-700: #21326e;
  --white: #f7faff;
  --line: rgba(255, 255, 255, 0.3);
  --card: rgba(255, 255, 255, 0.12);
  --card-solid: #f4f7ff;
  --max: 1120px;
  --radius: 20px;
  --shadow-lg: 0 30px 70px rgba(3, 17, 80, 0.35);
  --shadow-md: 0 12px 32px rgba(5, 27, 114, 0.22);
  --font: "Sora", "Segoe UI", Tahoma, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font);
  color: var(--white);
  background:
    radial-gradient(1000px 600px at 12% -10%, #3e9eff 0%, transparent 60%),
    radial-gradient(850px 520px at 100% 8%, #2a71ff 0%, transparent 58%),
    linear-gradient(165deg, var(--blue-900) 0%, var(--blue-800) 55%, #092987 100%);
  min-height: 100vh;
  line-height: 1.5;
}

header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(3, 18, 84, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.readProgress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  z-index: 85;
  pointer-events: none;
}

.readProgress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
}

.topbar {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 84px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-spacer { width: 140px; }

.brand {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.brand img {
  width: min(100%, 340px);
  max-height: 70px;
  object-fit: contain;
  display: block;
}

.lang {
  width: 140px;
  display: flex;
  justify-content: flex-end;
}

.lang select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
  color: #e9efff;
  background: rgba(2, 14, 61, 0.6);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 18px 90px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

main > section + section {
  margin-top: 34px;
}

.heroText,
.heroCard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-md);
}

.heroText { padding: 26px; }
.heroCard {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.heroCard::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 201, 64, 0.4), transparent 72%);
}

.pill {
  display: inline-flex;
  border: 1px solid rgba(255, 194, 41, 0.45);
  color: #fff3cb;
  background: rgba(255, 176, 0, 0.17);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(26px, 4.4vw, 42px);
  line-height: 1.1;
  color: #ffffff;
}

.subtitle {
  margin: 0 0 14px;
  color: #dce8ff;
  font-size: clamp(15px, 2.1vw, 19px);
}

.intro p { margin: 8px 0; color: #dce8ff; }

.intro ul,
.heroCard ul,
.offer ul {
  margin: 10px 0;
  padding-left: 18px;
}

.intro li,
.heroCard li,
.offer li { margin: 7px 0; }

.ctaRow {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btnPrimary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #2c1e00;
  box-shadow: 0 10px 24px rgba(255, 176, 0, 0.35);
}

.btnPrimary:hover { filter: brightness(1.05); }

.btnGhost {
  color: #f4f7ff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
}

.heroCardTag {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffe09a;
}

.heroCardFoot {
  margin: 12px 0 0;
  color: #d8e5ff;
}

.heroCardPrice {
  margin: 10px 0 0;
  font-size: clamp(32px, 4.8vw, 48px);
  font-weight: 800;
  color: #ffd149;
  line-height: 0.95;
}

.problem,
.response,
.closing,
.whoWeAre,
.offer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-md);
}

.problem,
.response,
.closing,
.whoWeAre {
  margin-top: 0;
  padding: 22px;
}

.problem h2,
.response h2,
#offersTitle,
.whoWeAre h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.8vw, 28px);
  color: #ffffff;
}

.problem p,
.impact p,
.whoWeAre p,
.offer p {
  color: #dce8ff;
}

.impact ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #dce8ff;
}

.impact li {
  margin: 7px 0;
}

.responseTableWrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 22, 94, 0.5);
}

.responseTable {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.responseTable th,
.responseTable td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 13px;
  text-align: left;
  vertical-align: top;
}

.responseTable th {
  color: #f3f7ff;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.16);
}

.responseTable td { color: #dbe7ff; font-size: 14px; }

.responseTable td:last-child {
  font-weight: 700;
  color: #ffe18f;
  white-space: nowrap;
}

.offers {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offer {
  padding: 18px;
  background: rgba(255, 255, 255, 0.11);
}

.offer h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #ffffff;
}

.offer p { margin: 0 0 10px; }

.closing p {
  margin: 0;
  font-size: 16px;
  color: #ebf2ff;
}

.whoWeAre h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  color: #ffffff;
}

.whoWeAre hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  margin: 16px 0;
}

.socialBridge {
  max-width: var(--max);
  margin: 14px auto 8px;
  padding: 0 18px;
  display: flex;
  justify-content: center;
}

.instagramLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 85, 125, 0.2), rgba(255, 185, 66, 0.2));
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.instagramLink svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.instagramLink:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  background: linear-gradient(135deg, rgba(255, 85, 125, 0.32), rgba(255, 185, 66, 0.3));
  text-decoration: none;
}

.instagramLink:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}


.siteFooter {
  max-width: var(--max);
  margin: 24px auto 30px;
  padding: 0 18px;
  text-align: center;
  color: #d5e4ff;
}

.footerTitle {
  margin: 0 0 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
}

.siteFooter p { margin: 6px 0; }

.siteFooter a {
  color: #f4f7ff;
  text-decoration: none;
}

.siteFooter a:hover { text-decoration: underline; }

.footerCopy { font-size: 12px; opacity: 0.9; }

.backToTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 600;
  color: #fff;
  background: rgba(4, 20, 86, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.backToTop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.modalBackdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
  background: rgba(2, 11, 46, 0.72);
}

.modal {
  width: min(560px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--card-solid);
  color: var(--ink-900);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modalHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(8, 16, 56, 0.12);
}

.modalBody { padding: 16px; }

form { display: grid; gap: 12px; }

label {
  display: block;
  margin: 0 0 4px;
  color: var(--ink-700);
  font-size: 13px;
}

input {
  width: 100%;
  border: 1px solid #b7c4ee;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.x {
  border: 1px solid #b8c5ed;
  background: #f4f8ff;
  color: #1f3175;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  font-weight: 700;
  cursor: pointer;
}

.err {
  display: none;
  margin-top: 4px;
  color: #9d162c;
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .topbar-spacer,
  .lang { width: 120px; }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 72px;
    padding: 0 12px;
  }

  .topbar-spacer { display: none; }
  .brand { justify-content: flex-start; }
  .brand img { max-height: 54px; }
  .lang { width: 112px; }

  .heroText,
  .heroCard,
  .problem,
  .response,
  .closing,
  .whoWeAre { padding: 16px; }

  .row2 { grid-template-columns: 1fr; }

  .wrap { padding: 22px 12px 76px; }

  main > section + section {
    margin-top: 26px;
  }


  .socialBridge {
    margin-top: 8px;
  }

  .instagramLink {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
