:root {
  --green: #00a88f;
  --green-dark: #007d6f;
  --green-soft: #e3f8f4;
  --blue: #2f6df6;
  --blue-soft: #edf3ff;
  --sun: #f8b84e;
  --sun-soft: #fff4dc;
  --coral: #f9735b;
  --coral-soft: #fff0ec;
  --ink: #1f2937;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #f2f7f6;
  --white: #ffffff;
  --warning: #f59e0b;
  --shadow: 0 24px 70px rgba(31, 41, 55, 0.12);
}

.fs-client-safe {
  min-height: 72vh;
  padding: 130px 22px 80px;
  background: #f6f8f8;
}

.fs-client-safe-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(31, 41, 55, 0.1);
}

.fs-client-safe-logo {
  display: block;
  width: min(240px, 70vw);
  height: auto;
  margin-bottom: 22px;
}

.fs-client-safe h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.98;
}

.fs-client-safe p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.fs-client-safe-login form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.fs-client-safe-login label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 850;
}

.fs-client-safe-login input:not([type="checkbox"]) {
  min-height: 50px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
}

.fs-client-safe-login .login-remember label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.fs-client-safe-login .button,
.fs-client-safe-login input[type="submit"] {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.fs-client-safe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.fs-client-safe-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
}

.fs-client-safe-grid span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.fs-client-safe-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.fs-client-safe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 720px) {
  .fs-client-safe {
    padding: 110px 14px 60px;
  }

  .fs-client-safe-card {
    padding: 22px;
  }

  .fs-client-safe-grid {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #e9faf6 0, #f8fbfb 420px, var(--paper) 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(0, 168, 143, 0.16);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
}

body.admin-bar .site-header {
  top: 32px;
}

.brand img {
  width: 214px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
}

main {
  max-width: 100%;
  overflow-x: hidden;
}

.main-nav a,
.ghost-link,
.primary-link {
  flex-shrink: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.ghost-link:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-link {
  width: 42px;
  padding: 0;
}

.icon-link i {
  width: 20px;
  height: 20px;
}

.primary-link,
.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(0, 168, 143, 0.2);
}

.primary-link:hover,
.button.primary:hover {
  background: var(--green-dark);
}

.section,
.section-band,
.quick-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-band {
  border: 1px solid rgba(0, 168, 143, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fffc 100%);
  box-shadow: var(--shadow);
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(32px, 6vw, 72px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 168, 143, 0.08), transparent 34%),
    linear-gradient(180deg, transparent, rgba(47, 109, 246, 0.05));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(47, 109, 246, 0.2);
  background: var(--blue-soft);
  color: var(--blue);
}

.button.secondary:hover {
  border-color: rgba(0, 168, 143, 0.3);
  background: var(--green-soft);
  color: var(--green-dark);
}

.button.full {
  width: 100%;
}

.button i,
.quick-panel i,
.service-card i,
.check-list i,
.contact-cards i {
  width: 20px;
  height: 20px;
}

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

