:root {
  --font-family: "Libre Baskerville", sans-serif;
  --font-size-base: 16.5px;
  --line-height-base: 1.78;

  --max-w: 1000px;
  --space-x: 1.49rem;
  --space-y: 1.5rem;
  --gap: 0.76rem;
  --space-section-y: calc(var(--space-y) * 2.4);
  --space-section-x: var(--space-x);
  --space-block: calc(var(--gap) * 1.5);
  --space-card: calc(var(--space-y) * .75);
  --font-size-sm: calc(var(--font-size-base) * .875);
  --font-size-md: var(--font-size-base);
  --font-size-lg: calc(var(--font-size-base) * 1.125);
  --font-size-h3: calc(var(--font-size-base) * 1.35);
  --font-size-h2: calc(var(--font-size-base) * 2);
  --font-size-h1: calc(var(--font-size-base) * 2.65);
  --motion-distance: calc(var(--gap) * var(--random-number));

  --radius-xl: 0.81rem;
  --radius-lg: 0.58rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.19rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 26px rgba(0,0,0,0.06);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 520ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #2C5F4A;
  --brand-contrast: #FFFFFF;
  --accent: #D98E32;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F2EC;
  --neutral-300: #D6CFC4;
  --neutral-600: #7A6F63;
  --neutral-800: #3D362F;
  --neutral-900: #2A241F;

  --page-bg: #FDFBF7;
  --page-fg: #2A241F;
  --muted-bg: #F5F2EC;
  --muted-fg: #3D362F;
  --card-bg: #FFFFFF;
  --card-fg: #2A241F;
  --card-border: #E5DED4;
  --inverse-bg: #2C5F4A;
  --inverse-fg: #FFFFFF;
  --primary-bg: #2C5F4A;
  --primary-fg: #FFFFFF;
  --primary-hover: #234D3C;
  --accent-bg: #D98E32;
  --accent-fg: #FFFFFF;
  --accent-hover: #C07A24;
  --gradient-hero-bg: linear-gradient(135deg, #2C5F4A 0%, #1E4033 100%);
  --gradient-hero-fg: #FFFFFF;
  --gradient-accent-bg: linear-gradient(135deg, #D98E32 0%, #C07A24 100%);
  --gradient-accent-fg: #FFFFFF;

  --ring: #D98E32;

  --link: #2C5F4A;
  --link-hover: #D98E32;

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: color-mix(in srgb, currentColor 10%, transparent);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}
a{color:inherit;}
.btn-primary,.btn.btn-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;border-color:var(--primary-bg)!important;}
.btn-primary:hover,.btn.btn-primary:hover{background:var(--primary-hover)!important;color:var(--primary-fg)!important;border-color:var(--primary-hover)!important;}
.btn-outline-primary{color:var(--primary-bg)!important;border-color:var(--primary-bg)!important;}
.btn-outline-primary:hover{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.bg-primary{background:var(--primary-bg)!important;color:var(--primary-fg)!important;}
.text-primary{color:var(--primary-bg)!important;}
.border-primary{border-color:var(--primary-bg)!important;}
.bg-light{background:var(--page-bg)!important;color:var(--page-fg)!important;}
.bg-dark{background:var(--inverse-bg)!important;color:var(--inverse-fg)!important;}

.site-header {
    width: 100%;
    background: var(--page-bg);
    border-bottom: 1px solid var(--card-border);
  }

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }

  .logo {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--page-fg);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .nav-left,
  .nav-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .nav-link {
    font-size: var(--font-size-md);
    color: var(--page-fg);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    background: var(--muted-bg);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--muted-bg);
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--page-fg);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    padding: var(--space-y) var(--space-x);
    background: var(--page-bg);
    border-top: 1px solid var(--card-border);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-link {
    font-size: var(--font-size-lg);
    color: var(--page-fg);
    text-decoration: none;
    padding: var(--space-y) 0;
    border-bottom: 1px solid var(--card-border);
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .mobile-link:last-child {
    border-bottom: none;
  }

  .mobile-link:hover {
    color: var(--link-hover);
  }

  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-inner {
      justify-content: space-between;
    }

    .logo {
      font-size: var(--font-size-h3);
    }
  }

  @media (min-width: 768px) {
    .mobile-menu {
      display: none !important;
    }
  }

.site-footer{font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);padding:var(--space-section-y) var(--space-section-x);width:100%;background:var(--inverse-bg);color:var(--inverse-fg);}.footer-container{max-width:var(--max-w);margin:0 auto}.footer-newsletter{text-align:center;padding-bottom:var(--space-block);border-bottom:1px solid rgba(255, 255, 255, 0.15);margin-bottom:var(--space-block)}.footer-newsletter-title{font-size:var(--font-size-h3);margin:0 0 var(--space-y);font-weight:600}.footer-newsletter-text{margin:0 0 var(--space-y);opacity:0.85;max-width:480px;margin-left:auto;margin-right:auto}.footer-newsletter-form{display:flex;flex-wrap:wrap;gap:var(--gap);justify-content:center;max-width:480px;margin:0 auto}.footer-newsletter-form input[type="email"]{flex:1 1 240px;padding:0.75rem 1rem;border:1px solid rgba(255, 255, 255, 0.3);border-radius:var(--radius-md);background:transparent;color:var(--inverse-fg);font-family:inherit;font-size:var(--font-size-base)}.footer-newsletter-form input[type="email"]::placeholder{}.footer-newsletter-form input[type="email"]:focus{outline:none;border-color:var(--accent-bg);box-shadow:var(--ring)}.footer-newsletter-btn{padding:0.75rem 1.5rem;background:var(--accent-bg);color:var(--accent-fg);border:none;border-radius:var(--radius-md);font-family:inherit;font-size:var(--font-size-base);font-weight:500;cursor:pointer;transition:background var(--anim-duration) var(--anim-ease)}.footer-newsletter-btn:hover{background:var(--accent-hover)}.footer-main{display:grid;grid-template-columns:1fr 2fr 1fr;gap:var(--space-block);padding-bottom:var(--space-block);border-bottom:1px solid rgba(255, 255, 255, 0.15);margin-bottom:var(--space-block)}.footer-brand{display:flex;flex-direction:column;gap:var(--space-y)}.footer-logo{font-size:var(--font-size-h2);font-weight:700;color:inherit;text-decoration:none;letter-spacing:-0.02em}.footer-logo:hover{color:inherit;opacity:0.85}.footer-tagline{margin:0;opacity:0.8;font-size:var(--font-size-sm)}.footer-nav{display:grid;grid-template-columns:repeat(3, 1fr);gap:var(--gap)}.footer-nav-col{display:flex;flex-direction:column;gap:var(--space-y)}.footer-nav-title{font-size:var(--font-size-md);font-weight:600;margin:0;color:inherit}.footer-nav-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.5rem}.footer-nav-list a{color:inherit;text-decoration:none;opacity:0.85;font-size:var(--font-size-sm);transition:opacity var(--anim-duration) var(--anim-ease)}.footer-nav-list a:hover{opacity:1;text-decoration:underline;text-underline-offset:4px;color:inherit}.footer-contact{display:flex;flex-direction:column;gap:var(--space-y)}.footer-contact-title{font-size:var(--font-size-md);font-weight:600;margin:0;color:inherit}

