:root {
  --ink: #18232b;
  --muted: #37424a;
  --green-dark: #1d5b39;
  --green-mid: #2f7147;
  --green-soft: #3f8457;
  --gold: #f7c848;
  --gold-strong: #f3af1d;
  --gold-border: #d39f3d;
  --cream: #efebe5;
  --panel: #f5f1eb;
  --line: #c9c2b7;
  --shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
  --radius: 14px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(241, 236, 229, 0.9), rgba(241, 236, 229, 0.9)),
    url("./../images/gp/fabric-texture.webp") repeat;
}

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

.page {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 14px 30px;
}

.hero {
  position: relative;
}

.hero:before {
  content: '';
  overflow: hidden;
  background: #f3eeea url(./../images/gp/dkpal-on-hand-bg.webp) right center no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-copy {
  padding: 30px 28px 24px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero h1 span {
  color: #1c4a3e;
}

.hero p {
  margin: 0;
  max-width: 29ch;
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.4;
  color: #2d3338;
}

.hero p strong {
  font-weight: 800;
}

.hero-cta-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  min-height: 58px;
  padding: 20px 22px 14px;
  border-radius: 14px;
  border: 1px solid #c1731f;
  background: linear-gradient(180deg, #ffd95f 0%, #f3a71a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 10px rgba(0, 0, 0, 0.2);
  color: #1f2a35;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.hero-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 16px;
  font-size: 1.14rem;
  font-weight: 700;
  color: #253039;
  display: flex;
  flex-wrap: wrap;
}

.hero-checks li {
  display: flex;
  align-items: center;
}

.hero-checks li::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(./../images/gp/checkmark-green-gp.webp);
  background-size: cover;
  margin-right: 8px;
  display: inline-block;
}

.hero-image {
  position: relative;
  min-height: 400px;
  background:
    linear-gradient(180deg, rgba(245, 242, 237, 0.6), rgba(245, 242, 237, 0.1));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.green-strip {
    margin: 0;
    padding: 24px 18px;
    text-align: center;
    color: #f6e698;
    font-size: clamp(1.55rem, 3vw, 3.05rem);
    font-weight: 800;
    line-height: 1.06;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 1);
    position: relative;
}

.green-strip:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(./../images/gp/green-fabric-bg.webp?v=5) top left / cover repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 110%;
}

.green-strip.strip-2 {
  color: #fff;
}

.green-strip.strip-2:before {
  background-position: top right 300px;
}

.green-strip span {
  position: relative;
  z-index: 1;
}

.green-strip-b {
    margin: 0;
    padding: 24px 18px;
    position: relative;
}

.section-title {
  margin: 32px 0 30px;
  text-align: center;
  color: #1a2026;
  font-size: clamp(1.55rem, 3vw, 3.05rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cards {
  display: grid;
  gap: 16px;
}

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

.card-media {
  aspect-ratio: 1.45 / 0.82;
  overflow: hidden;
  border-bottom: 1px solid #cecabf;
  background: #dbd8d1;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 11px 12px 12px;
}

.card h3 {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #23262d;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card h3::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(./../images/gp/checkmark-green-gp.webp);
  background-size: cover;
  margin-right: 8px;
  display: inline-block;
}

.card p {
  margin: 0;
  color: #2e3439;
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  line-height: 1.34;
  font-weight: 500;
}

.ingredients-strip {
  margin-top: 34px;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.ingredients-strip .green-strip {
  margin: 0;
  font-size: clamp(1.35rem, 2.9vw, 2.7rem);
  padding-inline: 52px;
}

.ingredients-strip::before, .ingredients-strip::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 125px;
    height: 12px;
    background: url(./../images/gp/diamond-sep.webp);
    z-index: 28;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.ingredients-strip::before {
  left: 50px;
}

.ingredients-strip::after {
  right: 50px;
}


.offer-box {
  margin-top: 32px;
  background: linear-gradient(180deg, #fae9b6 60%, #eeb662, #fede99);
  border: 1px solid #936841;
  border-radius: 12px;
  padding: 6px;
}

.offer-box-content {
  background: #f4efe9;
  border: 2px solid var(--gold-border);
  border-radius: 12px;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.14);
}

.offer-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 16px 24px 188px;
  background: linear-gradient(rgba(32, 94, 58, 0.82), rgba(32, 94, 58, 0.82)), url(./../images/gp/green-fabric-bg.webp) center / cover no-repeat;
}

.offer-header h2 {
  margin: 0;
  text-align: center;
  color: #f2e7b5;
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 900;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.35);
}

.offer-sticker {
  width: clamp(140px, 20vw, 220px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.28));
  margin: -6% 0 -6% -18%;
  z-index: 1;
}

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