.hero-stats div {
  padding: 14px;
  border: 1px solid rgba(0, 168, 143, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats div:nth-child(2) {
  border-color: rgba(47, 109, 246, 0.18);
  background: var(--blue-soft);
}

.hero-stats div:nth-child(3) {
  border-color: rgba(248, 184, 78, 0.35);
  background: var(--sun-soft);
}

.hero-stats dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--green-soft);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 168, 143, 0.02), rgba(0, 125, 111, 0.42));
}

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

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: min(290px, calc(100% - 34px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(31, 41, 55, 0.2);
}

.floating-card i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.print-card i {
  background: var(--sun-soft);
  color: #a56000;
}

.floating-card strong,
.floating-card span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-card strong {
  font-weight: 900;
}

.floating-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.lesson-card {
  top: 26px;
  left: 26px;
}

.print-card {
  right: 26px;
  bottom: 26px;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.quick-panel a {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 168, 143, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.quick-panel a:hover {
  border-color: rgba(0, 168, 143, 0.3);
  background: var(--green-soft);
  color: var(--green-dark);
}

.quick-panel a:nth-child(2) {
  border-color: rgba(47, 109, 246, 0.18);
  background: var(--blue-soft);
  color: var(--blue);
}

.quick-panel a:nth-child(3) {
  border-color: rgba(248, 184, 78, 0.36);
  background: var(--sun-soft);
  color: #975a00;
}

.quick-panel a:nth-child(4) {
  border-color: rgba(249, 115, 91, 0.25);
  background: var(--coral-soft);
  color: #b43928;
}

.color-strip {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px auto 0;
}

.color-strip article {
  min-height: 130px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(0, 168, 143, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(31, 41, 55, 0.08);
}

.color-strip article:nth-child(2) {
  border-color: rgba(47, 109, 246, 0.18);
  background: #f7faff;
}

.color-strip article:nth-child(3) {
  border-color: rgba(249, 115, 91, 0.22);
  background: #fff7f4;
}

.color-strip article:nth-child(4) {
  border-color: rgba(248, 184, 78, 0.34);
  background: #fffaf0;
}

.color-strip i {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.color-strip article:nth-child(2) i {
  background: var(--blue-soft);
  color: var(--blue);
}

.color-strip article:nth-child(3) i {
  background: var(--coral-soft);
  color: #b43928;
}

.color-strip article:nth-child(4) i {
  background: var(--sun-soft);
  color: #975a00;
}

.color-strip strong {
  font-size: 18px;
  font-weight: 950;
}

.color-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.promo-banner {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 22px auto 0;
  padding: 24px;
  border: 1px solid rgba(248, 184, 78, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #fff7e4 0%, #ffffff 56%, #effdf9 100%);
  box-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
}

.promo-banner h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.promo-banner p:not(.eyebrow) {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 860px;
  text-align: center;
  margin-inline: auto;
}

.section-heading p:not(.eyebrow),
.copy-block p,
.platform-copy p,
.contact p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

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

.service-card,
.quote-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(0, 168, 143, 0.14);
  border-radius: 8px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.quote-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--green);
}

.service-card i,
.quote-grid i {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.service-card:nth-child(2) {
  border-color: rgba(47, 109, 246, 0.18);
  background: #fbfdff;
}

.service-card:nth-child(2)::before {
  background: var(--blue);
}

.service-card:nth-child(2) i {
  background: var(--blue-soft);
  color: var(--blue);
}

.service-card:nth-child(3) {
  border-color: rgba(248, 184, 78, 0.32);
  background: #fffdfa;
}

.service-card:nth-child(3)::before {
  background: var(--sun);
}

.service-card:nth-child(3) i {
  background: var(--sun-soft);
  color: #975a00;
}

.service-card:nth-child(4) {
  border-color: rgba(249, 115, 91, 0.22);
  background: #fffdfc;
}

.service-card:nth-child(4)::before {
  background: var(--coral);
}

.service-card:nth-child(4) i {
  background: var(--coral-soft);
  color: #b43928;
}

.service-card h3 {
  margin-top: 20px;
}

.service-card p,
.quote-grid p,
.method-steps p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.48;
}

.packs {
  padding-top: 38px;
}

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

.pack-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(0, 168, 143, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(31, 41, 55, 0.08);
}

.pack-card:nth-child(2) {
  border-color: rgba(47, 109, 246, 0.18);
  background: #fbfdff;
}

.pack-card:nth-child(3) {
  border-color: rgba(248, 184, 78, 0.34);
  background: #fffdfa;
}

.pack-card:nth-child(4) {
  border-color: rgba(249, 115, 91, 0.22);
  background: #fffdfc;
}

.pack-card i {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.pack-card:nth-child(2) i {
  background: var(--blue-soft);
  color: var(--blue);
}

.pack-card:nth-child(3) i {
  background: var(--sun-soft);
  color: #975a00;
}

.pack-card:nth-child(4) i {
  background: var(--coral-soft);
  color: #b43928;
}

.pack-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.48;
}

.pack-card a {
  align-self: end;
  width: fit-content;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 950;
  text-decoration: none;
}

.pack-card a:hover {
  color: var(--blue);
}

.method {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: start;
  padding: 36px;
  background: linear-gradient(135deg, #00a88f 0%, #007d6f 100%);
  color: var(--white);
}

.method .eyebrow,
.method h2 {
  color: var(--white);
}

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

.method-steps article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.method-steps span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 950;
}

.method-steps strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
}

.method-steps p {
  color: rgba(255, 255, 255, 0.82);
}

.two-column,
.platform,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
}

.check-list i {
  padding: 3px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.price-row div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(0, 168, 143, 0.18);
  border-radius: 8px;
  background: var(--green-soft);
}

.price-row div:nth-child(2) {
  border-color: rgba(248, 184, 78, 0.36);
  background: var(--sun-soft);
}

.price-row i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
}

.price-row div:nth-child(2) i {
  color: #975a00;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.price-row strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
}

.print-form {
  padding: 24px;
  border: 1px solid rgba(248, 184, 78, 0.38);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 42%);
  box-shadow: var(--shadow);
}