.cookies {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    max-width: 22rem;
    width: calc(100% - 3rem);
    z-index: 1000;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-base);
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-card);
    box-sizing: border-box;
  }

  .cookies .notice {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .cookies .copy {
    margin: 0;
    color: inherit;
  }

  .cookies .title {
    display: block;
    font-size: var(--font-size-md);
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: inherit;
  }

  .cookies .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
  }

  .cookies .actions button {
    font-family: inherit;
    font-size: var(--font-size-sm);
    line-height: 1.2;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    background: var(--primary-bg);
    color: var(--primary-fg);
    border-color: var(--primary-bg);
  }

  .cookies .actions button:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
  }

  .cookies .actions button.cookie-reject {
    background: transparent;
    color: var(--card-fg);
    border-color: var(--card-border);
  }

  .cookies .actions button.cookie-reject:hover {
    background: var(--muted-bg);
    border-color: var(--muted-fg);
    color: var(--muted-fg);
  }

  .cookies .actions button.cookie-manage {
    background: transparent;
    color: var(--link);
    border-color: transparent;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .cookies .actions button.cookie-manage:hover {
    background: transparent;
    color: var(--link-hover);
    border-color: transparent;
    text-decoration: underline;
  }

  @media (max-width: 480px) {
    .cookies {
      top: 1rem;
      right: 1rem;
      width: calc(100% - 2rem);
      max-width: none;
    }
  }

.language-switcher{position:fixed;left:clamp(12px,2vw,22px);top:clamp(12px,2vw,22px);z-index:99999;font-family:var(--font-family,system-ui,sans-serif)}
.language-switcher .switch{position:relative;display:inline-flex;align-items:center;justify-content:start}
.language-switcher .trigger{min-width:3.5rem;height:2.25rem;padding:0 .85rem;border:1px solid var(--card-border);border-radius:999px;background:var(--card-bg);color:var(--card-fg);box-shadow:var(--shadow-md);font:700 .78rem/1 var(--font-family,system-ui,sans-serif);letter-spacing:0;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;white-space:nowrap}
.language-switcher .options{--ls-shift:-.25rem;position:absolute;top:calc(100% + 6px);left:0;display:flex;flex-direction:column;gap:2px;min-width:100%;width:max-content;max-width:min(12rem,calc(100vw - 24px));max-height:0;overflow:hidden;opacity:0;pointer-events:none;padding:0;border:1px solid transparent;border-radius:10px;background:var(--card-bg);color:var(--card-fg);box-shadow:var(--shadow-md);transition:max-height var(--anim-duration,.22s) var(--anim-ease,ease),opacity var(--anim-duration,.22s) var(--anim-ease,ease),padding var(--anim-duration,.22s) var(--anim-ease,ease),border-color var(--anim-duration,.22s) var(--anim-ease,ease),transform var(--anim-duration,.22s) var(--anim-ease,ease);transform:translateY(var(--ls-shift))}
.language-switcher .options.open{max-height:min(15rem,70vh);overflow:auto;opacity:1;pointer-events:auto;padding:4px;border-color:var(--card-border);transform:translateY(0)}
.language-switcher .options a,.language-switcher .options button{display:flex;align-items:center;justify-content:center;min-height:2rem;padding:.45rem .75rem;border:0;border-radius:6px;background:transparent;color:inherit;text-decoration:none;font:700 .78rem/1 var(--font-family,system-ui,sans-serif);white-space:nowrap;cursor:pointer;text-align:center}
.language-switcher .options a:hover,.language-switcher .options button:hover{background:var(--muted-bg)}
@media(max-width:480px){.language-switcher{right:12px;left:auto;top:auto;bottom:12px;transform:none}.language-switcher .options{right:0;left:auto;bottom:calc(100% + 6px);top:auto;transform:translateY(.25rem)}.language-switcher .options.open{transform:translateY(0)}}

.intro-focus {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 72px 24px 64px;
  }

  .intro-focus .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .intro-focus h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .intro-focus .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 60ch;
  }

  .intro-focus .note {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 32px;
    max-width: 56ch;
    opacity: 0.92;
  }

  .intro-focus .route {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
  }

  .intro-focus .route a {
    color: var(--gradient-hero-fg);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    font-size: 0.95rem;
    padding: 6px 0;
  }

  .intro-focus .route a:first-child {
    background: var(--accent-bg);
    color: var(--accent-fg);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 500;
  }

  .intro-focus .route a:first-child:hover {
    background: var(--accent-hover);
  }

  @media (max-width: 480px) {
    .intro-focus {
      padding: 48px 18px 44px;
    }

    .intro-focus h1 {
      font-size: 1.8rem;
    }

    .intro-focus .route {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

.intro-focus {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.faq {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3.5rem 1.25rem 4rem;
    }

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

    .faq h2 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 0.75rem;
      font-weight: 600;
    }

    .faq .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.25rem; 
    }

    .faq .entry {
      border-bottom: 1px solid var(--card-border);
      padding: 1.25rem 0;
    }

    .faq .entry:first-of-type {
      border-top: 1px solid var(--card-border);
    }

    .faq .entry h3 {
      font-size: 1.15rem;
      line-height: 1.35;
      margin: 0 0 0.5rem;
      font-weight: 600;
    }

    .faq .entry p {
      font-size: 0.98rem;
      line-height: 1.6;
      margin: 0; 
    }

    .faq .more {
      margin: 2rem 0 0;
      font-size: 0.98rem;
      line-height: 1.6;
      color: var(--muted-fg);
    }

    .faq .more a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .faq .more a:hover {
      color: var(--primary-hover);
    }

.faq {
  background: var(--page-bg);
  color: var(--page-fg);
}

.support {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }

    .support .inner {
      max-width: 1080px;
      margin: 0 auto;
    }

    .support .intro {
      max-width: 640px;
      margin-bottom: 3rem;
    }

    .support .intro h2 {
      font-size: 1.9rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      font-weight: 600;
    }

    .support .intro p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0;
    }

    .support .route {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem 2.5rem;
      margin-bottom: 2.5rem;
    }

    .support .entry {
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.25rem;
    }

    .support .entry h3 {
      font-size: 1.1rem;
      margin: 0 0 0.5rem;
      font-weight: 600;
    }

    .support .entry p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0 0 0.5rem;
      color: var(--muted-fg);
    }

    .support .entry a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
      font-size: 0.95rem;
    }

    .support .entry a:hover {
      color: var(--primary-hover);
    }

    .support .note {
      max-width: 640px;
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg);
    }

    .support .note a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .support .note a:hover {
      color: var(--primary-hover);
    }

    @media (max-width: 640px) {
      .support .route {
        grid-template-columns: 1fr;
      }
    }