.plan {
  position: relative;
  padding: 14px 14px 16px;
  border-right: 1px solid #d3c9bc;
  text-align: center;
  background: rgba(246, 242, 236, 0.93);
}

.plan:last-child {
  border-right: 0;
}

.discount {
  position: absolute;
  top: 8px;
  left: 14px;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 1.58rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #dc4f48, #c8342e);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.26);
  z-index: 1;
}

.discount.green {
  background: linear-gradient(180deg, #20a151, #17803f);
}

.feature  {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin: 48px 0;
}

.plan h3 {
    color: #1f3f79;
    font-size: clamp(1.8rem, 3.4vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 700;
    margin: 16px 0 24px;
    color: #22437a;
    text-align: center;
    display: block;
}

.plan-image {
    height: 130px;
}

.plan-image img {
    max-height: 100%;
    width: auto;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.2));
    display: block;
    margin: 32px auto 32px;
}

.price-line {
  margin: 2px 0 0;
  color: #1b2128;
  font-size: clamp(2.1rem, 4.2vw, 3.55rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-line small {
  font-size: 0.55em;
  font-weight: 600;
  color: #222831;
}

.ship-line {
  margin: 4px 0 10px;
  color: #1b2026;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.1;
  font-weight: 600;
}

.ship-line strong {
  font-weight: 800;
}

.total-line {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 800;
    margin: 24px 0 8px;
    color: #184e9a;
}

.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 278px);
  min-height: 52px;
  border-radius: 10px;
  text-decoration: none;
  color: #17242d;
  margin: 16px 0 0;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66), 0 4px 7px rgba(0, 0, 0, 0.22);
  background: linear-gradient(180deg, #ffd75b 0%, #efad1a 100%);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.plan-btn.blue {
  color: #f8fbff;
  border-color: #1f3e74;
  background: linear-gradient(180deg, #2a67c3, #14479b);
}

.plan-btn.green {
  color: #f1fff5;
  border-color: #1c663a;
  background: linear-gradient(180deg, #33a85a, #16753d);
}

@media (hover: hover) and (pointer: fine) {
  .cta-btn:hover,
  .plan-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04) saturate(1.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 16px rgba(0, 0, 0, 0.24);
  }
}

.cta-btn:active,
.plan-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.cta-btn:focus-visible,
.plan-btn:focus-visible {
  outline: 3px solid rgba(35, 86, 153, 0.42);
  outline-offset: 2px;
}

.offer-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.offer-footer {
  border-top: 1px solid #d5cabd;
  padding: 18px 16px 20px;
  text-align: center;
  color: #20262d;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
}

.offer-footer strong {
  color: #184e9a;
  font-weight: 800;
}

.checkmark {
  width: 42px;
  height: 42px;
  background: url(./../images/gp/checkmark-green-gp.webp);
  background-size: cover;
  display: inline-block;
}

.guarantee-strip {
  margin-top: 32px;
  padding: 24px 16px;
  border-top: 2px solid #d8c584;
  border-bottom: 2px solid #d8c584;
  position: relative;
}

.guarantee-strip:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(./../images/gp/green-fabric-bg.webp?v=5) top left / cover repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 110%;
}

