:root {
  --bg: #f4f6f3;
  --bg-soft: #eef2ea;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #101719;
  --text: #0b0f14;
  --muted: #24313a;
  --line: rgba(18, 32, 37, 0.12);
  --line-strong: rgba(18, 32, 37, 0.2);
  --primary: #0f766e;
  --primary-2: #16a085;
  --accent: #f59e0b;
  --good: #0f9d58;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 32px rgba(15, 43, 48, 0.08);
  --shadow-card: 0 24px 52px rgba(15, 43, 48, 0.12);
  --shadow-btn: 0 12px 30px rgba(15, 118, 110, 0.24);
  --max: 1240px;
  --grad-main: linear-gradient(135deg, #0f766e 0%, #16a085 52%, #2cc6a2 100%);
  --grad-soft: radial-gradient(circle at 18% 16%, rgba(22, 160, 133, 0.18), transparent 42%),
    radial-gradient(circle at 78% 10%, rgba(245, 158, 11, 0.14), transparent 36%),
    linear-gradient(165deg, #f8fbf8 0%, #edf3ef 46%, #e8f1ee 100%);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--grad-soft);
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 460px;
  height: 460px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(22, 160, 133, 0.22), transparent 70%);
}

body::after {
  width: 380px;
  height: 380px;
  bottom: -130px;
  left: -100px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 68%);
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--max);
  width: min(96vw, var(--max));
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(248, 252, 249, 0.72);
  border-bottom: 1px solid rgba(18, 32, 37, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand b {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0.01em;
}

.logo {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--grad-main);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.34);
}

.logo--sm {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 16px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  color: #ffffff;
  border: 0;
  background: var(--grad-main);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.28);
}

.lang {
  display: inline-flex;
  gap: 5px;
  margin-left: 6px;
  padding: 4px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.lang__btn {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  padding: 6px 8px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 800;
  cursor: pointer;
}

.lang__btn.is-active {
  color: #ffffff;
  background: var(--grad-main);
}

header.hero {
  padding: 42px 0 28px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 20px;
  align-items: stretch;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.hero__left {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__right {
  padding: 16px;
}

.hero__rightBottom {
  padding: 14px 4px 2px;
}

.deal-bubble {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  margin-inline: auto;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ff6a00 0%, #ff3b3b 56%, #ff1f7a 100%);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(255, 78, 55, 0.34);
}

.deal-bubble::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 18px;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.4), transparent 48%);
}

.deal-bubble__tag {
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.deal-bubble__prices {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.deal-bubble__prices s {
  opacity: 0.88;
  font-size: 1rem;
  font-weight: 700;
}

.deal-bubble__prices b {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.deal-bubble__note {
  font-size: 0.92rem;
  opacity: 0.92;
  font-weight: 600;
}

.kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 750;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.kicker__dot {
  opacity: 0.5;
}

h1 {
  margin: 16px 0 10px;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.05rem, 3.8vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.sub {
  margin: 0 auto;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.11rem;
  font-weight: 520;
}

.bullets {
  margin: 20px auto 16px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  width: fit-content;
}

.bullets li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
  text-align: center;
  font-size: 1rem;
}

.tick {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--good);
  background: rgba(15, 157, 88, 0.12);
  border: 1px solid rgba(15, 157, 88, 0.24);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.price {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
}

.price .pill {
  border: 1px dashed rgba(15, 118, 110, 0.4);
  background: rgba(15, 118, 110, 0.08);
}

.price b {
  color: var(--text);
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
}

.price s {
  opacity: 0.7;
}

.price__note {
  font-size: 1rem;
  font-weight: 560;
}

.trust {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.trust span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

.disclaimer {
  margin: 12px 0 0;
  color: var(--muted);
  opacity: 0.9;
  font-size: 0.9rem;
  text-align: center;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.preview {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(20, 37, 43, 0.06);
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.preview:hover img {
  transform: scale(1.07);
}

.preview__tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(16, 23, 25, 0.55);
  color: #ffffff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.strip__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.strip__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 118, 110, 0.13);
  border: 1px solid rgba(15, 118, 110, 0.22);
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.16);
  flex-shrink: 0;
}

.strip__item b {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 1.03rem;
}

.strip__item .muted {
  color: var(--text);
  opacity: 0.88;
  font-size: 0.96rem;
  line-height: 1.45;
}

section {
  padding: 24px 0;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.section-title h2 {
  margin: 0;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.72rem);
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 520;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.mini {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  padding: 18px;
}

.mini h3 {
  margin: 0 0 7px;
  font-size: 1rem;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
}

.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 520;
}

.forwho__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.forwho__head h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.forwho__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  border: 1px solid rgba(18, 32, 37, 0.12);
  box-shadow: 0 8px 20px rgba(15, 43, 48, 0.08);
}

.forwho__icon--builders {
  background: rgba(15, 118, 110, 0.14);
}

.forwho__icon--arch {
  background: rgba(53, 123, 245, 0.14);
}

.forwho__icon--invest {
  background: rgba(245, 158, 11, 0.16);
}

.forwho__icon--family {
  background: rgba(221, 76, 57, 0.14);
}

.forwho__icon--plan {
  background: rgba(84, 75, 173, 0.14);
}

.forwho__icon--student {
  background: rgba(42, 157, 143, 0.16);
}

#forwho .mini p {
  font-size: 1.03rem;
  line-height: 1.5;
}

.pills {
  margin-top: 8px;
}

.list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 620;
  font-size: 0.98rem;
}

.dot {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--primary-2);
  flex: 0 0 auto;
}