.support {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.next-step {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .next-step .inner {
    max-width: 42rem;
    margin: 0 auto;
  }

  .next-step h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
  }

  .next-step p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.75rem; 
  }

  .next-step .action {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

  .next-step .action:hover {
    background: var(--accent-hover);
  }

  .next-step .route {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .next-step .route a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.9rem;
  }

  .next-step .route a:hover {
    color: var(--primary-hover);
  }

.next-step {
  background: var(--page-bg);
  color: var(--page-fg);
}

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 4.5rem 1.25rem 4rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 400;
    }
    .second-hero-block p {
      font-size: 1.05rem;
      line-height: 1.65;
      margin: 0;
      max-width: 40rem;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 6rem 2rem 5rem;
      }
      .second-hero-block h1 {
        font-size: 2.5rem;
      }
      .second-hero-block p {
        font-size: 1.1rem;
      }
    }

.second-hero-block {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.post-list {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3rem 1.25rem;
  }

  .post-list .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .post-list__header {
    margin-bottom: 2.5rem;
  }

  .post-list__header h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    font-weight: 400;
  }

  .post-list__header p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--muted-fg);
  }

  .post-list__item {
    border-top: 1px solid var(--card-border);
    padding: 1.75rem 0;
  }

  .post-list__item:last-child {
    border-bottom: 1px solid var(--card-border);
  }

  .post-list__item-body h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 0.35rem;
    font-weight: 400;
  }

  .post-list__item-body h3 a {
    color: var(--page-fg);
    text-decoration: none;
  }

  .post-list__item-body h3 a:hover {
    color: var(--primary-bg);
  }

  .post-list__meta {
    font-size: 0.85rem;
    margin: 0 0 0.9rem;
    color: var(--muted-fg);
  }

  .post-list__item-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.9rem;
  }

  .post-list__link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--primary-bg);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-bg);
    padding-bottom: 2px;
  }

  .post-list__link:hover {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
  }

.post-list {
  background: var(--page-bg);
  color: var(--page-fg);
}

.stay-in-touch {
        background: var(--inverse-bg);
        color: var(--inverse-fg);
        padding: 4rem 1.5rem;
    }

    .stay-in-touch .inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .stay-in-touch h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin: 0 0 1rem;
        font-weight: 400;
    }

    .stay-in-touch p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 2rem;
        opacity: 0.9;
    }

    .stay-in-touch .contact-line {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stay-in-touch .contact-line a {
        color: var(--inverse-fg);
        text-decoration: none;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        padding-bottom: 0.15rem;
    }

    .stay-in-touch .contact-line a:hover {
        border-bottom-color: var(--accent-bg);
        color: var(--accent-bg);
    }

.stay-in-touch {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.second-hero-block {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4.5rem 1.5rem 4rem;
  }

  .second-hero-block .inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 1.2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

  .second-hero-block .lead {
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 720px;
  }

  .second-hero-block .note {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 640px;
    opacity: 0.9;
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding: 5.5rem 2rem 5rem;
    }

    .second-hero-block h1 {
      font-size: 2.6rem;
    }

    .second-hero-block .lead {
      font-size: 1.15rem;
    }
  }

.our-story {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }
  .our-story .inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .our-story h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    font-weight: 400;
  }
  .our-story h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 2.5rem 0 0.75rem;
    font-weight: 400;
  }
  .our-story p {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1.25rem;
  }
  .our-story p:last-child {
    margin-bottom: 0;
  }

.our-story {
  background: var(--page-bg);
  color: var(--page-fg);
}

.partners {
            background: var(--inverse-bg);
            color: var(--inverse-fg);
            padding: 3.5rem 1.25rem;
        }
        .partners .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .partners h2 {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 0 0 1rem;
            line-height: 1.3;
        }
        .partners p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 1rem;
            color: rgba(255, 255, 255, 0.88);
        }
        .partners p:last-child {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

.partners {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.timeline {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .timeline .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .timeline h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 0 0 1rem;
  }

  .timeline > .inner > p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 2.5rem;
  }

  .timeline .line {
    border-left: 2px solid var(--muted-bg);
    padding-left: 1.5rem;
    margin-left: 0.5rem;
  }

  .timeline .entry {
    margin-bottom: 2.2rem;
  }

  .timeline .entry:last-child {
    margin-bottom: 0;
  }

  .timeline .date {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-primary-bg);
    margin: 0 0 0.35rem;
  }

  .timeline .entry h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
  }

  .timeline .entry p:last-child {
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
  }

  .timeline .note {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--muted-bg);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-fg);
  }

  @media (max-width: 480px) {
    .timeline {
      padding: 3rem 1.25rem;
    }

    .timeline h2 {
      font-size: 1.6rem;
    }

    .timeline .line {
      padding-left: 1rem;
      margin-left: 0.25rem;
    }
  }

.timeline {
  background: var(--page-bg);
  color: var(--page-fg);
}

.second-hero-block {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 72px 24px 56px;
  }

  .second-hero-block .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 620px;
  }

  @media (max-width: 640px) {
    .second-hero-block {
      padding: 48px 20px 40px;
    }

    .second-hero-block h1 {
      font-size: 1.9rem;
    }

    .second-hero-block p {
      font-size: 1rem;
    }
  }

.second-hero-block {
  background: var(--page-bg);
  color: var(--page-fg);
}