.print-form h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.print-form h3 i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: var(--sun);
  color: var(--white);
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

input:focus,
select:focus {
  outline: 3px solid rgba(47, 109, 246, 0.14);
  border-color: #b9d0ff;
}

.form-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 10px;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 4px 0 12px;
}

.segmented label {
  margin: 0;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.segmented input:checked + span {
  border-color: rgba(0, 168, 143, 0.28);
  background: var(--green-soft);
  color: var(--green-dark);
}

.file-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-field span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px dashed rgba(0, 168, 143, 0.42);
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  cursor: pointer;
}

.form-status {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.form-status.success {
  border: 1px solid rgba(0, 168, 143, 0.2);
  background: var(--green-soft);
  color: var(--green-dark);
}

.form-status.warning {
  border: 1px solid rgba(245, 158, 11, 0.22);
  background: #fff7ed;
  color: #9a3412;
}

.form-status.error {
  border: 1px solid rgba(220, 38, 38, 0.18);
  background: #fff1f2;
  color: #b91c1c;
}

.estimate {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--green-soft);
  font-weight: 900;
}

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

.estimate strong {
  color: var(--green-dark);
  font-size: 24px;
}

.platform {
  padding: 42px;
  background: linear-gradient(135deg, #f3f7ff 0%, #ffffff 52%, #effdf9 100%);
  border-color: rgba(47, 109, 246, 0.18);
}

.platform-copy {
  max-width: 560px;
}

.app-preview {
  padding: 18px;
  border: 1px solid rgba(47, 109, 246, 0.18);
  border-radius: 8px;
  background: #f7faff;
}

.app-top {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.app-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.app-top span:nth-child(2) {
  background: var(--sun);
}

.app-top span:nth-child(3) {
  background: var(--blue);
}

.app-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 72px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(47, 109, 246, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.app-card.highlight {
  border-color: #a8eee2;
  background: var(--green-soft);
}

.app-card i,
.app-grid i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.app-grid div:nth-child(2) i {
  background: var(--blue-soft);
  color: var(--blue);
}

.app-grid div:nth-child(3) i {
  background: var(--sun-soft);
  color: #975a00;
}

.app-grid div:nth-child(4) i {
  background: var(--coral-soft);
  color: #b43928;
}

.app-grid div:nth-child(5) i {
  background: var(--green-soft);
  color: var(--green-dark);
}

.app-card strong,
.app-card small {
  display: block;
}

.app-card small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 750;
}

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

.app-grid div {
  min-height: 92px;
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(0, 168, 143, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

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

.loyalty {
  padding-top: 56px;
}

.loyalty-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(0, 168, 143, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 20%, rgba(248, 184, 78, 0.24), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #effdf9 52%, #f5f8ff 100%);
  box-shadow: var(--shadow);
}

.loyalty-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.loyalty-copy .button {
  margin-top: 22px;
}

.digital-card {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 168, 143, 0.95), rgba(47, 109, 246, 0.9)),
    var(--green);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(0, 125, 111, 0.28);
  position: relative;
  overflow: hidden;
}

.digital-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -70px;
  bottom: -90px;
  border: 32px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.digital-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.digital-card-top img {
  width: 176px;
  max-height: 58px;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.digital-card-top i {
  width: 48px;
  height: 48px;
  padding: 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.digital-card span,
.digital-card strong,
.digital-card p,
.digital-card-code {
  position: relative;
  z-index: 1;
}

.digital-card span {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.digital-card strong {
  display: block;
  margin-top: 6px;
  font-family: Poppins, Inter, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.digital-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.digital-card-code {
  width: fit-content;
  margin-top: 22px;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.quote-grid article {
  min-height: 180px;
}

.quote-grid article:nth-child(2) {
  border-color: rgba(248, 184, 78, 0.32);
  background: #fffdfa;
}

.quote-grid article:nth-child(2)::before {
  background: var(--sun);
}

.quote-grid article:nth-child(2) i {
  background: var(--sun-soft);
  color: #975a00;
}

.quote-grid article:nth-child(3) {
  border-color: rgba(47, 109, 246, 0.18);
  background: #fbfdff;
}

.quote-grid article:nth-child(3)::before {
  background: var(--blue);
}

.quote-grid article:nth-child(3) i {
  background: var(--blue-soft);
  color: var(--blue);
}

.contact {
  margin-bottom: 0;
  padding: 36px;
  background: linear-gradient(135deg, #007d6f 0%, #00a88f 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact .eyebrow,
.contact h2,
.contact p {
  color: var(--white);
}

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

.contact-cards a {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
}

.contact-cards i {
  color: var(--white);
}

.contact-cards span {
  font-weight: 950;
}

.contact-cards small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.contact-cards a:nth-child(2) {
  background: rgba(47, 109, 246, 0.22);
}

.contact-cards a:nth-child(4) {
  background: rgba(248, 184, 78, 0.22);
}

.site-footer-credit {
  width: min(1180px, calc(100% - 40px));
  margin: 12px auto 34px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 168, 143, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(102, 112, 133, 0.82);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.04);
}

.site-footer-credit a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.site-footer-credit a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-actions {
  display: none;
}

.forstudents-content {
  min-height: 50vh;
}

.forstudents-content .service-card {
  max-width: 920px;
  margin: 0 auto;
}

.forstudents-content .forstudents-full-page {
  margin: -84px 0 0;
}

.forstudents-content .forstudents-full-page > h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.forstudents-content h1 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 64px);
}

.forstudents-content p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.study-page {
  padding-top: 28px;
}

.study-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(86vh - 100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px);
  background:
    radial-gradient(circle at 86% 16%, rgba(248, 184, 78, 0.26), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #effdf9 56%, #f3f7ff 100%);
}

.study-hero-copy {
  max-width: 720px;
}

.study-hero-panel {
  display: grid;
  gap: 12px;
}

.study-hero-panel div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(0, 168, 143, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
}

.study-hero-panel div:nth-child(2) {
  border-color: rgba(47, 109, 246, 0.18);
  background: var(--blue-soft);
}

.study-hero-panel div:nth-child(3) {
  border-color: rgba(248, 184, 78, 0.34);
  background: var(--sun-soft);
}

.study-hero-panel i {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.study-hero-panel div:nth-child(2) i {
  background: var(--white);
  color: var(--blue);
}

.study-hero-panel div:nth-child(3) i {
  background: var(--white);
  color: #975a00;
}

.study-hero-panel strong,
.study-hero-panel span {
  display: block;
}

.study-hero-panel strong {
  font-size: 18px;
  font-weight: 950;
}

.study-hero-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.study-service-grid .service-card {
  min-height: 250px;
}

.study-path {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
  margin: 0 auto;
  padding: 36px;
  background: linear-gradient(135deg, #007d6f 0%, #00a88f 100%);
  color: var(--white);
}

.study-path .eyebrow,
.study-path h2 {
  color: var(--white);
}

.study-family {
  align-items: start;
}

.study-cta {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 auto 36px;
  padding: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fffc 100%);
}

.study-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.card-page,
.points-page {
  padding-top: 28px;
}

.card-hero,
.points-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(84vh - 100px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px);
  overflow: hidden;
}

.card-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(248, 184, 78, 0.28), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(47, 109, 246, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f0fffb 54%, #f5f8ff 100%);
}

.points-hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(47, 109, 246, 0.2), transparent 25%),
    radial-gradient(circle at 92% 82%, rgba(248, 184, 78, 0.28), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4fffc 50%, #fff9ea 100%);
}

.points-dashboard {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(47, 109, 246, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(31, 41, 55, 0.12);
}

.points-dashboard-top {
  min-height: 280px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 16%, rgba(248, 184, 78, 0.32), transparent 26%),
    linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
}

.points-dashboard-top span,
.points-dashboard-top small {
  font-weight: 850;
  opacity: 0.82;
}

.points-dashboard-top strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(76px, 10vw, 128px);
  line-height: 0.95;
}

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

.points-dashboard-grid article {
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 8px;
  background: var(--white);
}

.points-dashboard-grid i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.points-dashboard-grid article:nth-child(2) i {
  background: var(--sun-soft);
  color: #975a00;
}

.points-dashboard-grid article:nth-child(3) i {
  background: var(--blue-soft);
  color: var(--blue);
}

.points-dashboard-grid strong,
.points-dashboard-grid span {
  display: block;
}

.points-dashboard-grid strong {
  font-size: 24px;
  font-weight: 950;
}

.points-dashboard-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.card-hero-copy,
.points-hero-copy {
  max-width: 760px;
}

.card-showcase,
.points-stack {
  position: relative;
  display: grid;
  gap: 14px;
}

.digital-card-large {
  min-height: 360px;
  transform: rotate(-2deg);
}

.points-ticket {
  width: min(360px, 90%);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  justify-self: end;
  margin-top: -38px;
  padding: 16px;
  border: 1px solid rgba(248, 184, 78, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(31, 41, 55, 0.14);
  position: relative;
  z-index: 2;
}

.points-ticket i,
.benefit-grid i,
.points-stack i,
.rules-grid i {
  width: 54px;
  height: 54px;
  padding: 13px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.points-ticket strong,
.points-ticket span {
  display: block;
}

.points-ticket strong {
  font-size: 18px;
  font-weight: 950;
}

.points-ticket span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.card-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.card-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(0, 168, 143, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.card-hero-tags i {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

.card-wallet-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: -34px;
  padding: 14px;
  border: 1px solid rgba(248, 184, 78, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(31, 41, 55, 0.14);
  position: relative;
  z-index: 2;
}

.card-wallet-panel div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: var(--green-soft);
}

.card-wallet-panel div:nth-child(2) {
  background: var(--blue-soft);
}

.card-wallet-panel div:nth-child(3) {
  background: var(--sun-soft);
}

.card-wallet-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-wallet-panel strong {
  font-size: 24px;
  font-weight: 950;
}

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

.card-info-grid article {
  min-height: 176px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.07);
}

.card-info-grid i {
  width: 50px;
  height: 50px;
  padding: 12px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.card-info-grid article:nth-child(2) i {
  background: var(--blue-soft);
  color: var(--blue);
}

.card-info-grid article:nth-child(3) i {
  background: var(--sun-soft);
  color: #975a00;
}

.card-info-grid article:nth-child(4) i {
  background: var(--coral-soft);
  color: #b43928;
}

.card-info-grid strong,
.card-info-grid span {
  display: block;
}

.card-info-grid strong {
  font-size: 18px;
  font-weight: 950;
}

.card-info-grid span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

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

.benefit-grid article,
.rules-grid article,
.timeline-list article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.07);
}

.benefit-grid article:nth-child(2) i,
.points-stack article:nth-child(2) i {
  background: var(--blue-soft);
  color: var(--blue);
}

.benefit-grid article:nth-child(3) i,
.rules-grid article:nth-child(1) i {
  background: var(--sun-soft);
  color: #975a00;
}

.benefit-grid article:nth-child(4) i,
.rules-grid article:nth-child(3) i {
  background: var(--coral-soft);
  color: #b43928;
}

.benefit-grid h3,
.benefit-grid p,
.rules-grid strong,
.rules-grid span,
.timeline-list strong,
.timeline-list p {
  margin: 0;
}

.benefit-grid h3,
.rules-grid strong,
.timeline-list strong {
  font-size: 20px;
  font-weight: 950;
}

.benefit-grid p,
.rules-grid span,
.timeline-list p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.card-flow,
.card-panel,
.card-register,
.points-consult,
.points-rules {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  align-items: start;
  margin: 0 auto;
  padding: 36px;
  background: linear-gradient(135deg, #007d6f 0%, #00a88f 100%);
  color: var(--white);
}

.card-panel {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  background:
    radial-gradient(circle at 88% 16%, rgba(248, 184, 78, 0.2), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f2fffb 56%, #f4f8ff 100%);
  color: var(--ink);
}

.card-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.card-panel .button {
  margin-top: 18px;
}

.points-rules {
  background: linear-gradient(135deg, #1f2937 0%, #2f6df6 100%);
}

.points-consult {
  grid-template-columns: 1fr;
  margin-top: 72px;
  background:
    radial-gradient(circle at 86% 18%, rgba(248, 184, 78, 0.22), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #effdf9 58%, #f5f8ff 100%);
  color: var(--ink);
}

.points-consult-copy {
  max-width: 760px;
}

.points-consult-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.points-card-shortcode {
  width: min(100%, 1020px);
  justify-self: center;
  margin-top: 10px;
}

.points-search-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(31, 41, 55, 0.1);
}

.points-search-head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 90px;
  padding: 14px;
  border-radius: 8px;
  background: var(--blue-soft);
}

.points-search-head i {
  width: 56px;
  height: 56px;
  padding: 13px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
}

.points-search-head strong,
.points-search-head span {
  display: block;
}

.points-search-head strong {
  font-size: 20px;
  font-weight: 950;
}

.points-search-head span {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 750;
}

.points-status-list {
  display: grid;
  gap: 10px;
}

.points-status-list div {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 8px;
  background: var(--white);
}

.points-status-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.points-status-list strong {
  font-weight: 950;
}

.points-bands {
  padding-top: 84px;
}

.card-flow .eyebrow,
.card-flow h2,
.points-rules .eyebrow,
.points-rules h2,
.points-rules p {
  color: var(--white);
}

.points-rules p {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.card-app-preview {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(47, 109, 246, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(31, 41, 55, 0.12);
}

.card-app-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
}

.card-app-top span,
.card-app-top strong {
  display: block;
}

.card-app-top span {
  font-size: 13px;
  font-weight: 850;
  opacity: 0.82;
}

.card-app-top strong {
  font-size: 22px;
  font-weight: 950;
}

.card-app-score {
  min-height: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(248, 184, 78, 0.3), transparent 28%),
    var(--green-soft);
}

.card-app-score small {
  color: var(--muted);
  font-weight: 850;
}

.card-app-score strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(62px, 8vw, 92px);
  line-height: 0.95;
}

.card-app-list {
  display: grid;
  gap: 10px;
}

.card-app-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 8px;
  background: var(--white);
}

.card-app-list i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
}

.card-app-list span {
  color: var(--muted);
  font-weight: 800;
}

.card-app-list strong {
  font-weight: 950;
}

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

.flow-list article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.flow-list span,
.timeline-list span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 950;
}

.flow-list strong {
  font-size: 20px;
  font-weight: 950;
}

.flow-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  line-height: 1.55;
}

.card-points {
  align-items: center;
}

.card-points-highlight {
  padding-top: 72px;
  padding-bottom: 72px;
}

.card-register {
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  margin-top: 84px;
  margin-bottom: 36px;
  background:
    radial-gradient(circle at 92% 12%, rgba(47, 109, 246, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4fffc 100%);
  color: var(--ink);
}

.card-register-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.card-register-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(0, 168, 143, 0.16);
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.45;
}

.card-register-note i {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.card-shortcode-panel {
  padding: 18px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(31, 41, 55, 0.1);
}

.card-shortcode-panel form,
.card-shortcode-panel .forminator-ui,
.card-shortcode-panel .wpcf7,
.card-shortcode-panel .wpforms-container {
  margin: 0;
}

.card-shortcode-panel input,
.card-shortcode-panel select,
.card-shortcode-panel textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.card-shortcode-panel button,
.card-shortcode-panel input[type="submit"],
.card-shortcode-panel .forminator-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 168, 143, 0.2);
}

.shortcode-empty {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px dashed rgba(0, 168, 143, 0.32);
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--muted);
}