.carousel {
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.carousel__viewport {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.carousel__track {
  display: flex;
  will-change: transform;
  transition: transform 0.35s ease;
}

.carousel__slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.carousel__slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.carousel__caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(16, 23, 25, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(16, 23, 25, 0.55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.carousel__btn--left {
  left: 16px;
}

.carousel__btn--right {
  right: 16px;
}

.carousel__dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel__dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 32, 37, 0.24);
  cursor: pointer;
}

.carousel__dot.is-active {
  background: var(--grad-main);
  transform: scale(1.1);
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.quote__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.star {
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(18, 32, 37, 0.2);
}

.star.is-on {
  color: #f4b400;
}

.quote__text {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.52;
}

.quote__who {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(15, 118, 110, 0.3);
  background: rgba(15, 118, 110, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar__fallback {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.quote__name {
  font-weight: 750;
}

.quote__role {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-banner {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(140deg, rgba(16, 23, 25, 0.92), rgba(12, 77, 74, 0.92));
  border-color: rgba(255, 255, 255, 0.16);
}

.cta-banner h3,
.cta-banner p,
.cta-banner .badge {
  color: #ffffff;
}

.cta-banner h3 {
  margin: 0;
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.56rem);
}

.cta-banner p {
  margin: 8px 0 0;
  opacity: 0.88;
}

.cta-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-banner .btn:not(.btn--primary) {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.faq {
  padding: 18px;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.76);
}

details + details {
  margin-top: 10px;
}

details p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.pay-methods {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 730;
}

summary::-webkit-details-marker {
  display: none;
}

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

footer {
  padding: 28px 0 36px;
}

.footer-grid {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.small {
  opacity: 0.9;
}

.legal-copy p {
  margin: 0 0 10px;
}

.legal-copy ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal-copy li {
  margin-bottom: 6px;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__left,
.hero__right,
.strip,
section .card,
section .mini {
  animation: riseIn 0.55s ease both;
}

@media (min-width: 1280px) {
  .wrap {
    padding: 0 26px;
  }

  header.hero {
    padding: 50px 0 34px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 24px;
  }

  .hero__left {
    padding: 34px;
  }

  .hero__right {
    padding: 18px;
  }

  section {
    padding: 30px 0;
  }

  .carousel__slide img {
    height: 560px;
  }
}

@media (min-width: 1536px) {
  :root {
    --max: 1460px;
  }

  .topbar__inner {
    min-height: 84px;
  }

  .brand b {
    font-size: 1.1rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 28px;
  }

  .hero__left {
    padding: 38px;
  }

  .hero__right {
    padding: 20px;
  }

  .preview-grid {
    gap: 14px;
  }

  .section-title h2 {
    font-size: clamp(1.48rem, 1.7vw, 2rem);
  }

  .section-title p {
    font-size: 0.98rem;
  }

  .carousel__slide img {
    height: 620px;
  }
}

@media (min-width: 1920px) {
  :root {
    --max: 1620px;
  }

  .wrap {
    width: min(94vw, var(--max));
  }

  .hero__left,
  .hero__right {
    border-radius: 24px;
  }

  .hero__left {
    padding: 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 3.3vw, 3.6rem);
  }

  .carousel__slide img {
    height: 680px;
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .two,
  .grid-3,
  .strip {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    min-height: 70px;
    padding: 10px 0;
  }

  .nav {
    gap: 10px;
  }

  .hero__left {
    padding: 24px;
  }

  .carousel__slide img {
    height: 380px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  header.hero {
    padding-top: 30px;
  }

  .deal-bubble {
    width: 100%;
  }

  .deal-bubble__prices b {
    font-size: 1.6rem;
  }

  .brand b {
    display: none;
  }

  .topbar .btn--primary {
    padding: 9px 11px;
    font-size: 0.9rem;
  }

  .kicker {
    font-size: 0.8rem;
  }

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

  .carousel__slide img {
    height: 290px;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