.capabilities {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3.5rem 1.25rem;
  }

  .capabilities .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .capabilities h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    font-weight: 600;
  }

  .capabilities p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.1rem;
  }

  .capabilities .route {
    margin-top: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid var(--muted-bg);
    padding-top: 1.25rem;
  }

  .capabilities .route a {
    color: var(--brand-primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .capabilities .route a:hover {
    color: var(--brand-primary-hover);
  }

.capabilities {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.plans-overview {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3.5rem 1.25rem;
    }

    .plans-overview .inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .plans-overview h2 {
      font-size: 1.9rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .plans-overview .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      max-width: 58ch;
    }

    .plans-overview .options {
      display: block;
    }

    .plans-overview .option {
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--muted-bg);
    }

    .plans-overview .option:first-child {
      padding-top: 0;
    }

    .plans-overview .option:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .plans-overview .option h3 {
      font-size: 1.35rem;
      font-weight: 600;
      margin: 0 0 0.6rem;
      line-height: 1.3;
    }

    .plans-overview .option p {
      margin: 0 0 0.8rem;
      line-height: 1.6;
      max-width: 60ch;
    }

    .plans-overview .option .note {
      font-size: 0.95rem;
      color: var(--muted-fg);
      margin-bottom: 0.9rem;
      line-height: 1.5;
    }

    .plans-overview .route {
      display: inline-block;
      font-size: 0.95rem;
      color: var(--primary-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s ease;
    }

    .plans-overview .route:hover {
      border-bottom-color: var(--primary-bg);
    }

.plans-overview {
  background: var(--page-bg);
  color: var(--page-fg);
}

.second-hero-block {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4.5rem 1.25rem;
  }

  .second-hero-block .inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: left;
  }

  .second-hero-block h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: normal;
  }

  .second-hero-block p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    max-width: 42rem;
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding: 5.5rem 2rem;
    }

    .second-hero-block h1 {
      font-size: 2.6rem;
    }

    .second-hero-block p {
      font-size: 1.1rem;
    }
  }

.social-proof {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.25rem;
  }

  .social-proof .inner {
    max-width: 42rem;
    margin: 0 auto;
  }

  .social-proof h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 1rem;
  }

  .social-proof > .inner > p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    color: var(--muted-fg);
  }

  .social-proof .entries {
    display: block;
  }

  .social-proof .entry {
    padding: 1.25rem 0;
    border-top: 1px solid var(--card-border);
  }

  .social-proof .entry:last-of-type {
    border-bottom: 1px solid var(--card-border);
  }

  .social-proof .quote {
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0 0 0.5rem;
  }

  .social-proof .meta {
    font-size: 0.875rem;
    color: var(--muted-fg);
    margin: 0;
  }

  .social-proof .note {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--muted-fg);
    margin: 2rem 0 0;
  }

.social-proof {
  background: var(--page-bg);
  color: var(--page-fg);
}

.why-choose {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.25rem;
  }
  .why-choose .inner {
    max-width: 46rem;
    margin: 0 auto;
  }
  .why-choose h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
  }
  .why-choose .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.25rem;
    color: var(--muted-fg);
  }
  .why-choose .notes {
    border-top: 1px solid var(--card-border);
  }
  .why-choose .note {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--card-border);
  }
  .why-choose .note h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    font-weight: 600;
  }
  .why-choose .note p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--muted-fg);
  }
  .why-choose .closing {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 2rem 0 0;
    color: var(--muted-fg);
  }
  .why-choose .closing a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .why-choose .closing a:hover {
    color: var(--primary-hover);
  }

