/* =============================================
   Heritage Social — Main Stylesheet
   ============================================= */

/* ─── Custom Properties ─── */
:root {
  --yellow: #FFC335;
  --dark-green: #072E35;
  --darker-green: #16232C;
  --green: #16232C;
  --mint: #b5dcce;
  --mint-light: #e8f3ee;
  --mint-bg: #f0f7f4;
  --white: #ffffff;
  --text-body: #3a5a56;
  --text-light: #6b8a85;
  --border-light: #d4e5df;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --header-height: 80px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1200px;
  --container-pad: clamp(20px, 4vw, 40px);
}

/* ─── Reset ─── */
*, *::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(--font);
  color: var(--dark-green);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--yellow);
  color: var(--dark-green);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--dark-green);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.site-header__logo:hover {
  opacity: 0.85;
}

.site-header__logo img {
  height: 44px;
  width: auto;
}

/* ─── Navigation ─── */
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav__list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.primary-nav__list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.primary-nav__list a:hover {
  color: #fff;
}

.primary-nav__list a:hover::after {
  width: 100%;
}

/* ─── Mobile Nav Toggle ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle--open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle--open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding-top: var(--header-height);
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: visible;
  z-index: 2;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(7, 46, 53, 0.94) 0%, rgba(7, 46, 53, 0.85) 40%, rgba(22, 35, 44, 0.55) 100%);
}

.hero__bg-plus {
  position: absolute;
  bottom: -12%;
  right: -5%;
  width: clamp(350px, 45vw, 650px);
  height: auto;
  pointer-events: none;
  z-index: 10;
}

.hero__bg-plus svg {
  width: 100%;
  height: auto;
}

/* Circle draw animation */
.hero__bg-plus .icon-circle {
  stroke: #ffffff;
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  animation: drawCircle 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

/* Plus lines fade in after circle draws */
.hero__bg-plus .icon-plus-v,
.hero__bg-plus .icon-plus-h {
  stroke: #ffffff;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}

.hero__bg-plus .icon-plus-v {
  animation: drawLine 0.5s ease 1.8s forwards;
}

.hero__bg-plus .icon-plus-h {
  animation: drawLine 0.5s ease 2.0s forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--container-pad);
  width: 100%;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
  max-width: 560px;
}

.hero__headline {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

.hero__brand-word {
  display: block;
  height: clamp(28px, 4.5vw, 52px);
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero__brand-word--social {
  height: clamp(26px, 4vw, 48px);
}


/* ─── Sections ─── */
.section {
  padding: var(--section-pad) 0;
}

.section--white {
  background: var(--white);
}

.section--after-hero {
  position: relative;
  z-index: 1;
}

.section--mint {
  background: var(--mint-bg);
}

.section--services {
  padding: 0;
  background: none;
}

.section--services .section__inner {
  max-width: 100%;
  padding: 0;
}

.section--cta {
  background: var(--mint-light);
}

.section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.section__split--reverse {
  direction: rtl;
}

.section__split--reverse > * {
  direction: ltr;
}

.section__heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.section__heading--centered {
  text-align: center;
  margin-bottom: 48px;
}

.section__heading--cta {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
}

.section__text p {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.75;
}

.section__text p:last-child {
  margin-bottom: 0;
}

.section__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.section__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s ease;
}

.section__image-frame:hover img {
  transform: scale(1.03);
}

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  padding: clamp(28px, 3.5vw, 44px);
  transition: transform 0.3s ease;
  border: none;
  border-radius: 0;
}

.service-card:hover {
  transform: scale(1.02);
  z-index: 1;
}

/* Checkerboard pattern: row 1 = mint, dark, yellow; row 2 = yellow, mint, dark */
.service-card:nth-child(1) { background: var(--mint-light); color: var(--dark-green); }
.service-card:nth-child(2) { background: var(--dark-green); color: #fff; }
.service-card:nth-child(3) { background: var(--yellow); color: var(--dark-green); }
.service-card:nth-child(4) { background: var(--yellow); color: var(--dark-green); }
.service-card:nth-child(5) { background: var(--mint-light); color: var(--dark-green); }
.service-card:nth-child(6) { background: var(--dark-green); color: #fff; }

.service-card__icon {
  width: 36px;
  height: 36px;
  color: currentColor;
  margin-bottom: 16px;
  opacity: 0.7;
}

.service-card__icon .plus-v,
.service-card__icon .plus-h {
  stroke-dasharray: 26.13;
  stroke-dashoffset: 26.13;
  transition: none;
}

.service-card.is-visible .plus-v {
  animation: drawPlus 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-card.is-visible .plus-h {
  animation: drawPlus 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.service-card:nth-child(1).is-visible .plus-v { animation-delay: 0s; }
.service-card:nth-child(1).is-visible .plus-h { animation-delay: 0.2s; }
.service-card:nth-child(2).is-visible .plus-v { animation-delay: 0.1s; }
.service-card:nth-child(2).is-visible .plus-h { animation-delay: 0.3s; }
.service-card:nth-child(3).is-visible .plus-v { animation-delay: 0.2s; }
.service-card:nth-child(3).is-visible .plus-h { animation-delay: 0.4s; }
.service-card:nth-child(4).is-visible .plus-v { animation-delay: 0.3s; }
.service-card:nth-child(4).is-visible .plus-h { animation-delay: 0.5s; }
.service-card:nth-child(5).is-visible .plus-v { animation-delay: 0.4s; }
.service-card:nth-child(5).is-visible .plus-h { animation-delay: 0.6s; }
.service-card:nth-child(6).is-visible .plus-v { animation-delay: 0.5s; }
.service-card:nth-child(6).is-visible .plus-h { animation-delay: 0.7s; }

@keyframes drawPlus {
  to {
    stroke-dashoffset: 0;
  }
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 700;
  color: inherit;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9375rem;
  color: inherit;
  opacity: 0.85;
  line-height: 1.7;
}

/* ─── Blog Grid ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: clamp(20px, 2.5vw, 28px);
}

.blog-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card__body p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-green);
  transition: color 0.2s ease, gap 0.2s ease;
}

.blog-card__link:hover {
  color: var(--yellow);
  gap: 10px;
}

/* ─── CTA Section ─── */
.section__split--cta {
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.cta-action {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.cta-action__heading {
  font-size: clamp(1.1rem, 1.8vw, 1.375rem);
  font-weight: 600;
  color: var(--dark-green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn--outline {
  background: transparent;
  border-color: var(--dark-green);
  color: var(--dark-green);
}

.btn--outline:hover {
  background: var(--dark-green);
  color: var(--white);
}

.btn--primary {
  background: var(--yellow);
  color: var(--dark-green);
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: #e6ad2a;
  border-color: #e6ad2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--dark-green);
  padding: 48px 0;
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.site-footer__logo {
  height: 36px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.site-footer__logo:hover {
  opacity: 1;
}

.site-footer__social {
  display: flex;
  gap: 20px;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
}

.site-footer__social a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.site-footer__social svg {
  width: 20px;
  height: 20px;
}

.site-footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Animations — Entrance ─── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.anim-delay-1 { animation-delay: 0.2s; }
.anim-delay-2 { animation-delay: 0.4s; }
.anim-delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Animations — Scroll-triggered ─── */
.anim-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .anim-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.services-grid .anim-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.services-grid .anim-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.services-grid .anim-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.services-grid .anim-on-scroll:nth-child(6) { transition-delay: 0.5s; }

.blog-grid .anim-on-scroll:nth-child(2) { transition-delay: 0.15s; }

/* ─── Responsive — Tablet ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3) { background: var(--yellow); }
  .service-card:nth-child(4) { background: var(--yellow); }
}

/* ─── Responsive — Mobile ─── */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--darker-green);
    padding: calc(var(--header-height) + 24px) 32px 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .primary-nav--open {
    transform: translateX(0);
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .primary-nav__list a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  .primary-nav__list a::after {
    display: none;
  }

  .hero__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__brand-word {
    height: clamp(22px, 7vw, 36px);
  }

  .hero__brand-word--social {
    height: clamp(20px, 6.5vw, 34px);
  }

  .hero__bg-plus {
    right: -25%;
    bottom: -20%;
    width: 70vw;
  }

  .section__split,
  .section__split--cta {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section__split--reverse {
    direction: ltr;
  }

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

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

  .cta-action {
    text-align: center;
  }
}

/* ─── Mobile nav overlay ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay--visible {
  opacity: 1;
  pointer-events: all;
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .anim-fade-up,
  .anim-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ─── Header upgrade button ─── */
.header-upgrade-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, transform .1s;
  letter-spacing: .01em;
}

.header-upgrade-btn:hover {
  background: #2c4e4c;
  transform: translateY(-1px);
}

.header-upgrade-btn:active {
  transform: translateY(0);
}

/* ─── Tier badges ─── */
.popup-header-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  flex-wrap: nowrap;
}

.popup-tier-badge {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.popup-tier-badge.basic {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}

.popup-tier-badge.featured {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* ─── Basic popup CTA ─── */
.popup-inner--basic .popup-header {
  border-bottom: none;
}

.popup-upgrade-cta {
  padding: 10px 16px 14px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.popup-upgrade-text {
  font-size: 0.8rem;
  color: var(--text-medium);
  line-height: 1.45;
  margin-bottom: 10px;
}

.popup-btn-upgrade {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  background: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  letter-spacing: .01em;
}

.popup-btn-upgrade:hover {
  background: #2c4e4c;
}

/* ─── Basic marker style ─── */
.museum-marker.marker-basic {
  opacity: 0.6;
  border-color: rgba(255,255,255,.6);
}

/* ─── Upgrade modal ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 20, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

body.modal-open {
  overflow: hidden;
}

.modal-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(12px);
  transition: transform .2s;
  overflow: hidden;
}

.modal-overlay.visible .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,.3);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 1;
}

.modal-close:hover {
  background: rgba(255,255,255,.45);
}

.modal-header {
  background: linear-gradient(135deg, var(--brand-gradient-start), var(--brand-gradient-end));
  padding: 28px 24px 22px;
  text-align: center;
}

.modal-star {
  font-size: 2rem;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 4px;
}

.modal-museum-name {
  font-size: 0.85rem;
  color: rgba(26,46,44,.7);
  font-style: italic;
  min-height: 1.2em;
}

.modal-body {
  padding: 22px 24px 4px;
}

.modal-price {
  text-align: center;
  margin-bottom: 16px;
}

.modal-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.modal-price-period {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 500;
}

.modal-intro {
  font-size: 0.875rem;
  color: var(--text-medium);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 18px;
}

.modal-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.modal-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.benefit-check {
  color: var(--brand-teal-deeper);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-footer {
  padding: 18px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-stripe-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: var(--text-dark);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  letter-spacing: .01em;
}

.modal-stripe-btn:hover {
  background: #2c4e4c;
  transform: translateY(-1px);
}

.modal-stripe-btn:active {
  transform: translateY(0);
}

.modal-stripe-btn.btn-disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.modal-cancel {
  background: none;
  border: none;
  font-size: 0.8125rem;
  color: var(--text-light);
  cursor: pointer;
  text-align: center;
  padding: 4px;
  transition: color .15s;
}

.modal-cancel:hover {
  color: var(--text-medium);
}

/* Responsive modal */
@media (max-width: 480px) {
  .modal-card {
    max-width: 100%;
  }

  .modal-header {
    padding: 22px 20px 18px;
  }

  .modal-body {
    padding: 18px 20px 4px;
  }

  .modal-footer {
    padding: 14px 20px 20px;
  }

  .header-upgrade-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}

/* ─── Print ─── */
@media print {
  .site-header,
  .site-footer,
  .hero__bg-plus {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 32px 0;
    background: #fff;
    color: #000;
  }

  .section {
    padding: 24px 0;
    break-inside: avoid;
  }
}
