:root {
  --c-p: #1B4332;
  --c-pl: #2D6A4F;
  --c-s: #52B788;
  --c-a: #F4845F;
  --c-ad: #D95F35;
  --c-l: #D8F3DC;
  --c-bg: #F4F7F4;
  --c-sf: #ffffff;
  --c-tx: #1C1C1E;
  --c-mu: #6B7280;
  --c-br: #E2E8E4;
  --fh: 'Fraunces', serif;
  --fb: 'Plus Jakarta Sans', sans-serif;
  --r: 12px;
  --rl: 22px;
  --sh: 0 4px 24px rgba(27, 67, 50, 0.10);
  --sh2: 0 8px 40px rgba(27, 67, 50, 0.18);
  --tr: 0.28s ease;
  --hh: 72px;
  --fth: 72px;
  --mw: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fb);
  background: var(--c-bg);
  color: var(--c-tx);
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr);
}

button {
  cursor: pointer;
  font-family: var(--fb);
  border: none;
  outline: none;
  background: none;
}

ul {
  list-style: none;
}

input,
textarea {
  font-family: var(--fb);
}

h1, h2, h3, h4 {
  font-family: var(--fh);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p {
  font-size: 0.9rem;
  color: var(--c-mu);
}

.container {
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sp {
  padding: 4rem 0;
}

.sp-sm {
  padding: 2.5rem 0;
}

.tc {
  text-align: center;
}

.tag-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-s);
  background: var(--c-l);
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.65rem;
}

.section-hd {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-hd h2 {
  color: var(--c-p);
  margin-bottom: 0.65rem;
}

.section-hd p {
  max-width: 540px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--tr);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--fb);
  text-decoration: none;
}

.btn-primary {
  background: var(--c-a);
  color: #fff;
}

.btn-primary:hover {
  background: var(--c-ad);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 132, 95, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--c-p);
  border: 2px solid var(--c-p);
}

.btn-outline:hover {
  background: var(--c-p);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--c-p);
}

.btn-white:hover {
  background: var(--c-l);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s ease;
}

.hdr-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--c-p) 0%, var(--c-s) 60%, var(--c-a) 100%);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--hh) - 4px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0 2rem;
  border-bottom: 1px solid var(--c-br);
  transition: box-shadow var(--tr);
}

.site-header.scrolled .hdr-inner {
  box-shadow: var(--sh);
}

.site-header.hdr-hidden {
  transform: translateY(-100%);
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--c-p);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark i {
  color: #fff;
  font-size: 0.95rem;
}

.logo-txt {
  font-family: var(--fh);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-p);
  line-height: 1.1;
}

.logo-txt small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--c-mu);
  font-family: var(--fb);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.hdr-nav a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--c-tx);
  padding: 0.38rem 0.7rem;
  border-radius: 8px;
  transition: all var(--tr);
}

.hdr-nav a:hover,
.hdr-nav a.active {
  color: var(--c-p);
  background: var(--c-l);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hdr-actions .btn {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--c-l);
  cursor: pointer;
  position: relative;
  border: none;
}

.nav-burger .ic-bars,
.nav-burger .ic-close {
  position: absolute;
  transition: all var(--tr);
  color: var(--c-p);
  font-size: 1rem;
}

.nav-burger .ic-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.nav-burger.is-active .ic-bars {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.nav-burger.is-active .ic-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-p);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-overlay a {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  color: #fff;
  font-weight: 600;
  transition: color var(--tr);
  letter-spacing: -0.01em;
}

.nav-overlay a:hover {
  color: var(--c-a);
}

.nav-ovl-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  transition: background var(--tr);
}

.nav-ovl-close:hover {
  background: rgba(255,255,255,0.22);
}

body.nav-open {
  overflow: hidden;
}

.main-wrap {
  padding-top: var(--hh);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--c-p) 0%, var(--c-pl) 55%, #3a8f6a 100%);
  overflow: hidden;
}

.hero-bg-c1 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.hero-bg-c2 {
  position: absolute;
  top: -100px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text .tag-pill {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.hero-h1 {
  color: #fff;
  margin-bottom: 1.1rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--c-a);
}

.hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.h-stat strong {
  display: block;
  font-family: var(--fh);
  font-size: 1.9rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.h-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-img-frame {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sh2);
  aspect-ratio: 4 / 3;
  position: relative;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--sh);
}

.hero-img-badge i {
  color: var(--c-s);
  font-size: 1.1rem;
}

.hero-img-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-p);
}