.why-choose {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.recommendations {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }

    .recommendations .inner {
      max-width: 42rem;
      margin: 0 auto;
    }

    .recommendations h2 {
      font-size: 1.6rem;
      line-height: 1.3;
      margin: 0 0 1.25rem;
      font-weight: normal;
    }

    .recommendations p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1rem;
    }

    .recommendations p:last-of-type {
      margin-bottom: 1.5rem;
    }

    .recommendations .route {
      border-top: 1px solid var(--card-border, #E5DED4);
      padding-top: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .recommendations .route a {
      color: var(--brand-primary-bg, #2C5F4A);
      text-decoration: none;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .recommendations .route a:hover {
      text-decoration: underline;
    }

.recommendations {
  background: var(--page-bg);
  color: var(--page-fg);
}

.second-hero-block {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4.5rem 1.5rem;
  }

  .second-hero-block .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    font-weight: 400;
  }

  .second-hero-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.92;
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding: 5.5rem 2rem;
    }

    .second-hero-block h1 {
      font-size: 2.6rem;
    }
  }

.value-points {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 3.5rem 1.5rem;
    }

    .value-points .inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .value-points h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin: 0 0 1.25rem;
        font-weight: 600;
    }

    .value-points p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 1rem;
    }

    .value-points .route {
        display: inline-block;
        margin-top: 0.75rem;
        color: var(--brand-primary-bg, #2C5F4A);
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-color: var(--brand-accent-bg, #D98E32);
        text-decoration-thickness: 2px;
    }

    .value-points .route:hover {
        color: var(--brand-primary-hover, #234D3C);
    }

.value-points {
  background: var(--page-bg);
  color: var(--page-fg);
}

.how-it-works {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4.5rem 1.25rem;
        }

        .how-it-works .inner {
            max-width: 720px;
            margin: 0 auto;
        }

        .how-it-works h2 {
            font-size: 1.9rem;
            line-height: 1.25;
            margin: 0 0 1.25rem;
            font-weight: 600;
        }

        .how-it-works p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 1.1rem;
        }

        .how-it-works .route {
            list-style: none;
            margin: 2.5rem 0 0;
            padding: 0;
        }

        .how-it-works .step {
            padding: 0 0 1.75rem 1.5rem;
            border-left: 2px solid var(--muted-bg);
            margin-left: 0.25rem;
        }

        .how-it-works .step:last-child {
            padding-bottom: 0.5rem;
        }

        .how-it-works .step h3 {
            font-size: 1.15rem;
            margin: 0 0 0.4rem;
            font-weight: 600;
        }

        .how-it-works .step p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
            color: var(--muted-fg);
        }

        .how-it-works .note {
            margin-top: 2.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--muted-fg);
            padding-top: 1.25rem;
            border-top: 1px solid var(--muted-bg);
        }

        .how-it-works .note a {
            color: var(--primary-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .how-it-works .note a:hover {
            color: var(--primary-hover);
        }

.how-it-works {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.timeline {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3.5rem 1.25rem;
    }

    .timeline .inner {
      max-width: 680px;
      margin: 0 auto;
    }

    .timeline h2 {
      font-size: 1.8rem;
      line-height: 1.25;
      margin: 0 0 0.75rem;
    }

    .timeline .intro {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      color: var(--muted-fg);
    }

    .timeline .entry {
      border-left: 2px solid var(--brand-primary-bg);
      padding: 0 0 2rem 1.5rem;
      margin-left: 0.5rem;
    }

    .timeline .entry:last-child {
      padding-bottom: 0;
    }

    .timeline .date {
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--accent-bg);
      margin: 0 0 0.35rem;
    }

    .timeline h3 {
      font-size: 1.15rem;
      line-height: 1.3;
      margin: 0 0 0.5rem;
    }

    .timeline .entry p:last-child {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
      color: var(--muted-fg);
    }

.second-hero-block {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4.5rem 1.5rem 5rem;
  }

  .second-hero-block .inner {
    max-width: 46rem;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    opacity: 0.92;
  }

  .second-hero-block .note {
    font-size: 0.9375rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0.8;
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding: 6rem 2rem 6.5rem;
    }

    .second-hero-block h1 {
      font-size: 2.75rem;
    }

    .second-hero-block p {
      font-size: 1.125rem;
    }
  }

.faq {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 64px 24px;
    }

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

    .faq h2 {
      font-size: 32px;
      line-height: 1.2;
      margin: 0 0 16px;
      font-weight: 600;
    }

    .faq .intro {
      font-size: 17px;
      line-height: 1.6;
      margin: 0 0 40px;
      color: var(--muted-fg);
    }

    .faq .item {
      border-bottom: 1px solid var(--card-border);
      padding: 24px 0;
    }

    .faq .item:first-of-type {
      border-top: 1px solid var(--card-border);
    }

    .faq .item h3 {
      font-size: 19px;
      line-height: 1.3;
      margin: 0 0 10px;
      font-weight: 600;
    }

    .faq .item p {
      font-size: 16px;
      line-height: 1.65;
      margin: 0;
      color: var(--muted-fg);
    }

    .faq .note {
      font-size: 15px;
      line-height: 1.6;
      margin: 32px 0 0;
      color: var(--muted-fg);
    }

    .faq .note a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .faq .note a:hover {
      color: var(--primary-hover);
    }

.contacts {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 3.5rem 1.25rem;
    }

    .contacts .inner {
        max-width: 46rem;
        margin: 0 auto;
    }

    .contacts h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin: 0 0 1rem;
        font-weight: 400;
    }

    .contacts p {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 1.5rem;
    }

    .contact-line {
        display: flex;
        flex-direction: column;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--card-border);
    }

    .contact-label {
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted-fg);
        margin-bottom: 0.25rem;
    }

    .contact-value {
        font-size: 1.05rem;
        color: var(--page-fg);
        text-decoration: none;
    }

    a.contact-value {
        color: var(--brand-primary-bg);
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s ease;
    }

    .contacts .schedule {
        margin-top: 1.75rem;
        font-size: 0.95rem;
        color: var(--muted-fg);
    }

    .contacts .channels {
        font-size: 0.95rem;
        color: var(--muted-fg);
        margin-bottom: 0;
    }

.contacts {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.clarifications {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }
        .clarifications .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .clarifications h2 {
            font-size: 1.75rem;
            line-height: 1.3;
            margin: 0 0 1.25rem;
            font-weight: 400;
            letter-spacing: -0.01em;
        }
        .clarifications p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 1.25rem;
        }
        .clarifications p:last-child {
            margin-bottom: 0;
        }
        .clarifications p + p {
            border-top: 1px solid var(--muted-bg);
            padding-top: 1.25rem;
        }

.clarifications {
  background: var(--page-bg);
  color: var(--page-fg);
}

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 4.5rem 1.25rem 4rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.1rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      font-weight: 400;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.05rem;
      line-height: 1.65;
      margin: 0;
      max-width: 38rem;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 5.5rem 2rem 5rem;
      }
      .second-hero-block h1 {
        font-size: 2.6rem;
      }
      .second-hero-block p {
        font-size: 1.15rem;
      }
    }

.social-proof {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3rem 1.25rem;
  }

  .social-proof .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .social-proof h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    font-weight: 700;
  }

  .social-proof p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
  }

  .social-proof .testimonios {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: block;
  }

  .social-proof .testimonio {
    padding: 1.25rem 0;
    border-top: 1px solid var(--card-border, #E5DED4);
  }

  .social-proof .testimonio:first-child {
    border-top: none;
  }

  .social-proof .cita {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 0.5rem;
    font-style: italic;
  }

  .social-proof .autor {
    font-size: 0.9rem;
    margin: 0;
    color: var(--muted-fg, #3D362F);
  }

  .social-proof .cierre {
    font-size: 0.95rem;
    margin: 0;
    color: var(--muted-fg, #3D362F);
  }

.next-step {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 3.5rem 1.5rem;
  }

  .next-step .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .next-step h2 {
    font-size: 1.8rem;
    line-height: 1.25;
    margin: 0 0 1rem;
    font-weight: 600;
  }

  .next-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
  }

  .next-step .route {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

  .next-step .route:hover {
    background: var(--accent-hover);
  }

  .next-step .more {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    opacity: 0.9;
  }

  .next-step .more a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .next-step .more a:hover {
    text-decoration-thickness: 2px;
  }

.next-step {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.25rem 3.5rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2.1rem;
      line-height: 1.2;
      font-weight: 600;
      margin: 0 0 1rem;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.05rem;
      line-height: 1.65;
      margin: 0;
      max-width: 40rem;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding-top: 5.5rem;
        padding-bottom: 4rem;
      }
      .second-hero-block h1 {
        font-size: 2.5rem;
      }
      .second-hero-block p {
        font-size: 1.1rem;
      }
    }

.clarifications {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.25rem;
    }

    .clarifications .inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .clarifications h2 {
      font-size: 1.75rem;
      line-height: 1.2;
      margin: 0 0 0.75rem;
      max-width: 620px;
    }

    .clarifications > .inner > p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      max-width: 580px;
    }

    .clarifications .notes {
      display: block;
    }

    .clarifications .note {
      border-left: 3px solid var(--accent-bg, #D98E32);
      padding: 0.25rem 0 1.5rem 1.25rem;
      margin-bottom: 1.5rem;
    }

    .clarifications .note:last-child {
      margin-bottom: 0;
      padding-bottom: 0.25rem;
    }

    .clarifications .note h3 {
      font-size: 1.05rem;
      line-height: 1.3;
      margin: 0 0 0.5rem;
    }

    .clarifications .note p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      max-width: 620px;
    }

.clarifications {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.feedback {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.5rem;
  }

  .feedback .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .feedback h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 1rem;
    font-weight: normal;
  }

  .feedback .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
  }

  .feedback .entry {
    margin-bottom: 2.5rem;
  }

  .feedback .entry h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0 0 0.6rem;
    font-weight: normal;
  }

  .feedback .entry p {
    line-height: 1.65;
    margin: 0;
  }

  .feedback .note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted-fg);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
  }

