/* ============ Top bar ============ */
.topbar { background: var(--forest); color: #cfe0d4; font-size: var(--fs-tiny); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 0.45rem; }
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--gold); }
.lang-switch { color: #fff; font-size: 0.8rem; letter-spacing: 0.04em; margin-right: 0.9rem; white-space: nowrap; }
.lang-switch a { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 2px; }
.lang-switch a:hover { color: var(--gold); }
.lang-switch strong { color: var(--gold); }
.topbar__contacts { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.topbar__badge { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ============ Header / Nav ============ */
.header { position: sticky; top: 0; z-index: 100; background: var(--white); transition: box-shadow var(--dur); }
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 1.4rem; padding-block: 0.7rem; }
.nav__brand { display: flex; align-items: center; gap: 0.65rem; margin-right: auto; }
.nav__brand img { width: 56px; height: 48px; object-fit: contain; flex-shrink: 0; }
.nav__brand-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.45rem, 4.5vw, 1.7rem); color: var(--forest); line-height: 1.05; letter-spacing: 0.01em; }
.nav__brand-sub { font-size: clamp(1rem, 3.4vw, 1.3rem); font-weight: 700; letter-spacing: 0.015em; color: var(--ink); opacity: 0.85; display: block; margin-top: 3px; line-height: 1.25; white-space: normal; }
.nav__brand-line { display: block; }
.nav__list { display: flex; align-items: center; gap: 0.2rem; }
.nav__link {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink);
  padding: 0.55rem 0.75rem; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--green); background: rgba(27, 122, 61, 0.07); }
.nav__item { position: relative; }
.nav__caret { font-size: 0.6rem; transition: transform var(--dur); }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--line); padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--dur), transform var(--dur), visibility var(--dur);
}
.nav__item.is-open .dropdown, .nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 0.55rem 0.8rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; }
.dropdown a:hover { background: var(--paper); color: var(--green); }
.dropdown a span { display: block; font-size: 0.72rem; font-weight: 400; color: var(--ink-soft); }
.nav__cta { margin-left: 0.3rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 0.6rem; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--forest); border-radius: 2px; transition: transform var(--dur), opacity var(--dur); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Floating mobile CTA */
.float-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(250, 248, 242, 0.92); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(50,16,87,0.12);
}