.features-sec {
  background: var(--c-sf);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feat-card {
  background: var(--c-bg);
  border-radius: var(--r);
  padding: 1.6rem 1.35rem;
  border: 1px solid transparent;
  transition: all var(--tr);
}

.feat-card:hover {
  border-color: var(--c-l);
  box-shadow: var(--sh);
  transform: translateY(-4px);
}

.feat-ico {
  width: 46px;
  height: 46px;
  background: var(--c-l);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.feat-ico i {
  font-size: 1.15rem;
  color: var(--c-p);
}

.feat-card h3 {
  font-size: 1rem;
  color: var(--c-tx);
  margin-bottom: 0.5rem;
}

.feat-card p {
  font-size: 0.845rem;
}

.hiw-sec {
  background: linear-gradient(180deg, var(--c-bg) 0%, #ecf5ee 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-num {
  font-family: var(--fh);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--c-l);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.step-num::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--c-a);
  margin: 0.5rem auto;
  border-radius: 2px;
}

.step-item h3 {
  color: var(--c-p);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.845rem;
}

.prog-preview-sec {
  background: var(--c-sf);
}

.prog-prev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.pp-card {
  border: 1.5px solid var(--c-br);
  border-radius: var(--r);
  overflow: hidden;
  transition: all var(--tr);
  background: var(--c-sf);
}

.pp-card:hover {
  box-shadow: var(--sh);
  transform: translateY(-3px);
  border-color: var(--c-l);
}

.pp-card-top {
  height: 6px;
  background: var(--c-l);
}

.pp-card.featured .pp-card-top {
  background: linear-gradient(90deg, var(--c-a) 0%, #f09070 100%);
}

.pp-card-body {
  padding: 1.2rem;
}

.pp-card-body h4 {
  color: var(--c-p);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.pp-price {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-a);
  margin-bottom: 0.5rem;
}

.pp-price sub {
  font-size: 0.78rem;
  color: var(--c-mu);
  font-weight: 400;
  font-family: var(--fb);
}

.pp-card-body p {
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.pp-card-body .btn {
  width: 100%;
  justify-content: center;
}

.testi-sec {
  background: var(--c-p);
}

.testi-sec .section-hd h2 {
  color: #fff;
}

.testi-sec .section-hd p {
  color: rgba(255,255,255,0.7);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testi-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.12);
}

.testi-stars {
  color: var(--c-a);
  font-size: 0.78rem;
  margin-bottom: 0.65rem;
}

.testi-card blockquote {
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  background: var(--c-s);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-avatar i {
  color: #fff;
  font-size: 0.95rem;
}

.testi-info strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
}

.testi-info span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.58);
}

.cta-sec {
  background: var(--c-a);
  text-align: center;
}

.cta-sec h2 {
  color: #fff;
  margin-bottom: 0.65rem;
}

.cta-sec p {
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin: 0 auto 1.65rem;
}

.pg-hero {
  background: linear-gradient(135deg, var(--c-p) 0%, var(--c-pl) 100%);
  padding: 3.5rem 0 2.75rem;
  text-align: center;
}

.pg-hero .tag-pill {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.pg-hero h1 {
  color: #fff;
  margin-bottom: 0.65rem;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.pg-hero p {
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto;
}

.pg-hero-img-wrap {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sh2);
  aspect-ratio: 16 / 7;
  max-height: 340px;
}

.pg-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-img {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sh2);
  aspect-ratio: 4 / 3;
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.val-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.val-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--c-l);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.val-ico i {
  color: var(--c-p);
  font-size: 0.95rem;
}