.shortcode-empty strong {
  color: var(--ink);
  font-weight: 900;
}

.points-panel,
.points-stack article,
.points-total {
  border: 1px solid rgba(47, 109, 246, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
}

.points-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.points-total {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 22%, rgba(248, 184, 78, 0.32), transparent 26%),
    linear-gradient(135deg, var(--green-soft), var(--blue-soft));
}

.points-total span,
.points-total small {
  color: var(--muted);
  font-weight: 850;
}

.points-total strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(58px, 9vw, 96px);
  line-height: 0.95;
}

.points-mini-list {
  display: grid;
  gap: 10px;
}

.points-mini-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgba(228, 231, 236, 0.86);
  border-radius: 8px;
  background: var(--white);
}

.points-mini-list i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.points-mini-list span {
  color: var(--muted);
  font-weight: 800;
}

.points-mini-list strong {
  font-weight: 950;
}

.points-stack .points-total {
  min-height: 250px;
}

.points-stack article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
}

.points-stack article i {
  grid-row: span 2;
}

.points-stack article strong,
.points-stack article span {
  display: block;
}

.points-stack article strong {
  font-size: 20px;
  font-weight: 950;
}

.points-stack article span {
  color: var(--muted);
  font-weight: 750;
}

.points-timeline {
  padding-top: 84px;
}

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

