:root {

  /* Base backgrounds */
  --bg: #f8f6f1;
  --bg-soft: #f2efe7;
  --surface: #ffffff;
  --surface-2: #fcfbf8;

  /* Text */
  --text: #222629;          /* Dark Grey Azure */
  --text-soft: #7d8c99;     /* Gray Azure secondary */

  /* Primary brand color */
  --primary: #4a5f73;       /* Gray Azure */
  --primary-dark: #222629;  /* Dark Grey Azure */

  /* Secondary accent */
  --secondary: #7d8c99;     /* Light Gray Azure */

  /* Highlight accent */
  --accent: #f7f876;        /* Light green highlight */

  /* Neutral warm accent (very light use) */
  --accent-soft: #cfc6b8;   /* Pastel Gray Orange */

  /* UI borders */
  --border: rgba(34, 38, 41, 0.12);

  /* Shadows */
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.09);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  /* Layout */
  --container: 1180px;
  --header-h: 88px;

  /* Animation */
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --anim-speed: 0.8s;

  /* Icons */
  --icon-bg: rgba(74, 95, 115, 0.12);
  --icon-color: #4a5f73;

  /* Hover shadows */
  --card-shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

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

.site-main {
  overflow: clip;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.center {
  text-align: center;
}

.primary {
  color: var(--primary);
}

.muted {
  color: var(--text-soft);
}

.small {
  font-size: 0.95rem;
}

.fineprint {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 58ch;

}

.section-head {
  max-width: 760px;
  margin: 0 auto 2.4rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.28s var(--ease-soft),
    box-shadow 0.28s var(--ease-soft),
    opacity 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(109, 142, 114, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(37, 49, 39, 0.14);
}

.btn-outline:hover {
  background: #fff;
}

.btn-light {
  background: #fff;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-block {
  width: 100%;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 241, 0.84);
  backdrop-filter: saturate(1.25) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.brand-sub {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 0.2rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.nav-link,
.nav-mobile-link,
.footer-links a {
  position: relative;
}

.nav-link {
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1.5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background: currentColor;
  opacity: 0.6;
}

.nav-link:hover::after,
.footer-links a:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 1rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  content: "";
}

.nav-toggle-bars::before {
  transform: translateY(-6px);
}

.nav-toggle-bars::after {
  transform: translateY(4px);
}

.nav-toggle.open .nav-toggle-bars {
  background: transparent;
}

.nav-toggle.open .nav-toggle-bars::before {
  transform: rotate(45deg);
}

.nav-toggle.open .nav-toggle-bars::after {
  transform: rotate(-45deg);
}

.nav-mobile {
  border-top: 1px solid var(--border);
  background: rgba(248, 246, 241, 0.97);
}

.nav-mobile-inner {
  display: grid;
  gap: 0.6rem;
  padding: 1rem 0 1.2rem;
}

.nav-mobile-link {
  padding: 0.85rem 0.2rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(37, 49, 39, 0.06);
}

.nav-mobile-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.65rem;
}

/* Hero */

.hero {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.hero-copy {
  max-width: 620px;
}

.hero-media {
  position: relative;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.35s var(--ease-soft),
    box-shadow 0.35s var(--ease-soft),
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.media-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.frame-accent {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.frame-accent-1 {
  width: 90px;
  height: 90px;
  background: rgba(109, 142, 114, 0.16);
  top: 18px;
  right: 18px;
}

.frame-accent-2 {
  width: 68px;
  height: 68px;
  background: rgba(216, 203, 184, 0.42);
  bottom: 18px;
  left: 18px;
}

.floating-frame {
  animation: floatY 5.5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Trust */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.trust-item,
.card,
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease-soft),
    box-shadow 0.35s var(--ease-soft),
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.card:hover,
.trust-item:hover,
.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.feature-icon,
.card-icon,
.step-icon,
.quote-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--icon-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft);
}

.card:hover .card-icon,
.trust-item:hover .feature-icon,
.step:hover .step-icon {
  transform: scale(1.08) translateY(-2px);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.step-top {
  display: flex;
  align-items: center;
}

.step-icon {
  margin-left: auto;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(109, 142, 114, 0.2);
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

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

.quote-icon {
  margin-bottom: 0.8rem;
}

.faq-inline-icon {
  margin-right: 0.6rem;
  color: var(--icon-color);
}

/* CTA banner */

.cta-banner {
  background: linear-gradient(135deg, #fbfaf6 0%, #f1ede4 100%);
}

.cta-inner {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

/* Accordion */

.accordion {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}

.accordion-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease-soft),
    box-shadow 0.35s var(--ease-soft),
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

.accordion-item .accordion-icon {
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  overflow: hidden;
  padding: 0 1rem 0.3rem 1rem;
}

.accordion-panel p {
  margin: 0;
  color: var(--text-soft);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(37,49,39,0.05);
  border-radius: 14px;
  padding: 1rem 1rem;
}

/* Footer */

.site-footer {
background: rgba(248, 246, 241, 0.84);
  color: #222629;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  width: 172px;
  height: 172px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-title {
  margin-bottom: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
   color: #222629;
}

.footer-sub,
.footer-note,
.site-footer .muted {
  color: #222629;
}

.footer-col h4 {
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
   color: #222629;
}

.footer-links a,
.link-button {
   color: #222629;
}

.link-button {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease-soft), background 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.16);
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

/* Modal */

.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 28, 23, 0.5);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 640px);
  max-height: 88vh;
  overflow: auto;
  margin: 6vh auto 0;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border);
}

.modal-body {
  padding: 1.6rem;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.success {
  text-align: center;
  padding: 1rem 0;
}

.success-badge {
  width: 76px;
  height: 76px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(109, 142, 114, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
}

/* Form */

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(37,49,39,0.14);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #fff;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(109, 142, 114, 0.7);
  box-shadow: 0 0 0 4px rgba(109, 142, 114, 0.12);
  transform: translateY(-1px);
}

.field-error {
  color: #b42318;
  font-size: 0.9rem;
  margin-top: 0.4rem;
  min-height: 1em;
}

/* Reveal animations */

.reveal {
  opacity: 0;
  transition:
    opacity 0.7s var(--ease-soft),
    transform 0.8s var(--ease-soft);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-34px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal-down {
  transform: translateY(-20px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.is-loaded .hero-copy,
body.is-loaded .hero-media,
body.is-loaded .site-header {
  opacity: 1;
}

/* Resources filter support */

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: 0.25s ease;
}

.chip.active,
.chip:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Responsive */

@media (max-width: 1100px) {
  .trust-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .grid-2,
  .steps,
  .trust-grid,
  .card-grid,
  .footer-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }

  .nav-desktop,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section {
    padding: 4rem 0;
  }

  .media-frame img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .brand-sub {
    font-size: 0.82rem;
  }

  .modal-card {
    width: min(95vw, 640px);
    margin-top: 3vh;
  }

  .section {
    padding: 3.4rem 0;
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reduced motion */

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

  .reveal,
  .btn,
  .card,
  .trust-item,
  .step,
  .media-frame,
  .social-icon,
  .feature-icon,
  .card-icon,
  .step-icon,
  .quote-icon,
  .floating-frame {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(74, 95, 115, 0.14);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
  color: var(--primary);
}

.price span {
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.check {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.hero .narrow.center .lead,
.hero .narrow.center .muted {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.blog-card .blog-image{
height:160px;
display:flex;
align-items:center;
justify-content:center;
background:var(--bg-soft);
font-size:34px;
color:var(--primary);
border-bottom:1px solid var(--border);
}

.blog-meta{
  padding-top: 25px; 
display:flex;
justify-content:space-between;
margin-bottom:8px;
}

.tag{
background:var(--icon-bg);
color:var(--icon-color);
padding:4px 10px;
border-radius:999px;
font-size:12px;
font-weight:600;
}

.readmore{
margin-top:10px;
display:inline-block;
font-weight:600;
color:var(--primary);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.resource-card {
  text-align: left;
}

.resource-card .card-icon {
  margin-bottom: 0.9rem;
}

.resource-card .tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
}

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

@media (max-width: 900px) {
  .card-grid.three {
    grid-template-columns: 1fr;
  }
}

.legal-prose {
  max-width: 820px;
  margin: 0 auto;
}

.legal-prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-prose ul {
  padding-left: 1.2rem;
}

.legal-prose a {
  color: var(--primary);
  text-decoration: underline;
}

.begin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 320px));
  justify-content: center;
  gap: 2rem;
}

.single-plan-shell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.single-plan-card {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.single-plan-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}

.single-plan-inner .card-icon {
  margin: 0 auto 1rem;
}

.single-plan-inner h3,
.single-plan-inner .price,
.single-plan-inner > .muted.small,
.single-plan-inner > p,
.single-plan-inner > .muted {
  text-align: center;
}

.single-plan-inner .price {
  justify-content: center;
}

.single-plan-inner .feature-list {
  max-width: 560px;
  margin: 1.5rem auto 0;
  text-align: left;
}

.single-plan-actions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .begin-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .single-plan-card {
    width: 100%;
    padding: 1.5rem 1rem;
  }

  .single-plan-inner {
    width: 100%;
  }

  .single-plan-inner .feature-list {
    max-width: 100%;
  }

  .single-plan-actions {
    justify-content: center;
  }
}


.membership-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1101px) {
  .membership-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.membership-grid .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
}

.membership-grid .card-icon {
  margin-bottom: 12px;
}

.membership-grid h3 {
  margin-bottom: 8px;
}

.membership-grid p {
  max-width: 240px;
}


/* Blog card content spacing fix */
.blog-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 14px; /* controls overall spacing rhythm */
}

/* Top meta row (category + featured) */
.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px; /* small separation from title */
}

/* Category pill */
.blog-card .tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Featured article text */
.blog-card .featured-label {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}

/* Title spacing */
.blog-card h3 {
  margin: 6px 0 4px;
  line-height: 1.3;
}

/* Description spacing */
.blog-card p {
  margin: 0 0 10px;
}

/* Read more link spacing */
.blog-card .card-link {
  margin-top: auto;
}

/* Article pages */
.article-shell {
  padding: clamp(1.5rem, 2vw, 2.25rem);
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-content h2,
.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25rem;
}

.article-content li + li {
  margin-top: 0.5rem;
}

.article-disclaimer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}