.val-item h4 {
  color: var(--c-tx);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.val-item p {
  font-size: 0.8rem;
}

.stats-bar {
  background: var(--c-p);
  padding: 2rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-box {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box strong {
  display: block;
  font-family: var(--fh);
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}

.stat-box span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.plans-sec {
  background: var(--c-sf);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.plan-card {
  border: 2px solid var(--c-br);
  border-radius: var(--rl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--tr);
  position: relative;
  background: var(--c-sf);
}

.plan-card.is-pop {
  border-color: var(--c-a);
  background: #fffaf7;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-a);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.18rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.plan-card:hover {
  box-shadow: var(--sh2);
  transform: translateY(-5px);
  border-color: var(--c-s);
}

.plan-card.is-pop:hover {
  border-color: var(--c-a);
}

.plan-ico {
  width: 54px;
  height: 54px;
  background: var(--c-l);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
}

.plan-ico i {
  font-size: 1.35rem;
  color: var(--c-p);
}

.plan-card h3 {
  color: var(--c-p);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.plan-price {
  font-family: var(--fh);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--c-a);
  margin: 0.65rem 0;
}

.plan-price sub {
  font-size: 0.85rem;
  font-family: var(--fb);
  color: var(--c-mu);
  font-weight: 400;
}

.plan-card > p {
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.plan-feats {
  text-align: left;
  margin-bottom: 1.5rem;
}

.plan-feats li {
  font-size: 0.8rem;
  color: var(--c-mu);
  padding: 0.28rem 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid var(--c-br);
}

.plan-feats li:last-child {
  border-bottom: none;
}

.plan-feats li i {
  color: var(--c-s);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.plan-card .btn {
  width: 100%;
  justify-content: center;
}

.included-sec {
  background: var(--c-bg);
}

.incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.incl-item {
  background: var(--c-sf);
  border-radius: var(--r);
  padding: 1.4rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition: all var(--tr);
}

.incl-item:hover {
  box-shadow: var(--sh);
  transform: translateY(-3px);
}

.incl-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--c-l);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.incl-ico i {
  color: var(--c-p);
  font-size: 0.92rem;
}

.incl-item h4 {
  color: var(--c-p);
  font-size: 0.9rem;
  margin-bottom: 0.28rem;
}

.incl-item p {
  font-size: 0.8rem;
}

.faq-sec {
  background: var(--c-sf);
}

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-br);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-tx);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fb);
}

.faq-q i {
  color: var(--c-mu);
  transition: transform var(--tr);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.faq-item.faq-open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-a p {
  padding: 0 0 1rem;
  font-size: 0.865rem;
}

.faq-item.faq-open .faq-a {
  max-height: 220px;
}

.tips-sec {
  background: var(--c-bg);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.tip-card {
  background: var(--c-sf);
  border-radius: var(--r);
  padding: 1.5rem;
  border-left: 4px solid var(--c-s);
  transition: all var(--tr);
}

.tip-card:hover {
  box-shadow: var(--sh);
  transform: translateX(4px);
}

.tip-label {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--c-s);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
}

.tip-card h4 {
  color: var(--c-p);
  font-size: 0.97rem;
  margin-bottom: 0.45rem;
}

.tip-card p {
  font-size: 0.84rem;
}

.sched-sec {
  background: var(--c-sf);
}

.sched-table-wrap {
  overflow-x: auto;
  border-radius: var(--r);
  box-shadow: var(--sh);
}

.sched-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-sf);
  font-size: 0.865rem;
  min-width: 480px;
}

.sched-table th {
  background: var(--c-p);
  color: #fff;
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.sched-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--c-br);
  color: var(--c-tx);
}

.sched-table tr:last-child td {
  border-bottom: none;
}

.sched-table tr:nth-child(even) td {
  background: var(--c-bg);
}

.bdg {
  display: inline-block;
  font-size: 0.65rem;
  padding: 0.12rem 0.48rem;
  border-radius: 50px;
  font-weight: 600;
}