/* ============ Hero ============ */
.hero { background: var(--forest); color: var(--white); position: relative; overflow: hidden; }
.hero__weave { position: absolute; inset: 0; opacity: 0.55; pointer-events: none;
  background:
    repeating-linear-gradient(52deg, transparent 0 46px, rgba(255,255,255,0.035) 46px 48px),
    radial-gradient(900px 480px at 88% -10%, rgba(242,183,5,0.16), transparent 62%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero h1 { color: var(--white); font-size: var(--fs-hero); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__sub { margin-top: 1.1rem; font-size: 1.1rem; color: #d4e2d8; max-width: 34rem; }
.hero__ctas { display: flex; gap: 0.9rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-top: 1.6rem; font-size: var(--fs-tiny); color: #b9cabe; }
.hero__trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__trust svg { width: 14px; height: 14px; fill: var(--gold); }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.hero__card {
  position: absolute; bottom: -1.2rem; left: -1.2rem;
  background: var(--white); color: var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 0.9rem 1.2rem; display: flex; gap: 0.8rem; align-items: center;
}
.hero__card strong { font-family: var(--font-display); color: var(--forest); display: block; font-size: 1.05rem; }
.hero__card small { color: var(--ink-soft); }
.hero__card-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-soft); display: grid; place-items: center; color: var(--green); font-size: 1.2rem; }

/* Page hero (inner pages) */
.page-hero { background: var(--forest); color: var(--white); padding-block: clamp(2.6rem, 5vw, 4rem); position: relative; overflow: hidden; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: #cfe0d4; margin-top: 0.8rem; max-width: 40rem; font-size: 1.06rem; }
.breadcrumb { font-size: var(--fs-tiny); color: #9db8a6; margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ============ Stats strip ============ */
.stats { background: var(--white); border-block: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 1.6rem 1rem; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--forest); }
.stat__num sup { color: var(--gold-hover); font-size: 0.6em; }
.stat__label { font-size: var(--fs-small); color: var(--ink-soft); margin-top: 0.15rem; }

/* ============ Cards ============ */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--gold-soft);
  display: grid; place-items: center; color: var(--green);
}
.card__icon svg { width: 26px; height: 26px; }
.card p { font-size: var(--fs-small); flex-grow: 1; }
.card ul { padding-left: 1.1rem; font-size: var(--fs-small); color: var(--ink-soft); display: grid; gap: 0.3rem; }
.card ul li::marker { color: var(--gold-hover); }
.card--media { padding: 0; overflow: hidden; }
.card--media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.card--media .card__body { padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex-grow: 1; }
.card__icon-media { width: 100%; aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gold-soft), var(--paper)); }
.card__icon-media svg { width: 30%; height: 30%; min-width: 56px; min-height: 56px; color: var(--green); }
.card--dark { background: var(--forest-soft); border-color: transparent; }
.card--dark h3 { color: var(--white); }
.card--dark p, .card--dark ul { color: #c9d6cd; }

/* Problem cards */
.problem { border-top: 4px solid var(--red); }
.problem .card__icon { background: #fbe9ec; color: var(--red); }

/* ============ Testimonials ============ */
.testimonial { background: var(--white); border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 1rem; }
.testimonial__quote { font-size: 0.98rem; color: var(--ink); }
.testimonial__quote::before { content: "\201C"; font-family: var(--font-display); font-size: 2.6rem; line-height: 0; color: var(--gold); display: block; margin: 0.8rem 0 0.2rem; }
.testimonial__person { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.testimonial__person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial__avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: 0.02em; flex-shrink: 0; }
.testimonial__person strong { font-family: var(--font-display); color: var(--forest); display: block; }
.testimonial__person small { color: var(--ink-soft); }
.testimonial__result { font-size: var(--fs-tiny); font-weight: 700; color: var(--green); background: rgba(27,122,61,0.08); border-radius: 999px; padding: 0.3rem 0.8rem; align-self: flex-start; }

/* ============ Steps ============ */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; color: var(--gold-hover);
  font-size: 1.3rem; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; min-width: 54px; height: 54px; display: grid; place-items: center;
}
.step h3 { margin-bottom: 0.2rem; }
.step p { font-size: var(--fs-small); }

/* ============ Accordion (FAQ) ============ */
.accordion { display: grid; gap: 0.7rem; }
.accordion__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.accordion__btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; font-family: var(--font-display); font-weight: 700; color: var(--forest); text-align: left;
}
.accordion__btn::after { content: "+"; font-size: 1.3rem; color: var(--green); transition: transform var(--dur); }
.accordion__item.is-open .accordion__btn::after { transform: rotate(45deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.accordion__panel p { padding: 0 1.2rem 1.1rem; font-size: var(--fs-small); }

/* ============ Forms ============ */
.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-small); color: var(--forest); margin-bottom: 0.35rem; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.95rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--white); font-size: 0.95rem;
  transition: border-color var(--dur);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(27,122,61,0.14); }
.field .field__error { display: none; color: var(--red); font-size: var(--fs-tiny); margin-top: 0.25rem; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field.has-error .field__error { display: block; }
.form__status { display: none; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); font-size: var(--fs-small); font-weight: 600; }
.form__status.is-success { display: block; background: #e7f4ec; color: var(--forest); border: 1px solid #bfe0cb; }
.form__status.is-error { display: block; background: #fbe9ec; color: var(--red); border: 1px solid #f2c4cc; }
.form-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }

/* Newsletter (footer) */
.newsletter { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.newsletter input {
  flex: 1; padding: 0.7rem 1rem; border-radius: 999px; border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.08); color: var(--white); min-width: 0;
}
.newsletter input::placeholder { color: #9db8a6; }

/* ============ Calculator ============ */
.calc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.calc__head { background: var(--forest); color: var(--white); padding: 1.1rem 1.5rem; display: flex; align-items: center; gap: 0.7rem; }
.calc__head h3 { color: var(--white); }
.calc__body { padding: 1.5rem; display: grid; gap: 1rem; }
.calc__result { background: var(--paper); border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; display: grid; gap: 0.5rem; }
.calc__result div { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--fs-small); }
.calc__result .calc__big { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--green); }
.range-value { font-family: var(--font-display); font-weight: 700; color: var(--forest); }