/* Article hero meta row */
.article-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: min(100%, 900px);
  margin: 0 auto 1.25rem;
  padding: 0 1rem;
}

/* Left side */
.article-hero-meta .tag {
  justify-self: start;
  margin: 0;
}

/* Right side */
.article-hero-meta .article-author {
  justify-self: end;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: right;
}

/* No spacer needed anymore */
.article-hero-meta .meta-spacer {
  display: none;
}

@media (max-width: 640px) {
  .article-hero-meta {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    justify-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }

  .article-hero-meta .tag,
  .article-hero-meta .article-author {
    justify-self: center;
    text-align: center;
  }
}


.blog-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background: #e9e6df;
}

.blog-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-media {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.article-feature-image {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(34, 38, 41, 0.08);
  background: #e9e6df;
}

.article-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

@media (max-width: 768px) {
  .article-feature-image img {
    aspect-ratio: 16 / 9;
  }
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding-top: 72px;
  padding-bottom: 56px;
}

.thank-you-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.thank-you-card {
  text-align: center;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.thank-you-card h1 {
  margin: 0;
}

.thank-you-card p {
  margin: 0;
  max-width: 620px;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.thank-you-next {
  padding-top: 72px;
  padding-bottom: 72px;
}

.thank-you-next .section-head {
  margin-bottom: 40px;
}

.thank-you-next-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 320px));
  justify-content: center;
  gap: 24px;
}