.feedback {
  background: var(--page-bg);
  color: var(--page-fg);
}

.second-hero-block {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.25rem 3rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
    }
    .second-hero-block h1 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    .second-hero-block p {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0;
      max-width: 40rem;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding-top: 5rem;
        padding-bottom: 3.5rem;
      }
      .second-hero-block h1 {
        font-size: 2.4rem;
      }
    }

.faq {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.25rem;
        }

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

        .faq h2 {
            font-size: 1.9rem;
            line-height: 1.2;
            margin: 0 0 1rem;
        }

        .faq .lead {
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 0 0 2.5rem; 
        }

        .faq .entry {
            margin-bottom: 2rem;
        }

        .faq .entry h3 {
            font-size: 1.15rem;
            line-height: 1.3;
            margin: 0 0 0.5rem;
        }

        .faq .entry p {
            line-height: 1.6;
            margin: 0; 
        }

        .faq .note {
            margin-top: 2.5rem;
            line-height: 1.6;
            color: var(--muted-fg);
        }

        .faq .note a {
            color: var(--brand-primary-bg);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .faq .note a:hover {
            color: var(--brand-primary-hover);
        }

.faq {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.capabilities {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 3.5rem 1.25rem;
    }

    .capabilities .inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .capabilities h2 {
      font-size: 1.7rem;
      line-height: 1.25;
      margin: 0 0 1rem;
      font-weight: 600;
    }

    .capabilities .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2rem;
      color: var(--muted-fg);
    }

    .capabilities .list {
      border-top: 1px solid var(--card-border);
    }

    .capabilities .item {
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--card-border);
    }

    .capabilities .item h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
    }

    .capabilities .item p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
      color: var(--muted-fg);
    }

    .capabilities .closing {
      margin: 1.5rem 0 0;
      font-size: 0.95rem;
      line-height: 1.55;
      color: var(--muted-fg);
    }

    .capabilities .closing a {
      color: var(--primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .capabilities .closing a:hover {
      color: var(--primary-hover);
    }

.capabilities {
  background: var(--page-bg);
  color: var(--page-fg);
}

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 72px 24px;
    }
    .second-hero-block .inner {
      max-width: 720px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.35);
      padding-top: 32px;
    }
    .second-hero-block h1 {
      font-size: 2.4rem;
      line-height: 1.2;
      margin: 0 0 16px 0;
      font-weight: 400;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0;
      max-width: 560px;
    }
    @media (max-width: 640px) {
      .second-hero-block {
        padding: 48px 20px;
      }
      .second-hero-block h1 {
        font-size: 1.9rem;
      }
    }

.capabilities {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 4rem 1.25rem;
  }

  .capabilities .inner {
    max-width: 42rem;
    margin: 0 auto;
  }

  .capabilities h2 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
  }

  .capabilities p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem;
  }

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

.value-points {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }

        .value-points .inner {
            max-width: 780px;
            margin: 0 auto;
        }

        .value-points h2 {
            font-size: 1.9rem;
            line-height: 1.25;
            margin: 0 0 1rem;
            font-weight: 600;
        }

        .value-points .lead {
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 0 0 2.5rem;
            color: var(--muted-fg);
        }

        .value-points .benefit {
            margin: 0 0 1.8rem;
            padding-left: 1.5rem;
            border-left: 3px solid var(--accent-bg);
        }

        .value-points .benefit h3 {
            font-size: 1.15rem;
            line-height: 1.4;
            margin: 0 0 0.4rem;
            font-weight: 600;
        }

        .value-points .benefit p {
            font-size: 0.98rem;
            line-height: 1.6;
            margin: 0;
            color: var(--muted-fg);
        }

        .value-points .note {
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 2.5rem 0 0;
            color: var(--muted-fg);
        }

        .value-points .note a {
            color: var(--brand-primary-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .value-points .note a:hover {
            color: var(--brand-primary-hover);
        }

.value-points {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.second-hero-block {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 72px 24px 80px;
  }

  .second-hero-block .inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
  }

  .second-hero-block p {
    font-size: 1.125rem;
    line-height: 1.65;
    margin: 0;
    max-width: 640px;
  }

.support {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3.5rem 1.25rem;
  }

  .support .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .support h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    font-weight: normal;
  }

  .support p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem 0;
  }

  .support .route {
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }

  .support .route a {
    color: var(--brand-primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .support .route a:hover {
    color: var(--brand-primary-hover);
  }

.support {
  background: var(--page-bg);
  color: var(--page-fg);
}

.how-it-works {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.25rem;
    }

    .how-it-works .inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .how-it-works h2 {
      font-size: 1.8rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 600;
    }

    .how-it-works .lead {
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
    }

    .how-it-works .step {
      display: flex;
      gap: 1.25rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--muted-bg);
    }

    .how-it-works .step:first-of-type {
      border-top: 1px solid var(--muted-bg);
    }

    .how-it-works .step-number {
      flex-shrink: 0;
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: var(--brand-primary-bg);
      color: var(--brand-primary-fg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 0.25rem;
    }

    .how-it-works .step-body h3 {
      font-size: 1.15rem;
      margin: 0 0 0.4rem;
      font-weight: 600;
    }

    .how-it-works .step-body p {
      font-size: 0.95rem;
      line-height: 1.55;
      margin: 0;
    }

    .how-it-works .note {
      font-size: 0.9rem;
      line-height: 1.5;
      margin: 2rem 0 0;
      padding: 1rem 1.25rem;
      background: var(--muted-bg);
      color: var(--muted-fg);
      border-radius: 6px;
    }

    .how-it-works .route {
      font-size: 0.9rem;
      margin: 1.5rem 0 0;
    }

    .how-it-works .route a {
      color: var(--brand-primary-bg);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .how-it-works .route a:hover {
      color: var(--brand-primary-hover);
    }

    @media (max-width: 480px) {
      .how-it-works .step {
        flex-direction: column;
        gap: 0.6rem;
      }

      .how-it-works .step-number {
        margin-top: 0;
      }
    }

.post-item {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3rem 1.25rem 4rem;
  }

  .post-item .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .post-item .date {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted-fg);
    margin: 0 0 1.25rem;
  }

  .post-item h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin: 0 0 1.5rem;
    font-weight: 400;
  }

  .post-item .lead {
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0 0 1.5rem;
  }

  .post-item p {
    line-height: 1.7;
    margin: 0 0 1.25rem;
  }

  .post-item .aside {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
  }

  .post-item .aside p {
    font-size: 0.95rem;
    margin: 0 0 0.75rem;
  }

  .post-item .aside a {
    color: var(--primary-bg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .post-item .aside a:hover {
    color: var(--primary-hover);
  }

.post-item {
  background: var(--page-bg);
  color: var(--page-fg);
}

.post-item {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 3rem 1.25rem;
    }

    .post-item .inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .post-item .entry-head {
        margin-bottom: 2rem;
    }

    .post-item .entry-date {
        font-size: 0.85rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--muted-fg);
        margin: 0 0 0.75rem;
    }

    .post-item h1 {
        font-size: 2rem;
        line-height: 1.25;
        margin: 0;
        font-weight: 600;
    }

    .post-item .entry-body p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin: 0 0 1.5rem;
    }

    .post-item .entry-foot {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--card-border);
    }

    .post-item .entry-note {
        font-size: 0.95rem;
        color: var(--muted-fg);
        margin: 0 0 1.25rem;
    }

    .post-item .entry-route {
        margin: 0;
        display: flex;
        gap: 1.5rem;
    }

    .post-item .entry-route a {
        color: var(--primary-bg);
        text-decoration: none;
        font-size: 0.95rem;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s ease;
    }

    .post-item .entry-route a:hover {
        border-color: var(--primary-bg);
    }