.bdg-easy { background: var(--c-l); color: var(--c-s); }
.bdg-mod { background: #FFF3CD; color: #856404; }
.bdg-active { background: #FFE5D9; color: #C04000; }

.ben-sec {
  background: var(--c-bg);
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ben-card {
  background: var(--c-sf);
  border-radius: var(--r);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all var(--tr);
  border-top: 3px solid var(--c-l);
}

.ben-card:hover {
  box-shadow: var(--sh);
  border-top-color: var(--c-a);
  transform: translateY(-3px);
}

.ben-ico {
  width: 50px;
  height: 50px;
  background: var(--c-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.ben-ico i {
  font-size: 1.15rem;
  color: var(--c-p);
}

.ben-card h4 {
  color: var(--c-p);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.ben-card p {
  font-size: 0.82rem;
}

.abt-story-sec {
  background: var(--c-sf);
}

.abt-values-sec {
  background: var(--c-bg);
}

.contact-sec {
  background: var(--c-sf);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
}

.ci-block {
  background: var(--c-p);
  border-radius: var(--rl);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.ci-block::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.ci-block h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.ci-block > p {
  color: rgba(255,255,255,0.72);
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.ci-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon i {
  color: var(--c-a);
  font-size: 0.92rem;
}

.ci-item-txt span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.18rem;
}

.ci-item-txt a,
.ci-item-txt p {
  color: #fff;
  font-size: 0.875rem;
}

.ci-hours {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin-top: 1.5rem;
}

.ci-hours h5 {
  color: var(--c-a);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
  font-family: var(--fb);
  font-weight: 700;
}

.ci-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ci-hours-row:last-child {
  border-bottom: none;
}

.cf-block {
  background: var(--c-sf);
  border-radius: var(--rl);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--sh);
}

.cf-block h3 {
  color: var(--c-p);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.cf-block > p {
  font-size: 0.85rem;
  margin-bottom: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grp {
  margin-bottom: 0.9rem;
}

.form-grp label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-tx);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-grp input,
.form-grp textarea {
  width: 100%;
  padding: 0.62rem 0.85rem;
  border: 1.5px solid var(--c-br);
  border-radius: var(--r);
  font-size: 0.875rem;
  background: var(--c-bg);
  color: var(--c-tx);
  transition: border-color var(--tr), box-shadow var(--tr);
}

.form-grp input:focus,
.form-grp textarea:focus {
  outline: none;
  border-color: var(--c-s);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.12);
  background: var(--c-sf);
}

.form-grp textarea {
  resize: vertical;
  min-height: 105px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.form-consent input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--c-s);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.78rem;
  color: var(--c-mu);
  cursor: pointer;
}

.form-consent a {
  color: var(--c-s);
  text-decoration: underline;
}

.cf-block .btn {
  width: 100%;
  justify-content: center;
  padding: 0.72rem;
  font-size: 0.9rem;
}

.map-sec {
  background: var(--c-bg);
}

.map-frame {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sh);
  height: 370px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.policy-sec {
  background: var(--c-sf);
}

.prose {
  max-width: 840px;
}

.prose h2 {
  color: var(--c-p);
  font-size: 1.2rem;
  margin: 2rem 0 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--c-l);
}

.prose h3 {
  color: var(--c-pl);
  font-size: 1rem;
  margin: 1.4rem 0 0.45rem;
}

.prose p {
  margin-bottom: 0.9rem;
  font-size: 0.885rem;
  color: var(--c-tx);
  line-height: 1.7;
}

.prose ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 0.9rem;
}

.prose ul li {
  font-size: 0.885rem;
  color: var(--c-tx);
  margin-bottom: 0.35rem;
  line-height: 1.6;
}

.prose a {
  color: var(--c-s);
  text-decoration: underline;
}

.full-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - var(--hh) - var(--fth));
  padding: 3rem 1.25rem;
}

.full-center .big-ico {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-404-wrap .big-ico {
  color: var(--c-a);
}

.page-ty-wrap .big-ico {
  color: var(--c-s);
}

.full-center h1 {
  color: var(--c-p);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.65rem;
}

.full-center p {
  max-width: 460px;
  margin: 0 auto 1.65rem;
  font-size: 0.9rem;
}

.full-center .ty-msg {
  max-width: 500px;
  margin: 0 auto 1.65rem;
}

.cookie-bar {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-p);
  color: #fff;
  padding: 1.1rem 1.35rem;
  border-radius: var(--r);
  box-shadow: var(--sh2);
  z-index: 9999;
  max-width: 540px;
  width: calc(100% - 2rem);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-bar.cb-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
}

.cookie-bar p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.cookie-bar a {
  color: var(--c-a);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
  align-items: center;
}

.cb-acc {
  background: var(--c-a);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  font-family: var(--fb);
}

.cb-dec {
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  font-family: var(--fb);
}

.site-footer {
  background: var(--c-p);
  color: rgba(255,255,255,0.72);
  padding: 1.1rem 0 0.9rem;
}

.ft-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.ft-brand {
  font-family: var(--fh);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.ft-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.ft-links a {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--tr);
}

.ft-links a:hover {
  color: #fff;
}

.ft-copy {
  font-size: 0.72rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.7rem;
  margin-top: 0.2rem;
}

@media (max-width: 992px) {
  .hdr-nav,
  .hdr-actions {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-img-frame {
    max-width: 460px;
    margin: 0 auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .feat-grid,
  .steps-grid,
  .prog-prev-grid,
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .incl-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ben-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --hh: 62px;
    --fth: 90px;
  }

  .feat-grid,
  .steps-grid,
  .prog-prev-grid,
  .plans-grid,
  .tips-grid,
  .vals-grid,
  .incl-grid,
  .ben-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-bar {
    flex-direction: column;
  }

  .cookie-btns {
    width: 100%;
  }

  .ft-inner {
    flex-direction: column;
    text-align: center;
  }

  .ft-links {
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 2.5rem;
  }
}

@media (max-width: 480px) {
  .sp {
    padding: 2.5rem 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  :root {
    --hh: 58px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
}