.thank-you-next-grid .card {
  text-align: center;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thank-you-next-grid .card-icon {
  margin-bottom: 18px;
}

.thank-you-next-grid h3 {
  margin-bottom: 12px;
}

.thank-you-next-grid p {
  max-width: 240px;
  margin: 0 auto 22px;
}

.thank-you-next-grid .btn {
  margin-top: auto;
}

@media (max-width: 768px) {
  .thank-you-card {
    padding: 40px 24px;
  }

  .thank-you-next-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}


.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* THIS centers rows evenly */
  gap: 24px;

  max-width: 1100px;
  margin: 0 auto;
}

.card-grid .card {
  flex: 1 1 260px;
  max-width: 320px; /* keeps cards consistent */
}

.hero-location {
  margin: 10px 0 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.seo-links {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seo-links p {
  margin: 0;
}

.article-content p {
  margin: 0 0 18px;
  line-height: 1.75;
}

.article-content .indent-1 {
  padding-left: 48px;
}

.article-content .indent-2 {
  padding-left: 88px;
}




.site-topbar {
  background: #4a5f73;
  color: #ffffff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 0;
  position: relative;
  z-index: 1001;
}

.site-topbar p {
  margin: 0;
}

.site-header {
  top: 0;
}

@media (max-width: 640px) {
  .site-topbar {
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 10px 14px;
  }
}


.site-topbar {
  background: #4a5f73;
  color: #fff;
  padding: 10px 0;
  font-size: 0.95rem;
  position: relative;
  z-index: 1000;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.site-topbar p {
  margin: 0;
  font-weight: 500;
}

.topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f7f876;
  color: #222629;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.topbar-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    gap: 10px;
  }

  .topbar-btn {
    width: 100%;
    max-width: 260px;
  }
}