.guarantee-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.guarantee-strip h3 {
  color: #f1e7b4;
  font-size: clamp(1.5rem, 3.1vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.guarantee-strip p {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  max-width: 680px;
  margin: 10px 0 0;
}

.guarantee-strip img {
  width: clamp(164px, 20vw, 320px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.28));
  margin: -6% 0 -6% -12%;
}

.container {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 14px;
}

.faqs-sec {
  margin-top: 34px;
  padding: 28px 0 16px;
  border: 1px solid #d2c9bc;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(246, 240, 232, 0.8)),
    url("./../images/gp/fabric-texture.webp") repeat;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.faqs-sec h2 {
  margin: 0 0 16px;
  text-align: center;
  color: #20303c;
  font-size: clamp(1.65rem, 3.1vw, 2.5rem);
  letter-spacing: -0.01em;
}

.faq {
  max-width: 1060px;
  margin: 0 auto;
}

.faq details {
  margin-bottom: 12px;
  border: 1px solid #d7cec1;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 14px 50px 14px 16px;
  color: #18364d;
  font-size: clamp(1.03rem, 2.1vw, 1.2rem);
  line-height: 1.35;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(246, 241, 233, 0.8), rgba(238, 231, 222, 0.72));
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34, 97, 65, 0.14);
  color: #205840;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 12px 16px 14px;
  color: #2f383f;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.45;
}

.faq details p + p {
  margin-top: -4px;
}

.faq a {
  color: #1f5692;
  font-weight: 700;
}

.site-footer {
  margin-top: 34px;
  padding: 26px 0 22px;
  color: #d5e7ea;
  background: #1c1c1c;
  border-top: 2px solid #d9c68b;
}

.footer-visual {
  position: relative;
}