.timeline-list span {
  background: var(--green-soft);
  color: var(--green-dark);
}

.points-movements {
  align-items: center;
}

.points-table-card {
  padding: 18px;
  border: 1px solid rgba(228, 231, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(31, 41, 55, 0.1);
}

.points-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px 132px;
  gap: 10px;
  align-items: center;
  min-height: 60px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.points-table-row:last-child {
  border-bottom: 0;
}

.points-table-row span,
.points-table-row strong,
.points-table-row em {
  min-width: 0;
}

.points-table-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.points-table-row strong {
  color: var(--green-dark);
  font-weight: 950;
}

.points-table-row em {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .two-column,
  .platform,
  .loyalty-card,
  .study-hero,
  .study-path,
  .study-cta,
  .card-hero,
  .points-hero,
  .card-flow,
  .card-panel,
  .card-register,
  .points-consult,
  .points-rules,
  .contact,
  .method {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .quick-panel,
  .color-strip,
  .promo-banner,
  .service-grid,
  .method-steps,
  .pack-grid,
  .quote-grid,
  .benefit-grid,
  .card-info-grid,
  .rules-grid,
  .timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .brand img {
    width: 164px;
    max-height: 46px;
  }

  .header-actions {
    display: none;
  }

  .section,
  .section-band,
  .quick-panel,
  .promo-banner,
  .color-strip,
  .study-hero,
  .study-path,
  .study-cta,
  .card-hero,
  .points-hero,
  .card-flow,
  .card-panel,
  .card-register,
  .points-consult,
  .points-rules {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
    margin-top: 14px;
    padding: 26px 18px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-stats,
  .quick-panel,
  .color-strip,
  .promo-banner,
  .service-grid,
  .method-steps,
  .pack-grid,
  .quote-grid,
  .benefit-grid,
  .card-info-grid,
  .flow-list,
  .rules-grid,
  .timeline-list,
  .contact-cards,
  .form-row,
  .segmented,
  .price-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
  }

  .floating-card {
    width: calc(100% - 32px);
  }

  .lesson-card,
  .print-card {
    left: 16px;
    right: 16px;
  }

  .lesson-card {
    top: 16px;
  }

  .print-card {
    bottom: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .platform,
  .loyalty-card,
  .study-hero,
  .study-path,
  .study-cta,
  .card-hero,
  .points-hero,
  .card-flow,
  .card-panel,
  .card-register,
  .points-consult,
  .points-rules,
  .contact,
  .method {
    padding: 22px;
  }

  .digital-card-large {
    min-height: 300px;
    transform: none;
  }

  .points-ticket {
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
  }

  .card-wallet-panel {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .points-dashboard-grid,
  .points-status-list div {
    grid-template-columns: 1fr;
  }

  .points-table-card {
    overflow-x: auto;
  }

  .points-table-row {
    min-width: 520px;
  }

  .benefit-grid article,
  .card-info-grid article,
  .rules-grid article,
  .timeline-list article {
    min-height: auto;
  }

  .card-app-list div,
  .points-mini-list div {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .card-app-list strong,
  .points-mini-list strong {
    grid-column: 2;
  }

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

  .quick-panel a {
    min-height: 54px;
    font-size: 13px;
  }

  .site-footer-credit {
    width: min(100% - 28px, 1180px);
    margin: 10px auto calc(104px + env(safe-area-inset-bottom));
    padding: 9px 12px;
    font-size: 10.5px;
  }

  .promo-banner {
    align-items: start;
  }

  .color-strip article {
    min-height: 104px;
  }

  .service-card,
  .quote-grid article {
    min-height: auto;
    padding: 20px;
  }

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

}