/* ============ Modal (lead gate) ============ */
.modal { position: fixed; inset: 0; z-index: 150; display: none; place-items: center; padding: 1rem; }
.modal.is-open { display: grid; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(50,16,87,0.55); backdrop-filter: blur(3px); }
.modal__box { position: relative; background: var(--white); border-radius: var(--radius); max-width: 440px; width: 100%; padding: 1.8rem; box-shadow: var(--shadow); }
.modal__close { position: absolute; top: 0.8rem; right: 0.9rem; font-size: 1.4rem; color: var(--ink-soft); }
.modal__box h3 { margin-bottom: 0.3rem; }
.modal__box > p { font-size: var(--fs-small); margin-bottom: 1rem; }

/* ============ Trust / badges ============ */
.trust-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.trust-item { display: flex; gap: 0.9rem; align-items: flex-start; background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 1.2rem; }
.trust-item svg { width: 30px; height: 30px; fill: var(--gold); flex-shrink: 0; }
.trust-item strong { color: var(--white); font-family: var(--font-display); display: block; margin-bottom: 0.2rem; }
.trust-item p { font-size: var(--fs-tiny); }

/* ============ CTA banner ============ */
.cta-banner { background: linear-gradient(120deg, var(--green), var(--forest)); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border: 24px solid rgba(242,183,5,0.22); border-radius: 50%; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #d4e2d8; margin-top: 0.4rem; }

/* ============ Uplift feature ============ */
.uplift-panel { background: var(--forest); border-radius: var(--radius); overflow: hidden; color: var(--white); display: grid; grid-template-columns: 1.1fr 0.9fr; }
.uplift-panel__body { padding: clamp(1.8rem, 4vw, 3rem); }
.uplift-panel__body h2 { color: var(--white); }
.uplift-panel__body p { color: #cfe0d4; }
.uplift-panel__media { position: relative; min-height: 320px; }
.uplift-panel__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.badge-gold { display: inline-block; background: var(--gold); color: var(--forest); font-family: var(--font-display); font-weight: 800; font-size: var(--fs-tiny); letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 1rem; }
.qr-box { background: var(--white); border-radius: var(--radius); padding: 1.1rem; display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.qr-box img { width: 150px; height: 150px; }
.qr-box small { color: var(--ink-soft); font-size: var(--fs-tiny); text-align: center; }
.checklist { display: grid; gap: 0.55rem; }
.checklist li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-small); color: #d4e2d8; }
.checklist li::before { content: "\2713"; color: var(--gold); font-weight: 800; }
.checklist--light li { color: var(--ink-soft); }
.checklist--light li::before { color: var(--green); }

/* ============ Video ============ */
.video-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-frame video { width: 100%; display: block; }

/* ============ Tables ============ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table.rates { width: 100%; border-collapse: collapse; font-size: var(--fs-small); min-width: 560px; }
table.rates th { background: var(--forest); color: var(--white); font-family: var(--font-display); text-align: left; padding: 0.85rem 1rem; }
table.rates td { padding: 0.85rem 1rem; border-top: 1px solid var(--line); color: var(--ink-soft); }
table.rates tr:nth-child(even) td { background: var(--paper); }
table.rates td:first-child { font-weight: 600; color: var(--ink); }

/* ============ Footer ============ */
.footer { background: var(--forest); color: #c9d6cd; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: 3rem 2.2rem; }
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.9rem; letter-spacing: 0.04em; }
.footer a:hover { color: var(--gold); }
.footer__links { display: grid; gap: 0.45rem; font-size: var(--fs-small); }
.footer__brand img { width: 64px; margin-bottom: 0.8rem; }
.footer__brand p { font-size: var(--fs-small); color: #a9bfb0; max-width: 26rem; }
.footer__contact { display: grid; gap: 0.55rem; font-size: var(--fs-small); }
.footer__contact span { display: block; color: #a9bfb0; font-size: var(--fs-tiny); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding-block: 1.1rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: var(--fs-tiny); color: #8fa896; }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: 1.1rem; }

/* Team */
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.team-card h3 { margin-top: 0.9rem; }
.team-card small { color: var(--ink-soft); }

/* Blog */
.post-meta { font-size: var(--fs-tiny); color: var(--ink-soft); display: flex; gap: 0.8rem; }
.post-meta b { color: var(--green); }
.prose { max-width: 720px; }
.prose p { margin-bottom: 1.1rem; font-size: 1.02rem; }
.prose h2 { margin: 2rem 0 0.8rem; font-size: 1.4rem; }
.prose ul { padding-left: 1.2rem; color: var(--ink-soft); margin-bottom: 1.1rem; display: grid; gap: 0.4rem; }
