:root {
  --green: #506831;
  --green-dark: #3d5024;
  --green-soft: #f7ffeb;
  --text: #3a3a3a;
  --muted: #666666;
  --gold: #caa94a;
  --gold-dark: #b8922e;
  --gold-text: #aa8f52;
  --white: #ffffff;
  --shadow: 0 4px 10px rgba(80, 104, 49, 0.09);
  --gold-gradient: linear-gradient(90deg, #caa94a 0%, #e6c96a 50%, #b8922e 100%);
  --icon-green-filter: brightness(0) saturate(100%) invert(34%) sepia(18%) saturate(990%) hue-rotate(45deg) brightness(92%) contrast(88%);
  --icon-white-filter: brightness(0) invert(1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  min-height: 39.5px;
  display: grid;
  place-items: center;
  padding: 10px 24px;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.5px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(80, 104, 49, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(1440px, calc(100% - 48px));
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 138px;
  height: 70px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

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

.btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 63px;
  padding: 0 36px;
  color: var(--white);
  background: var(--green);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(80, 104, 49, 0.22);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(80, 104, 49, 0.24);
}

.btn-small {
  width: 232px;
  min-height: 52px;
  padding: 0 28px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--green-soft);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
}

.hero {
  min-height: 872.5px;
  display: flex;
  align-items: center;
  background: url("assets/img/HeroSection.png") center / cover no-repeat;
}

.hero-content {
  width: min(1440px, calc(100% - 48px));
  min-height: 733px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(780px, 58%);
  padding-top: 10px;
}

.hero .btn {
  width: 266px;
  padding: 0;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-bottom: 20px;
  padding: 0 16px;
  color: #74964d;
  background: var(--green-soft);
  border: 1px solid rgba(116, 150, 77, 0.2);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.eyebrow img {
  width: 14px;
  height: 14px;
  filter: none;
}

h1,
h2,
h3 {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}

h1 {
  max-width: 695px;
  font-size: 40px;
  line-height: 1.25;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
  line-height: 1.5;
}

.divider {
  display: block;
  width: 64px;
  height: 2px;
  margin: 16px 0 0;
  border-radius: 4px;
  background: var(--gold-gradient);
}

.center-divider {
  margin-inline: auto;
}

.hero-text {
  max-width: 570px;
  margin: 45px 0 20px;
  font-size: 17px;
  line-height: 1.6;
}

.hero-text p + p,
.dot-list {
  margin-top: 20px;
}

.dot-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}

.dot-list li {
  position: relative;
  padding-left: 19px;
}

.dot-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.gold-text {
  color: var(--gold-text);
  font-size: 20px;
}

.section {
  padding: 80px 0;
}

.section-soft {
  background: var(--green-soft);
}

.center {
  text-align: center;
}

.narrow {
  max-width: 760px;
}

.problem-section p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.75;
}

.arrow-line::before,
.callout-list p::before,
.arrow-list p::before {
  content: "→";
  margin-right: 10px;
  color: var(--green);
}

.card-grid {
  display: grid;
  gap: 25px;
  margin-top: 44px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 222px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 38px 29px;
  background: var(--white);
  border: 1px solid rgba(80, 104, 49, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-card h3 {
  max-width: 224px;
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.icon-box {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border-radius: 20px;
}

.icon-box img {
  width: 36px;
  height: 36px;
  filter: var(--icon-green-filter);
}

.section-note {
  width: min(577px, calc(100% - 48px));
  margin: 28px auto 0;
  color: var(--gold-text);
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 568px));
  justify-content: center;
  align-items: center;
  gap: 64px;
}

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.section-intro h2 {
  max-width: 568px;
}

.section-intro p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.gold-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--gold-gradient);
  border-radius: 14px;
}

.gold-icon img {
  width: 26px;
  height: 26px;
  filter: var(--icon-white-filter);
}

.tile-panel {
  display: grid;
  gap: 20px;
}

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

.mini-grid div,
.benefit-grid div {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(80, 104, 49, 0.12);
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(80, 104, 49, 0.07);
  font-size: 15px;
  font-weight: 500;
}

.mini-grid img {
  width: 22px;
  height: 22px;
  filter: var(--icon-green-filter);
}

.callout-list {
  display: grid;
  gap: 10px;
  padding: 21px 23px;
  background: var(--green-soft);
  border: 1px solid rgba(80, 104, 49, 0.15);
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.6;
}

.method-section,
.final-cta {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
}

.method-section h2,
.final-cta h2 {
  color: var(--white);
}

.method-section .container {
  max-width: 1200px;
}