.footer-visual-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(208, 226, 227, 0.24);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.footer-visual-tag {
  position: absolute;
  left: 25px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(14, 47, 62, 0.82);
  border: 1px solid rgba(212, 232, 234, 0.4);
  color: #f2fcff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.footer-main {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}

.footer-panel {
  min-height: 100%;
  padding: 14px 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(193, 226, 230, 0.25);
  background: linear-gradient(180deg, rgba(242, 251, 255, 0.12), rgba(216, 244, 250, 0.05));
}

.footer-kicker {
  margin: 0 0 8px;
  color: #9dd8df;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-panel h3 {
  margin: 0 0 10px;
  color: #f8fcff;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.15;
  font-weight: 800;
}

.footer-panel h4 {
  margin: 0 0 10px;
  color: #f0f9ff;
  font-size: clamp(1.07rem, 2vw, 1.26rem);
  font-weight: 800;
}

.footer-panel p {
  margin: 0 0 8px;
  color: #c8dee3;
  font-size: clamp(0.96rem, 1.9vw, 1.02rem);
  line-height: 1.45;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-height: 42px;
  border-radius: 999px;
  padding: 8px 14px;
  color: #f6fbff;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgb(129 129 129);
  background: linear-gradient(180deg, rgb(56 90 51), rgb(44 66 35));
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.footer-email:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.footer-list {
  margin: 0;
  padding-left: 18px;
}

.footer-list li {
  margin-bottom: 8px;
  color: #c8dee3;
  font-size: clamp(0.96rem, 1.9vw, 1.03rem);
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(196, 225, 229, 0.24);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #b0cad0;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .hero:before {
    opacity: 0.2;
    background-size: cover;
  }
}

@media (max-width: 980px) {
  .page {
    padding-inline: 12px;
  }

  .hero {
    background-position: right -100px top;
    background-size: auto 100%;
  }

  .hero-copy {
    padding: 24px 20px 22px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8vw, 3.1rem);
    line-height: 1.08;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-cta-row {
    gap: 10px 14px;
  }

  .hero-checks {
    font-size: 1.02rem;
    gap: 10px 14px;
  }

  .cards-3,
  .cards-4,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-header {
    flex-direction: column;
    gap: 8px;
    padding: 14px 12px 12px;
  }

  .offer-sticker {
    width: clamp(120px, 28vw, 176px);
    margin: 0 auto 2px;
  }

  .plan {
    border-right: 0;
    border-bottom: 1px solid #d3c9bc;
    padding: 12px 12px 14px;
  }

  .plan:last-child {
    border-bottom: 0;
  }

  .plan h3,
  .plan.starter h3 {
    margin: 8px 0 16px;
    font-size: clamp(1.65rem, 6.4vw, 2.2rem);
  }

  .discount {
    position: static;
    display: inline-block;
    margin: 2px auto 10px;
    font-size: 1.2rem;
  }

  .plan-image {
    height: 114px;
  }

  .plan-image img {
    margin: 10px auto 12px;
  }

  .ship-line {
    margin-bottom: 8px;
  }

  .plan-btn {
    width: 100%;
    max-width: 360px;
    font-size: clamp(1.24rem, 4.9vw, 1.5rem);
    min-height: 48px;
  }

  .offer-flex {
    flex-wrap: wrap;
  }

  .ingredients-strip::before,
  .ingredients-strip::after {
    width: 92px;
  }

  .ingredients-strip::before {
    left: 12px;
  }

  .ingredients-strip::after {
    right: 12px;
  }

  .guarantee-flex {
    gap: 14px;
  }

  .guarantee-strip img {
    margin: 0;
    width: clamp(120px, 28vw, 210px);
  }

  .faqs-sec {
    margin-top: 28px;
    padding: 20px 0 12px;
  }

  .faq summary {
    padding: 12px 44px 12px 12px;
  }

  .faq details p {
    padding: 10px 12px 12px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding: 18px 14px 16px;
  }

  .hero {
    background-position: right -180px top;
  }

  .hero-cta-row {
    gap: 10px;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 14px 14px 12px;
    font-size: clamp(1.24rem, 6.1vw, 1.45rem);
  }

  .hero-checks {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 0.98rem;
  }

  .hero-checks li::before {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }

  .ingredients-strip:before, .ingredients-strip:after {
    display: none;
  }

  .green-strip {
    padding: 16px 10px;
    font-size: clamp(1.18rem, 8vw, 1.45rem);
    line-height: 1.4;
  }

  .section-title {
    margin: 24px 0 18px;
    font-size: clamp(1.18rem, 8vw, 1.45rem);
    line-height: 1.4;
  }

  .card-body {
    padding: 10px 10px 12px;
  }

  .card h3 {
    font-size: clamp(1.2rem, 6vw, 1.45rem);
    margin-bottom: 6px;
  }

  .card h3::before {
    width: 24px;
    height: 24px;
    margin-right: 4px;
  }

  .card p {
    font-size: clamp(1rem, 5vw, 1.1rem);
    line-height: 1.36;
  }

  .offer-header h2 {
    font-size: clamp(1.12rem, 5.7vw, 1.35rem);
    line-height: 1.15;
  }

  .offer-sticker {
    width: 126px;
  }

  .offer-footer {
    font-size: 1.04rem;
    padding: 12px 10px 14px;
  }

  .checkmark {
    width: 26px;
    height: 26px;
  }

  .guarantee-strip {
    padding: 16px 10px;
  }

  .guarantee-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .guarantee-strip h3 {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }

  .guarantee-strip p {
    font-size: clamp(1rem, 4.9vw, 1.2rem);
    margin-top: 8px;
  }

  .faqs-sec h2 {
    margin-bottom: 12px;
  }

  .faq summary {
    font-size: 0.98rem;
    padding-right: 40px;
  }

  .faq summary::after {
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
  }

  .faq details p {
    font-size: 0.95rem;
  }

  .site-footer {
    margin-top: 26px;
    padding: 18px 0 16px;
  }

  .footer-visual-tag {
    left: 10px;
    bottom: 8px;
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-panel {
    padding: 12px 12px 14px;
  }

  .footer-email {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }
}