.post-item {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 3rem 1.25rem;
        }
        .post-item .inner {
            max-width: 42rem;
            margin: 0 auto;
        }
        .post-item .meta {
            font-size: 0.85rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--muted-fg);
            margin: 0 0 1.25rem;
        }
        .post-item h1 {
            font-size: 2rem;
            line-height: 1.2;
            margin: 0 0 1.5rem;
            font-weight: normal;
        }
        .post-item h2 {
            font-size: 1.25rem;
            line-height: 1.3;
            margin: 2.5rem 0 0.75rem;
            font-weight: normal;
        }
        .post-item p {
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 1.25rem;
        }
        .post-item .intro {
            font-size: 1.1rem;
            line-height: 1.65;
            margin-bottom: 1.5rem;
        }
        .post-item .route {
            margin-top: 2.5rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--muted-bg);
            font-size: 0.95rem;
        }
        .post-item .route a {
            color: var(--primary-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .post-item .route a:hover {
            color: var(--primary-hover);
        }

.second-hero-block {
      background: var(--gradient-hero-bg);
      color: var(--gradient-hero-fg);
      padding: 5rem 1.5rem 4.5rem;
    }
    .second-hero-block .inner {
      max-width: 46rem;
      margin: 0 auto;
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
      padding-bottom: 2.5rem;
    }
    .second-hero-block h1 {
      font-size: 2.4rem;
      line-height: 1.2;
      margin: 0 0 1rem 0;
      font-weight: 700;
    }
    .second-hero-block p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0;
      max-width: 38rem;
    }
    @media (min-width: 640px) {
      .second-hero-block {
        padding: 6rem 2rem 5rem;
      }
      .second-hero-block h1 {
        font-size: 2.8rem;
      }
    }

.form {
    background: var(--page-bg);
    color: var(--page-fg);
    padding: 3rem 1.25rem;
  }

  .form .inner {
    max-width: 560px;
    margin: 0 auto;
  }

  .form h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 1rem;
  }

  .form p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.75rem;
  }

  .form form {
    display: block;
  }

  .form .field {
    margin-bottom: 1.25rem;
  }

  .form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
  }

  .form input,
  .form textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--card-border, #E5DED4);
    border-radius: 6px;
    background: var(--card-bg, #FFFFFF);
    color: var(--card-fg, #2A241F);
    font-size: 1rem;
    box-sizing: border-box;
  }

  .form input:focus,
  .form textarea:focus {
    outline: 2px solid var(--accent-bg, #D98E32);
    outline-offset: 1px;
    border-color: transparent;
  }

  .form textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form button {
    background: var(--primary-bg, #2C5F4A);
    color: var(--primary-fg, #FFFFFF);
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .form button:hover {
    background: var(--primary-hover, #234D3C);
  }

  .form .note {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1.5rem;
    color: var(--muted-fg, #3D362F);
  }

.form {
  background: var(--page-bg);
  color: var(--page-fg);
}

.contacts {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.25rem;
    }
    .contacts .inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .contacts h2 {
      font-size: 1.9rem;
      line-height: 1.2;
      margin: 0 0 1.25rem;
      font-weight: 600;
    }
    .contacts p {
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1.25rem;
    }
    .contacts .datos {
      margin: 2rem 0;
      padding: 0;
    }
    .contacts .linea {
      display: flex;
      flex-direction: column;
      padding: 1rem 0;
      border-top: 1px solid var(--muted-bg);
    }
    .contacts .linea:last-child {
      border-bottom: 1px solid var(--muted-bg);
    }
    .contacts dt {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--muted-fg);
      margin-bottom: 0.35rem;
    }
    .contacts dd {
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.5;
    }
    .contacts a {
      color: var(--primary-bg);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }
    .contacts a:hover {
      border-bottom-color: var(--primary-bg);
    }
    @media (min-width: 640px) {
      .contacts {
        padding: 5rem 2rem;
      }
      .contacts .linea {
        flex-direction: row;
        align-items: baseline;
        gap: 2rem;
      }
      .contacts dt {
        min-width: 140px;
        margin-bottom: 0;
      }
    }

.map {
        background: var(--page-bg);
        color: var(--page-fg);
        padding: 4rem 1.5rem;
    }
    .map .inner {
        max-width: 720px;
        margin: 0 auto;
    }
    .map h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin: 0 0 1.5rem;
        font-weight: 400;
    }
    .map p {
        line-height: 1.7;
        margin: 0 0 1.5rem;
    }
    .map .address,
    .map .contact {
        border-top: 1px solid var(--card-border, #E5DED4);
        padding: 1rem 0;
    }
    .map .label {
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin: 0 0 0.25rem;
        color: var(--muted-fg, #3D362F);
    }
    .map .address p:last-child,
    .map .contact p:last-child {
        margin: 0;
    }
    .map a {
        color: var(--brand-primary-bg, #2C5F4A);
        text-decoration: none;
        border-bottom: 1px solid var(--brand-primary-bg, #2C5F4A);
    }
    .map a:hover {
        color: var(--brand-primary-hover, #234D3C);
        border-color: var(--brand-primary-hover, #234D3C);
    }
    .map .note {
        font-size: 0.95rem;
        color: var(--muted-fg, #3D362F);
        margin-top: 2rem;
    }

.map {
  background: var(--page-bg);
  color: var(--page-fg);
}

.policy-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.25rem;
    }

    .policy-items .inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .policy-items h1 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 600;
    }

    .policy-items .lead {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0 0 2.5rem;
      color: var(--muted-fg);
    }

    .policy-items .entry {
      padding: 1.5rem 0;
      border-top: 1px solid var(--card-border);
    }

    .policy-items .entry:last-child {
      border-bottom: 1px solid var(--card-border);
    }

    .policy-items h2 {
      font-size: 1.2rem;
      line-height: 1.3;
      margin: 0 0 0.75rem;
      font-weight: 600;
    }

    .policy-items p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
    }

.policy-items {
  background: var(--page-bg);
  color: var(--page-fg);
}

.terms-items {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4rem 1.5rem;
    }

    .terms-items .inner {
      max-width: 720px;
      margin: 0 auto;
    }

    .terms-items h1 {
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      font-weight: 600;
    }

    .terms-items .lead {
      font-size: 1.05rem;
      line-height: 1.7;
      margin: 0 0 2.5rem;
    }

    .terms-items .terms-list {
      border-top: 1px solid var(--muted-bg);
    }

    .terms-items .term-item {
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--muted-bg);
    }

    .terms-items .term-item h2 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 0 0 0.6rem;
      color: var(--brand-primary-bg);
    }

    .terms-items .term-item p {
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
    }

.terms-items {
  background: var(--inverse-bg);
  color: var(--inverse-fg);
}

.second-hero-block {
    background: var(--gradient-hero-bg);
    color: var(--gradient-hero-fg);
    padding: 4.5rem 1.5rem;
  }

  .second-hero-block .inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .second-hero-block h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 400;
  }

  .second-hero-block p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    max-width: 60ch;
  }

  @media (min-width: 640px) {
    .second-hero-block {
      padding: 5.5rem 2rem;
    }

    .second-hero-block h1 {
      font-size: 2.75rem;
    }
  }

.thank {
            background: var(--page-bg);
            color: var(--page-fg);
            padding: 4rem 1.5rem;
        }
        .thank .inner {
            max-width: 720px;
            margin: 0 auto;
        }
        .thank h1 {
            font-size: 2rem;
            line-height: 1.2;
            margin: 0 0 1rem;
            font-weight: 700;
        }
        .thank .lead {
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 0 0 1rem;
        }
        .thank p {
            line-height: 1.6;
            margin: 0 0 1.5rem;
        }
        .thank .route {
            border-top: 1px solid var(--card-border);
            padding-top: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .thank .route a {
            color: var(--primary-bg);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .thank .route a:hover {
            color: var(--primary-hover);
        }
        .thank .note {
            font-size: 0.95rem;
            color: var(--muted-fg);
            margin: 0;
        }
        .thank .note a {
            color: var(--primary-bg);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .thank .note a:hover {
            color: var(--primary-hover);
        }
        @media (max-width: 600px) {
            .thank {
                padding: 3rem 1rem;
            }
            .thank h1 {
                font-size: 1.6rem;
            }
            .thank .route {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

.thank {
  background: var(--page-bg);
  color: var(--page-fg);
}

.next-step {
    background: var(--inverse-bg);
    color: var(--inverse-fg);
    padding: 4.5rem 1.25rem;
  }

  .next-step .inner {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
  }

  .next-step h2 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    font-weight: 600;
  }

  .next-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2rem;
    opacity: 0.92;
  }

  .next-step .action {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent-fg);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s ease;
  }

  .next-step .action:hover {
    background: var(--accent-hover);
  }

  .next-step .route {
    font-size: 0.95rem;
    margin-top: 2.25rem;
    margin-bottom: 0;
    opacity: 0.85;
  }

  .next-step .route a {
    color: var(--inverse-fg);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .next-step .route a:hover {
    text-decoration-thickness: 2px;
  }

.404 {
      background: var(--page-bg);
      color: var(--page-fg);
      padding: 4.5rem 1.25rem;
    }

    .404 .inner {
      max-width: 42rem;
      margin: 0 auto;
      border-top: 1px solid var(--muted-bg);
      border-bottom: 1px solid var(--muted-bg);
      padding: 3.5rem 0 3rem;
    }

    .404 .route h1 {
      font-size: 2rem;
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin: 0 0 1.25rem;
      max-width: 24ch;
    }

    .404 .route p {
      font-size: 1.0625rem;
      line-height: 1.7;
      color: var(--muted-fg);
      margin: 0 0 2.25rem;
      max-width: 52ch;
    }

    .404 .choices {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      border-top: 1px solid var(--muted-bg);
      padding-top: 1.75rem;
    }

    .404 .choices a {
      font-size: 0.95rem;
      text-decoration: none;
      padding: 0.4rem 0;
      border-bottom: 1px solid transparent;
      transition: border-color 0.15s ease;
    }

    .404 .choices .back {
      font-weight: 600;
      color: var(--brand-primary-bg);
      border-bottom-color: var(--brand-primary-bg);
    }

    .404 .choices .back:hover {
      border-bottom-color: var(--brand-primary-hover);
      color: var(--brand-primary-hover);
    }

    .404 .choices .ask,
    .404 .choices .write {
      color: var(--page-fg);
      border-bottom-color: var(--accent-bg);
    }

    .404 .choices .ask:hover,
    .404 .choices .write:hover {
      border-bottom-color: var(--accent-hover);
      color: var(--accent-hover);
    }

    @media (max-width: 480px) {
      .404 {
        padding: 3rem 1rem;
      }

      .404 .inner {
        padding: 2.5rem 0 2rem;
      }

      .404 .route h1 {
        font-size: 1.6rem;
      }

      .404 .choices {
        flex-direction: column;
        gap: 0.25rem;
      }
    }

.404 {
  background: var(--page-bg);
  color: var(--page-fg);
}