.method-section p {
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 17px;
  line-height: 1.75;
}

.method-quote {
  padding-left: 30px;
  font-style: italic;
  text-align: left;
}

.method-quote::before {
  content: "→";
  margin-right: 10px;
}

.method-label {
  color: var(--gold);
  font-size: 18px !important;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.method-grid,
.steps-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.method-grid article {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 37px 29px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.method-grid .gold-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(202, 169, 74, 0.3);
}

.method-grid .gold-icon img {
  width: 28px;
  height: 28px;
}

.method-grid h3 {
  margin-top: 16px;
  color: var(--white);
}

.method-grid p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps-grid article {
  min-height: 244px;
  padding: 33px 25px;
  background: var(--white);
  border: 1px solid rgba(80, 104, 49, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: left;
}

.step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-head span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border-radius: 12px;
}

.step-head img {
  width: 24px;
  height: 24px;
  filter: var(--icon-green-filter);
}

.step-head strong {
  color: rgba(80, 104, 49, 0.13);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.steps-grid h3 {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.3;
}

.steps-grid p {
  color: #555555;
  font-size: 15px;
  line-height: 1.65;
}

.benefit-grid div {
  min-height: 84px;
  align-items: flex-start;
  padding: 20px 19px 20px 51px;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}

.benefit-grid div::before,
.white-list div::before {
  content: "✓";
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
}

.consultation h2 {
  white-space: nowrap;
}

.consultation .center-divider {
  margin-top: 32px;
}

.consultation .center > p {
  margin-top: 32px;
  color: #555555;
  font-size: 17px;
  line-height: 1.7;
}

.consult-grid {
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px auto;
}

.consultation .btn {
  width: 266px;
  padding: 0;
}

.consult-grid div,
.diff-grid div {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 23px;
  background: var(--white);
  border: 1px solid rgba(80, 104, 49, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(80, 104, 49, 0.08);
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.consult-grid span,
.diff-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--green-soft);
  border-radius: 12px;
}

.consult-grid img {
  width: 20px;
  height: 20px;
  filter: var(--icon-green-filter);
}

.for-whom {
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(165deg, #74964d 0%, var(--green) 100%);
}

.for-whom h2 {
  color: var(--white);
}

.for-whom .section-intro p {
  color: rgba(255, 255, 255, 0.75);
}

.for-whom .btn {
  width: 232px;
  min-height: 52px;
  padding: 0;
  font-size: 16px;
}

.white-list {
  display: grid;
  gap: 14px;
}

.white-list div {
  min-height: 62px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 18px 21px 18px 55px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 16px;
}

.white-list div::before {
  color: var(--gold);
  border-width: 1px;
}

.about-grid {
  align-items: center;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(80, 104, 49, 0.15);
}

.photo-card > img {
  width: 100%;
  height: 710px;
  object-fit: cover;
}

.insta-badge {
  position: absolute;
  top: 18px;
  left: 21px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 286px;
  min-height: 64px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.insta-badge img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.insta-badge span {
  display: grid;
  color: #888888;
  font-size: 12px;
  line-height: 1.2;
}

.insta-badge strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
}

.about-copy {
  display: grid;
  gap: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.about-copy p {
  color: var(--text);
}

.about-copy .script {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.arrow-list {
  display: grid;
  gap: 8px;
  font-size: 17px;
}

blockquote {
  margin: 0;
  padding-left: 16px;
  color: var(--gold-text);
  border-left: 3px solid var(--gold);
  font-style: italic;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.diff-grid div {
  min-height: 106px;
  font-size: 15px;
}

.diff-grid span {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 10px;
}

.diff-grid img {
  width: 20px;
  height: 20px;
  filter: var(--icon-white-filter);
}

.diff-grid svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.credential-list li {
  position: relative;
  min-height: 62px;
  padding: 18px 0 18px 24px;
  border-bottom: 1px solid rgba(80, 104, 49, 0.12);
  font-size: 16px;
  line-height: 1.6;
}

.credential-list li::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold-gradient);
  border-radius: 50%;
}

.credential-list li:last-child {
  border-bottom: 0;
}

.result-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof .result-grid {
  margin-top: 48px;
}

.result-grid div {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(80, 104, 49, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 15px;
  font-weight: 500;
}

.result-grid span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border-radius: 50%;
}

.result-grid img {
  width: 28px;
  height: 28px;
  filter: var(--icon-green-filter);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.reviews-wrapper {
  margin-top: 48px;
}

.testimonial-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(80, 104, 49, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(80, 104, 49, 0.09);
  text-align: left;
}

.patient-placeholder {
  height: 200px;
  display: grid;
  place-items: center;
  gap: 8px;
  color: rgba(80, 104, 49, 0.53);
  background: rgba(80, 104, 49, 0.08);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.patient-placeholder img {
  width: 36px;
  height: 36px;
  filter: var(--icon-green-filter);
}

.stars {
  padding: 20px 22px 0;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-grid p {
  padding: 6px 22px 20px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.final-cta {
  padding: 80px 0;
  background: linear-gradient(164deg, var(--green-dark) 0%, var(--green) 50%, #74964d 100%);
}

.gold-icon.large {
  width: 64px;
  height: 64px;
  margin: 0 auto 26px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(202, 169, 74, 0.4);
}

.gold-icon.large img {
  width: 28px;
  height: 28px;
}

.final-cta h2 {
  font-size: 40px;
  line-height: 1.25;
}

.final-cta p {
  max-width: 520px;
  margin: 26px auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.7;
}

.whatsapp-btn {
  width: 273px;
  min-height: 63px;
  padding: 0;
  background: #25d366;
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.35);
  font-weight: 600;
}

.whatsapp-btn img {
  width: 22px;
  height: 22px;
  filter: none;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 40px 24px;
  color: rgba(255, 255, 255, 0.4);
  background: #1a2410;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.footer img {
  width: 110px;
  height: 56px;
  object-fit: contain;
}

.blog-page,
.article-page {
  background: var(--white);
}

.blog-hero h1,
.article h1 {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
}

.blog-hero h1 {
  max-width: 780px;
  margin: 0 auto;
  font-size: 40px;
}

.blog-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(80, 104, 49, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.blog-hero p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.blog-listing {
  background: var(--white);
}

.blog-filters {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(180px, 0.8fr) minmax(180px, 0.7fr) auto auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  background: var(--green-soft);
  border: 1px solid rgba(80, 104, 49, 0.12);
  border-radius: 16px;
}

.blog-filters label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.blog-filters input,
.blog-filters select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(80, 104, 49, 0.16);
  border-radius: 10px;
  font: inherit;
}

.blog-filters button,
.blog-filters a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
}

.blog-filters button {
  color: var(--white);
  background: var(--green);
  cursor: pointer;
}

.blog-filters a {
  color: var(--green);
  background: rgba(80, 104, 49, 0.08);
}

.blog-listing-head {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
}

.latest-posts {
  background: var(--white);
}

.latest-posts > .container > p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.latest-posts .blog-grid {
  margin-top: 48px;
  text-align: left;
}

.latest-posts-button {
  width: 238px;
  margin-top: 36px;
  padding: 0;
}

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

.blog-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: var(--white);
  border: 1px solid rgba(80, 104, 49, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.blog-card-link:focus-visible {
  outline: 3px solid rgba(202, 169, 74, 0.75);
  outline-offset: -3px;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(80, 104, 49, 0.13);
}

.blog-card > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.blog-category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(116, 150, 77, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.article time {
  display: block;
  color: var(--gold-text);
  font-size: 13px;
  font-weight: 600;
}

.blog-card time {
  color: var(--gold-text);
  font-size: 13px;
  font-weight: 600;
}

.blog-card-meta .blog-category {
  margin-bottom: 0;
}

.blog-card h2,
.blog-card h3 {
  margin-top: 10px;
  font-size: 23px;
  line-height: 1.25;
}

.blog-card p {
  margin: 14px 0 18px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.read-more,
.back-link {
  display: inline-flex;
  color: var(--green);
  font-weight: 700;
}

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

.pagination a {
  min-width: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--green-soft);
  text-align: center;
}

.pagination .is-active {
  color: var(--white);
  background: var(--green);
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
}

.article {
  max-width: 860px;
  padding: 72px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--green);
  font-weight: 600;
}

.article-header {
  margin-top: 22px;
}

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

.article-meta .blog-category {
  margin-bottom: 0;
}

.article h1 {
  margin: 12px 0 18px;
  font-size: 44px;
  line-height: 1.18;
}

.article-header p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.article-cover {
  width: 100%;
  max-height: 460px;
  margin: 34px 0;
  object-fit: cover;
  border-radius: 16px;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  padding: 18px;
  background: var(--green-soft);
  border: 1px solid rgba(80, 104, 49, 0.12);
  border-radius: 14px;
}

.article-share > span {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-buttons a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(80, 104, 49, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.article-content {
  color: var(--text);
  font-size: 18px;
  line-height: 1.85;
}

.article-content h1,
.article-content h2,
.article-content h3 {
  color: var(--green);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.article-content h1 {
  margin: 34px 0 14px;
  font-size: 30px;
}

.article-content h2 {
  margin: 34px 0 12px;
  font-size: 30px;
}

.article-content h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.article-content p,
.article-content ul {
  margin: 0 0 20px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.article-tags span {
  padding: 8px 12px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(80, 104, 49, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.related-posts {
  padding: 18px 0 84px;
  background: var(--white);
}

.related-posts h2 {
  margin-bottom: 30px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  text-align: center;
}

@media (max-width: 1100px) {
  .header-inner {
    height: 82px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border: 1px solid rgba(80, 104, 49, 0.12);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(80, 104, 49, 0.14);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .nav .btn {
    width: 100%;
    margin-top: 8px;
  }

  .hero {
    min-height: 900px;
    align-items: flex-start;
    padding: 42px 0 430px;
    background-image: url("assets/img/tablet.png");
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    min-height: auto;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-copy {
    width: min(860px, 100%);
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    max-width: 840px;
  }

  .hero .eyebrow,
  .hero .divider,
  .hero .btn {
    margin-inline: auto;
  }

  .hero-text {
    max-width: 760px;
    margin: 22px auto 16px;
  }

  .dot-list {
    width: min(640px, 100%);
    margin-inline: auto;
    text-align: left;
  }

  .consultation .btn,
  .for-whom .btn,
  .whatsapp-btn {
    width: 100%;
  }

  h1 {
    font-size: 34px;
  }

  .split,
  .card-grid.four,
  .steps-grid,
  .result-grid,
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .consultation h2 {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 560px);
  }

  .topbar {
    font-size: 11px;
  }

  .brand img {
    width: 118px;
    height: auto;
  }

  .hero {
    min-height: 900px;
    padding: 28px 0 430px;
    align-items: flex-start;
    background-image: url("assets/img/mobile-hero-v2.png");
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    min-height: auto;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-copy {
    width: min(100%, 380px);
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
  }

  .hero .divider,
  .hero .btn {
    margin-inline: auto;
  }

  .eyebrow {
    font-size: 10px;
    margin: 0 auto 12px;
  }

  h1 {
    max-width: 430px;
    font-size: 24px;
    line-height: 1.16;
  }

  .hero h1 {
    max-width: 430px;
  }

  h2 {
    font-size: 27px;
  }

  .blog-hero h1 {
    font-size: 31px;
  }

  .hero-text,
  .problem-section p,
  .callout-list,
  .arrow-list {
    font-size: 15px;
  }

  .hero-text {
    max-width: 360px;
    margin: 14px auto 10px;
    line-height: 1.38;
  }

  .hero-text p + p,
  .dot-list {
    margin-top: 10px;
  }

  .dot-list {
    width: fit-content;
    gap: 6px;
    margin-bottom: 8px;
    text-align: left;
  }

  .gold-text {
    font-size: 15px;
  }

  .section {
    padding: 64px 0;
  }

  .split,
  .card-grid.four,
  .mini-grid,
  .benefit-grid,
  .steps-grid,
  .consult-grid,
  .result-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 180px;
  }

  .section:not(.about) .section-intro {
    align-items: center;
    text-align: center;
  }

  .section:not(.about) .section-intro .divider {
    margin-inline: auto;
  }

  .section:not(.about) .section-intro p {
    text-align: center;
  }

  .method-section p,
  .consult-grid,
  .diff-grid,
  .result-grid,
  .testimonial-grid {
    margin-top: 24px;
  }

  .steps-grid article,
  .method-grid article {
    min-height: auto;
  }

  .photo-card > img {
    height: auto;
  }

  .insta-badge {
    width: calc(100% - 32px);
    left: 16px;
  }

  .final-cta h2 {
    font-size: 31px;
  }

  .final-cta p {
    font-size: 17px;
  }

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

  .blog-filters {
    grid-template-columns: 1fr;
  }

  .article {
    padding: 56px 0;
  }

  .article h1 {
    font-size: 32px;
  }

  .article-content h1 {
    font-size: 28px;
  }

  .article-content h2 {
    font-size: 26px;
  }

  .article-content h3 {
    font-size: 20px;
  }

  .article-header p,
  .article-content {
    font-size: 16px;
  }

  .article-share {
    align-items: stretch;
    flex-direction: column;
  }

  .share-buttons a {
    flex: 1 1 calc(50% - 10px);
  }

  .related-posts h2 {
    font-size: 30px;
  }

  .btn,
  .whatsapp-btn {
    width: 100%;
    padding: 0 22px;
    font-size: 16px;
  }

  .hero .btn {
    width: 100%;
  }
}
