:root {
    --bg: #f7f7f5;
    --surface: #ffffff;
    --surface-soft: #efefec;
    --text: #111111;
    --muted: #757575;
    --line: #e6e6e2;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1200px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input {
    font: inherit;
  }
  
  .container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
  }
  
  .skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    background: #000;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 1000;
    transition: top 0.2s ease;
  }
  
  .skip-link:focus {
    top: 16px;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 247, 245, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 230, 226, 0.6);
  }
  
  .header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    gap: 16px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 188px;
  }
  
  .brand-logo {
    max-width: 176px;
    max-height: 68px;
    width: auto;
  }
  
  .brand-placeholder {
    width: 112px;
    height: 42px;
    border: 1px dashed #bdbdb7;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.08em;
  }
  
  .main-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .main-nav a {
    font-size: 0.92rem;
    font-weight: 600;
    color: #323232;
    background: #f0f0ed;
    padding: 10px 14px;
    border-radius: 999px;
    transition: 0.25s ease;
  }
  
  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: #e7e7e2;
  }
  
  .header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    font-weight: 700;
  }
  
  .btn:hover,
  .btn:focus-visible {
    transform: translateY(-1px);
  }
  
  .btn-dark {
    background: var(--dark);
    color: #fff;
  }
  
  .btn-dark:hover,
  .btn-dark:focus-visible {
    background: var(--dark-2);
  }
  
  .btn-block {
    width: 100%;
  }
  
  .nav-toggle {
    width: 52px;
    height: 52px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    background: var(--dark);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  }
  
  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.18s ease, background 0.22s ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    transform: translateY(-1px);
    background: #1b1b1b;
  }

  .nav-toggle[aria-expanded="true"] {
    background: var(--surface);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-toggle[aria-expanded="true"] span {
    background: var(--text);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  .mobile-menu {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.32s;
    background: linear-gradient(180deg, rgba(247, 247, 245, 0.94), rgba(247, 247, 245, 0.99));
  }
  
  .mobile-menu.is-open {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.24s ease, visibility 0s;
  }
  
  .mobile-nav {
    width: min(100% - 32px, 560px);
    margin-inline: auto;
    display: grid;
    gap: 0;
    padding: 14px;
    margin-top: 10px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.07);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px);
  }
  
  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #171717;
    transition: padding 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible,
  .mobile-nav a[aria-current="page"] {
    color: #000000;
    padding-left: 18px;
  }

  .mobile-nav a:last-child {
    margin-top: 12px;
    justify-content: center;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--dark);
    color: #ffffff;
    font-size: 0.98rem;
    letter-spacing: 0;
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.18);
  }

  .mobile-nav a:last-child:hover,
  .mobile-nav a:last-child:focus-visible,
  .mobile-nav a:last-child[aria-current="page"] {
    color: #ffffff;
    padding-left: 10px;
    background: var(--dark-2);
  }

  body.menu-open {
    overflow: hidden;
  }
  
  .hero {
    padding: clamp(64px, 10vw, 130px) 0 clamp(56px, 7vw, 96px);
  }
  
  .hero-inner {
    text-align: center;
    max-width: 840px;
  }
  
  .eyebrow {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .hero h1 {
    margin: 0;
    font-size: clamp(2.3rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: 0;
    font-weight: 800;
  }
  
  .hero-subtitle {
    margin: 14px auto 0;
    max-width: 720px;
    font-size: clamp(1.14rem, 2.1vw, 2.02rem);
    line-height: 1.22;
    letter-spacing: 0;
    color: #5f5f5f;
    font-weight: 650;
  }

  .hero-primary-cta {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin: 42px auto 0;
    padding: 0 28px;
    border: 1.5px solid #111111;
    border-radius: 18px;
    background: #111111;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  }

  .hero-primary-cta:hover,
  .hero-primary-cta:focus-visible {
    background: transparent;
    color: #111111;
    border-color: #111111;
    transform: translateY(-1px);
  }

  .hero-cta-note {
    margin: 12px auto 0;
    max-width: 520px;
    color: #7a7a7a;
    font-size: 0.92rem;
    line-height: 1.5;
    font-weight: 500;
  }
  
  .features {
    padding: 10px 0 40px;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
  }
  
  .feature-text {
    width: min(100%, 420px);
    justify-self: center;
    padding: 10px 8px;
  }
  
  .feature-text h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.05;
    font-weight: 800;
  }
  
  .feature-text p {
    margin: 0;
    max-width: 340px;
    color: var(--muted);
    font-size: 1rem;
  }

  .media-slot {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .media-slot > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .card {
    background: var(--surface-soft);
    border-radius: var(--radius);
    min-height: 340px;
    box-shadow: var(--shadow);
    margin: 0;
  }
  
  .square {
    aspect-ratio: 1 / 1;
    width: min(100%, 420px);
    justify-self: center;
  }
  
  .card:empty::before {
    content: "";
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
  }
  
  .card-icon-square::before {
    width: 66px;
    height: 66px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
  }
  
  .card-icon-circle::before {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
  }
  
  .card-icon-triangle::before {
    width: 0;
    height: 0;
    border-left: 34px solid transparent;
    border-right: 34px solid transparent;
    border-bottom: 58px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    transform: translate(-50%, -45%);
  }
  
  .testimonials {
    padding: clamp(48px, 7vw, 90px) 0;
  }
  
  .section-heading {
    text-align: center;
    margin-bottom: 34px;
  }
  
  .section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 800;
  }
  
  .section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .testimonial-card {
    background: #efefec;
    border-radius: 18px;
    padding: 22px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .testimonial-text {
    margin: 0 0 24px;
    color: #5c5c5c;
    font-size: 0.98rem;
  }
  
  .testimonial-author {
    display: grid;
    gap: 2px;
  }
  
  .testimonial-author strong {
    font-size: 0.95rem;
  }
  
  .testimonial-author span {
    font-size: 0.85rem;
    color: #8a8a8a;
  }
  
  .cta {
    padding: clamp(40px, 7vw, 90px) 0 60px;
  }
  
  .cta-inner {
    max-width: 700px;
    text-align: center;
  }

  .cta-lesson-link {
    position: relative;
    overflow: hidden;
    min-width: 250px;
    padding: 0 26px;
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.14);
    transition:
      transform 0.24s ease,
      background 0.24s ease,
      box-shadow 0.24s ease,
      letter-spacing 0.24s ease;
  }

  .cta-lesson-link span {
    position: relative;
    z-index: 2;
    transition: transform 0.24s ease;
  }

  .cta-lesson-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.18) 34%, rgba(255, 255, 255, 0.42) 50%, transparent 66%);
    transform: translateX(-135%);
    transition: transform 0.5s ease;
  }

  .cta-lesson-link::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.24s ease;
  }

  .cta-lesson-link:hover,
  .cta-lesson-link:focus-visible {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 22px 42px rgba(17, 17, 17, 0.18);
    letter-spacing: 0.01em;
  }

  .cta-lesson-link:hover::before,
  .cta-lesson-link:focus-visible::before {
    transform: translateX(135%);
  }

  .cta-lesson-link:hover::after,
  .cta-lesson-link:focus-visible::after {
    opacity: 1;
  }

  .cta-lesson-link:hover span,
  .cta-lesson-link:focus-visible span {
    transform: translateX(-3px);
  }
  
  .site-footer {
    border-top: 1px solid var(--line);
    padding: 34px 0 18px;
  }
  
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 28px;
  }
  
  .footer-logo {
    font-weight: 800;
    color: #b0b0a9;
    letter-spacing: 0.08em;
  }
  
  .footer-links {
    display: flex;
    gap: 40px;
  }
  
  .footer-links > div {
    display: grid;
    gap: 8px;
  }
  
  .footer-links a {
    color: #666;
    font-size: 0.94rem;
  }
  
  .footer-links a:hover,
  .footer-links a:focus-visible {
    color: #111;
  }
  
  .footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .footer-bottom p {
    margin: 0;
    color: #707070;
    font-size: 0.9rem;
  }
  
  .footer-bottom a {
    font-weight: 600;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
  }
  
  @media (max-width: 991px) {
    .header-inner {
      grid-template-columns: 1fr auto;
    }
  
    .main-nav,
    .header-actions .btn {
      display: none;
    }
  
    .nav-toggle {
      display: inline-flex;
    }
  
    .feature-grid {
      gap: 22px;
    }
  
    .card {
      min-height: 280px;
    }
  
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  
    .testimonial-card {
      min-height: auto;
    }
  }
  
  @media (max-width: 767px) {
    .container {
      width: min(100% - 24px, var(--container));
    }
  
    .hero {
      padding-top: 40px;
    }
  
    .hero-inner {
      text-align: left;
    }
  
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta-note {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  
    .feature-grid {
      grid-template-columns: 1fr;
      gap: 22px;
      align-items: start;
    }
  
    .feature-text {
      padding: 0;
    }

    .feature-grid > :nth-child(2) {
      order: 1;
    }

    .feature-grid > :nth-child(1) {
      order: 2;
    }

    .feature-grid > :nth-child(3) {
      order: 3;
    }

    .feature-grid > :nth-child(4) {
      order: 4;
    }

    .feature-grid > :nth-child(6) {
      order: 5;
    }

    .feature-grid > :nth-child(5) {
      order: 6;
    }

    .feature-text h2 {
      margin-bottom: 10px;
    }

    .feature-text p {
      max-width: none;
      line-height: 1.45;
    }
  
    .square {
      width: 100%;
      max-width: 100%;
      min-height: 240px;
      border-radius: 22px;
    }

    .feature-visual {
      align-self: stretch;
    }

    .feature-grid > .feature-visual.card {
      min-height: 240px;
    }

    .feature-grid > .feature-visual {
      margin-top: 0;
    }
  
    .section-heading {
      text-align: left;
    }
  
    .cta-inner {
      text-align: left;
    }
  
    .footer-inner,
    .footer-links,
    .footer-bottom {
      flex-direction: column;
    }
  
    .footer-links {
      gap: 20px;
    }
  }

  @media (max-width: 575px) {
    .feature-grid > .feature-visual.card {
      width: calc(100% - 24px);
      margin-left: auto;
      margin-right: auto;
    }

    .review-card {
      width: calc(100% - 16px);
      margin-left: auto;
      margin-right: auto;
    }
  }

  :root {
    --bg: #f5f5f3;
    --surface: #ffffff;
    --text: #111111;
    --muted: #7c7c7c;
    --muted-2: #a8a8a8;
    --line: #e7e7e4;
    --pill: #ececea;
    --dark: #000000;
    --container: 1200px;
    --radius-pill: 999px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  textarea {
    font: inherit;
  }
  
  .container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
  }
  
  .skip-link {
    position: absolute;
    left: 20px;
    top: -60px;
    background: #000;
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    z-index: 999;
    transition: top 0.2s ease;
  }
  
  .skip-link:focus {
    top: 20px;
  }
  
  .site-header {
    padding: 22px 0 0;
  }
  
  .header-inner {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    gap: 16px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    max-width: 188px;
  }
  
  .brand-logo {
    width: 168px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .main-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: var(--pill);
    color: #3f3f3f;
    font-size: 0.875rem;
    font-weight: 600;
    transition: 0.2s ease;
  }
  
  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    background: #e5e5e2;
    color: #111111;
  }
  
  .header-actions {
    display: flex;
    justify-content: flex-end;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
  
  .btn-dark {
    background: var(--dark);
    color: #ffffff;
  }
  
  .about-page .about-section {
    padding: 100px 0 70px;
    min-height: calc(100vh - 120px);
  }
  
  .about-layout {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(320px, 520px);
    justify-content: space-between;
    align-items: start;
    column-gap: clamp(40px, 7vw, 88px);
    row-gap: 0;
  }
  
  .about-content,
  .about-signature,
  .about-copyright {
    grid-column: 1;
    max-width: 420px;
  }

  .about-content {
    grid-row: 1;
  }

  .about-visual {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: min(100%, 520px);
    justify-self: end;
    align-self: start;
  }

  .about-visual-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    padding: 14px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 28px 70px rgba(17, 17, 17, 0.1);
  }

  .about-visual-frame img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
  }

  .about-title {
    margin: 0 0 34px;
    line-height: 0.95;
  }
  
  .about-title span {
    display: block;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    letter-spacing: 0;
  }
  
  .about-title small {
    display: block;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 500;
    color: #6d6d6d;
    letter-spacing: 0;
  }
  
  .about-text {
    display: grid;
    gap: 24px;
  }
  
  .about-text p {
    margin: 0;
    color: #676767;
    font-size: 1rem;
    line-height: 1.65;
  }
  
  .about-signature {
    margin-top: 36px;
    width: min(100%, 168px);
  }
  
  .about-signature img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  
  .about-copyright {
    margin-top: 22px;
  }
  
  .about-copyright p {
    margin: 0;
    color: #a1a1a1;
    font-size: 0.84rem;
    line-height: 1.45;
  }
  
  .site-footer {
    padding: 0 0 28px;
  }
  
  .footer-divider {
    height: 1px;
    background: var(--line);
    margin-bottom: 38px;
  }
  
  .footer-main {
    width: min(100%, 920px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 188px minmax(0, 1fr);
    align-items: flex-start;
    gap: 40px;
  }
  
  .footer-brand {
    opacity: 0.78;
    display: flex;
    justify-content: flex-start;
  }
  
  .footer-logo {
    width: 170px;
    object-fit: contain;
  }
  
  .footer-links-wrap {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    justify-content: end;
    gap: 56px;
  }
  
  .footer-links-group {
    display: grid;
    gap: 8px;
  }
  
  .footer-links-group h2 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #222222;
  }
  
  .footer-links-group a {
    color: #8a8a8a;
    font-size: 0.95rem;
    transition: color 0.2s ease;
  }
  
  .footer-links-group a:hover {
    color: #111111;
  }
  
  .footer-powered {
    width: min(100%, 920px);
    margin: 28px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
  
  .footer-powered p {
    margin: 0;
    color: #8e8e8e;
    font-size: 0.88rem;
  }
  
  .footer-powered a {
    font-weight: 700;
    color: #111111;
  }
  
  /* TABLET */
  @media (max-width: 1199px) {
    .container {
      width: min(100% - 40px, var(--container));
    }
  
    .about-page .about-section {
      padding-top: 80px;
    }

    .about-layout {
      grid-template-columns: minmax(0, 420px) minmax(260px, 420px);
      column-gap: 36px;
    }
  
    .about-content,
    .about-signature,
    .about-copyright {
      max-width: 450px;
    }
  }
  
  /* MOBILE */
  @media (max-width: 767px) {
    .container {
      width: min(100% - 24px, var(--container));
    }
  
    .site-header {
      padding-top: 18px;
    }
  
    .header-inner {
      grid-template-columns: 1fr auto;
    }
  
    .main-nav {
      display: none;
    }
  
    .brand-logo {
      width: 118px;
      max-width: 100%;
    }

    .nav-toggle {
      width: 48px;
      height: 48px;
      border-radius: 16px;
    }

    .mobile-nav {
      width: min(100% - 24px, 100%);
      padding: 12px;
      margin-top: 8px;
      border-radius: 24px;
    }

    .mobile-nav a {
      min-height: 56px;
      font-size: 1.05rem;
    }

    .mobile-nav a:last-child {
      min-height: 50px;
      font-size: 0.95rem;
    }
  
    .btn {
      min-height: 34px;
      padding: 0 14px;
      font-size: 0.82rem;
    }
  
    .about-page .about-section {
      padding: 58px 0 46px;
    }

    .about-layout {
      grid-template-columns: 1fr;
      gap: 26px;
    }
  
    .about-content,
    .about-visual,
    .about-signature,
    .about-copyright {
      grid-column: 1;
      grid-row: auto;
      max-width: 100%;
    }

    .about-content,
    .about-signature,
    .about-copyright {
      width: calc(100% - 16px);
      margin-left: auto;
      margin-right: auto;
    }

    .about-visual {
      width: calc(100% - 16px);
      justify-self: center;
    }

    .about-visual-frame {
      aspect-ratio: 4 / 5;
      border-radius: 24px;
      padding: 10px;
    }
  
    .about-title {
      margin-bottom: 26px;
    }
  
    .about-title span {
      font-size: 2.1rem;
    }
  
    .about-title small {
      font-size: 1.9rem;
    }
  
    .about-text {
      gap: 20px;
    }
  
    .about-text p {
      font-size: 0.97rem;
      line-height: 1.62;
    }
  
    .about-signature {
      margin-top: 28px;
      width: 148px;
    }
  
    .about-copyright {
      margin-top: 18px;
    }
  
    .footer-main {
      width: 100%;
      grid-template-columns: 1fr;
      justify-content: stretch;
      gap: 24px;
    }
  
    .footer-links-wrap {
      grid-auto-flow: row;
      grid-auto-columns: auto;
      justify-content: flex-start;
      gap: 24px;
    }

    .footer-brand {
      justify-content: flex-start;
    }

    .footer-logo {
      width: 142px;
    }

    .footer-powered {
      width: 100%;
      margin-top: 24px;
    }
  }

  /* =========================
   ZAJĘCIA / USŁUGI
========================= */

.services-page .services-hero {
    padding: 92px 0 70px;
  }
  
  .services-hero-inner {
    text-align: center;
    max-width: 760px;
  }
  
  .services-hero-inner h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 0.96;
    letter-spacing: 0;
    font-weight: 800;
  }
  
  .services-hero-inner p {
    margin: 10px auto 0;
    max-width: 740px;
    color: #7a7a7a;
    font-size: clamp(1rem, 1.7vw, 1.8rem);
    line-height: 1.05;
    font-weight: 600;
  }
  
  .services-grid-section {
    padding: 10px 0 48px;
  }
  
  .services-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
  }
  
  .services-feature-text {
    width: min(100%, 430px);
    justify-self: center;
    padding: 8px 0;
  }
  
  .services-feature-text h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.04;
    font-weight: 800;
  }
  
  .services-feature-text p {
    margin: 0;
    max-width: 390px;
    color: #787878;
    font-size: 1rem;
    line-height: 1.55;
  }
  
  .services-feature-card {
    position: relative;
    width: min(100%, 430px);
    aspect-ratio: 1 / 1;
    justify-self: center;
    margin: 0;
    border-radius: 24px;
    background: #ececea;
  }
  
  .services-copy {
    padding: 10px 0 40px;
  }
  
  .services-copy-inner {
    max-width: 720px;
  }
  
  .services-copy-inner h2 {
    margin: 0 0 14px;
    font-size: 0.95rem;
    font-weight: 700;
  }
  
  .services-copy-inner p {
    margin: 0 0 14px;
    max-width: 680px;
    color: #707070;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .trial-promo-section {
    padding: 20px 0 56px;
  }

  .trial-promo-card {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    padding: 28px;
    border-radius: 26px;
    background: #ececea;
    text-align: center;
  }

  .trial-promo-card h2 {
    margin: 0 0 12px;
    max-width: 14ch;
    font-size: clamp(1.7rem, 2.5vw, 2.5rem);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 800;
  }

  .trial-promo-card p {
    margin: 0 0 18px;
    max-width: 620px;
    color: #6f6f6f;
    font-size: 0.97rem;
    line-height: 1.65;
  }
  
  .pricing-section {
    padding: 36px 0 56px;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 290px;
    padding: 22px;
    border-radius: 18px;
    background: #ececea;
  }
  
  .pricing-card-top {
    display: block;
  }
  
  .pricing-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #8b8b8b;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  .pricing-card h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
  }

  .pricing-price {
    margin: 0 0 16px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    color: #111111;
  }
  
  .pricing-card ul {
    margin: 0;
    padding: 0 0 0 18px;
    color: #6f6f6f;
  }
  
  .pricing-card li {
    margin-bottom: 8px;
    font-size: 0.92rem;
    line-height: 1.5;
  }
  
  .pricing-card-featured {
    background: #e8e8e5;
  }
  
  .pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    width: 100%;
    margin-top: 22px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }
  
  .pricing-btn:hover {
    transform: translateY(-1px);
  }
  
  .pricing-btn-light {
    background: #ddddda;
    color: #111111;
  }
  
  .pricing-btn-light:hover {
    background: #d2d2ce;
  }
  
  .pricing-btn-dark {
    background: #000000;
    color: #ffffff;
  }
  
  .pricing-btn-dark:hover {
    background: #171717;
  }

  .package-modal[hidden] {
    display: none;
  }

  .package-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
  }

  .package-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.54);
    backdrop-filter: blur(8px);
  }

  .package-modal-dialog {
    position: relative;
    width: min(100%, 1060px);
    max-height: min(88vh, 860px);
    overflow: auto;
    padding: 34px;
    border-radius: 30px;
    background: rgba(247, 247, 245, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  }

  .package-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .package-modal-close:hover,
  .package-modal-close:focus-visible {
    transform: translateY(-1px);
    background: #f1f1ee;
  }

  .package-modal-close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: #111111;
    border-radius: 999px;
  }

  .package-modal-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .package-modal-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .package-modal-header {
    max-width: 640px;
    margin-bottom: 26px;
  }

  .package-modal-header h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: 0;
    font-weight: 800;
  }

  .package-modal-header p {
    margin: 0;
    color: #717171;
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .package-option-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    padding: 22px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 24px;
    background: #ececea;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .package-option-card:hover,
  .package-option-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(17, 17, 17, 0.16);
    background: #f1f1ee;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
  }

  .package-option-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #666666;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .package-option-card h3 {
    margin: 0 0 10px;
    font-size: 1.55rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
  }

  .package-option-price {
    margin: 0 0 12px;
    font-size: 1.28rem;
    line-height: 1;
    font-weight: 800;
    color: #111111;
  }

  .package-option-card p {
    margin: 0;
    color: #6b6b6b;
    font-size: 0.97rem;
    line-height: 1.55;
  }

  .package-option-cta {
    margin-top: 18px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #111111;
  }

  .package-option-card-featured {
    background: #111111;
    color: #ffffff;
  }

  .package-option-card-featured .package-option-label {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.76);
  }

  .package-option-card-featured .package-option-price {
    color: #ffffff;
  }

  .package-option-card-featured p,
  .package-option-card-featured .package-option-cta {
    color: rgba(255, 255, 255, 0.88);
  }

  .package-option-card-featured:hover,
  .package-option-card-featured:focus-visible {
    background: #1a1a1a;
  }

  .package-option-card-contact {
    background: #f4f4f1;
    border-style: dashed;
  }

  body.modal-open {
    overflow: hidden;
  }

  .contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  
  .services-cta {
    padding: 34px 0 60px;
  }
  
  .services-cta-inner {
    text-align: center;
    max-width: 560px;
  }
  
  .services-cta-inner h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    line-height: 1.04;
    font-weight: 800;
  }
  
  .services-cta-inner p {
    margin: 8px 0 18px;
    color: #7d7d7d;
    font-size: 1rem;
  }
  
  /* TABLET */
  @media (max-width: 1199px) {
    .services-page .services-hero {
      padding-top: 78px;
    }
  
    .services-feature-grid {
      gap: 22px;
    }
  
    .pricing-grid {
      gap: 14px;
    }
  
    .pricing-card {
      min-height: 276px;
      padding: 20px;
    }

    .package-modal-dialog {
      width: min(100%, 900px);
      padding: 30px;
    }
  }
  
  /* MOBILE */
  @media (max-width: 767px) {
    .services-page .services-hero {
      padding: 54px 0 38px;
    }
  
    .services-hero-inner {
      text-align: left;
    }
  
    .services-hero-inner p {
      margin-left: 0;
      margin-right: 0;
    }
  
    .services-grid-section {
      padding-bottom: 28px;
    }
  
    .services-feature-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .services-feature-grid > :nth-child(1) {
      order: 2;
    }

    .services-feature-grid > :nth-child(2) {
      order: 1;
    }

    .services-feature-grid > :nth-child(3) {
      order: 3;
    }

    .services-feature-grid > :nth-child(4) {
      order: 4;
    }

    .services-feature-grid > :nth-child(5) {
      order: 6;
    }

    .services-feature-grid > :nth-child(6) {
      order: 5;
    }
  
    .services-feature-card {
      width: 100%;
      max-width: 100%;
    }

    .services-feature-text p {
      max-width: 100%;
    }
  
    .services-copy {
      padding: 4px 0 26px;
    }

    .trial-promo-section {
      padding: 16px 0 40px;
    }

    .trial-promo-card {
      padding: 22px 18px;
      border-radius: 22px;
    }
  
    .services-copy-inner {
      max-width: 100%;
    }
  
    .pricing-section {
      padding: 28px 0 38px;
    }
  
    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
  
    .pricing-card {
      min-height: auto;
    }

    .package-modal {
      padding: 14px;
      align-items: end;
    }

    .package-modal-dialog {
      width: 100%;
      max-height: min(88vh, 760px);
      padding: 24px 18px 18px;
      border-radius: 24px 24px 0 0;
    }

    .package-modal-close {
      top: 14px;
      right: 14px;
      width: 42px;
      height: 42px;
      border-radius: 14px;
    }

    .package-modal-header {
      margin-bottom: 20px;
      padding-right: 40px;
    }

    .package-options-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .package-option-card {
      min-height: auto;
      padding: 18px;
      border-radius: 20px;
    }

    .package-option-card h3 {
      font-size: 1.3rem;
    }
  
    .services-cta {
      padding: 16px 0 42px;
    }
  
    .services-cta-inner {
      text-align: left;
    }
  }

  /* =========================
   OPINIE / REVIEWS
========================= */

.reviews-page .reviews-hero {
    padding: 88px 0 44px;
  }
  
  .reviews-hero-inner {
    max-width: 860px;
    text-align: center;
  }
  
  .reviews-hero-inner h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 0.97;
    letter-spacing: 0;
    font-weight: 800;
  }
  
  .reviews-hero-inner p {
    margin: 10px auto 0;
    max-width: 760px;
    color: #7d7d7d;
    font-size: clamp(1rem, 1.8vw, 1.9rem);
    line-height: 1.05;
    font-weight: 600;
  }
  
  .reviews-cards-section {
    padding: 12px 0 74px;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .review-card {
    min-height: 248px;
    padding: 22px;
    border-radius: 18px;
    background: #ececea;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .review-card-text {
    margin: 0 0 22px;
    color: #646464;
    font-size: 0.96rem;
    line-height: 1.6;
  }
  
  .review-card-author {
    display: grid;
    gap: 3px;
  }
  
  .review-card-author strong {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  
  .review-card-author span {
    color: #9a9a9a;
    font-size: 0.8rem;
    line-height: 1.35;
  }
  
  .featured-quote-section {
    padding: 8px 0 92px;
  }
  
  .featured-quote {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  
  .featured-quote p {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: 0;
    font-weight: 800;
  }
  
  .featured-quote footer {
    margin-top: 16px;
    color: #9a9a9a;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .featured-quote footer strong,
  .featured-quote footer span {
    display: block;
  }

  .featured-quote footer strong {
    color: #5f5f5f;
    font-size: 0.95rem;
    font-weight: 700;
  }

  .featured-quote footer span {
    margin-top: 2px;
    color: #9a9a9a;
    font-size: 0.82rem;
  }
  
  .faq-section {
    padding: 24px 0 68px;
  }
  
  .faq-inner {
    display: flex;
    justify-content: center;
  }
  
  .faq-list {
    width: 100%;
    max-width: 560px;
    display: grid;
    gap: 10px;
  }
  
  .faq-item {
    border-radius: 12px;
    overflow: hidden;
  }
  
  .faq-toggle {
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    border: 0;
    border-radius: 12px;
    background: #ececea;
    color: #1e1e1e;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .faq-toggle:hover {
    background: #e4e4e1;
  }
  
  .faq-toggle[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .faq-icon {
    display: inline-flex;
    width: 12px;
    flex: 0 0 12px;
    justify-content: center;
    margin-top: 0.15em;
    color: #767676;
    font-size: 1rem;
    font-weight: 700;
  }
  
  .faq-panel {
    padding: 14px 16px 16px 38px;
    background: #f0f0ee;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  
  .faq-panel p {
    margin: 0;
    color: #6f6f6f;
    font-size: 0.92rem;
    line-height: 1.6;
  }
  
  /* TABLET */
  @media (max-width: 1199px) {
    .reviews-page .reviews-hero {
      padding-top: 74px;
    }
  
    .reviews-cards-section {
      padding-bottom: 60px;
    }
  
    .featured-quote-section {
      padding-bottom: 76px;
    }
  }
  
  /* MOBILE */
  @media (max-width: 767px) {
    .reviews-page .reviews-hero {
      padding: 52px 0 28px;
    }
  
    .reviews-hero-inner {
      text-align: left;
    }
  
    .reviews-hero-inner p {
      margin-left: 0;
      margin-right: 0;
    }
  
    .reviews-cards-section {
      padding: 8px 0 44px;
    }
  
    .reviews-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
  
    .review-card {
      min-height: 210px;
      padding: 18px;
    }
  
    .featured-quote-section {
      padding: 4px 0 44px;
    }
  
    .featured-quote {
      margin: 0;
      max-width: 100%;
    }
  
    .featured-quote p {
      text-align: center;
      font-size: 2.15rem;
    }
  
    .faq-section {
      padding: 12px 0 42px;
    }
  
    .faq-list {
      max-width: 100%;
    }
  
    .faq-toggle {
      min-height: 42px;
      padding: 11px 14px;
      font-size: 0.86rem;
    }
  
    .faq-panel {
      padding: 12px 14px 14px 34px;
    }
  }

  /* =========================
   KONTAKT / CONTACT
========================= */

.contact-link[aria-current="page"],
.contact-link.is-current {
  background: #000000;
  color: #ffffff;
}

.contact-page .contact-hero {
  padding: 92px 0 110px;
}

.contact-hero-inner {
  max-width: 860px;
  text-align: center;
}

.contact-hero-inner h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.97;
  letter-spacing: 0;
  font-weight: 800;
}

.contact-hero-inner p {
  margin: 10px auto 0;
  max-width: 860px;
  color: #8a8a8a;
  font-size: clamp(1rem, 1.9vw, 2rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 700;
}

.contact-form-section {
  padding: 0 0 86px;
}

.contact-form-wrap {
  max-width: 520px;
  margin-left: clamp(18px, 4vw, 58px);
}

.contact-intro-card {
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 20px;
  background: #ececea;
}

.contact-intro-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

.contact-intro-card p {
  margin: 0 0 14px;
  color: #6f6f6f;
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-inline-link:hover,
.contact-inline-link:focus-visible {
  transform: translateY(-1px);
  background: #1b1b1b;
}

.contact-form {
  width: 100%;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-field label {
  color: #8d8d8d;
  font-size: 0.8rem;
  font-weight: 600;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #e9e9e6;
  color: #111111;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field input {
  min-height: 44px;
}

.contact-field textarea {
  min-height: 132px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9e9e9e;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #c7c7c2;
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.05);
  background: #ecece9;
}

.contact-submit {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  border: 0;
  border-radius: 10px;
  background: #000000;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  background: #141414;
}

.contact-form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: #7a7a7a;
  font-size: 0.9rem;
}

.contact-details-section {
  padding: 0 0 42px;
}

.contact-details {
  max-width: 620px;
  margin-left: clamp(18px, 4vw, 58px);
}

.contact-details h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 800;
}

.contact-details p {
  margin: 0 0 14px;
  color: #6f6f6f;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-direct-line {
  color: #4e4e4e;
  font-weight: 500;
}

.contact-direct-line a {
  color: #4e4e4e;
}

.contact-direct-line a:hover {
  color: #111111;
}

.contact-signature {
  margin-top: 18px;
}

/* TABLET */
@media (max-width: 1199px) {
  .contact-page .contact-hero {
    padding: 78px 0 92px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .contact-page .contact-hero {
    padding: 52px 0 44px;
  }

  .contact-hero-inner {
    text-align: center;
  }

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

  .contact-form-section {
    padding-bottom: 48px;
  }

  .contact-form-wrap,
  .contact-details {
    max-width: 100%;
    margin-left: 0;
  }

  .contact-intro-card {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-field input {
    min-height: 42px;
    padding: 0 12px;
  }

  .contact-field textarea {
    min-height: 118px;
    padding: 12px;
  }

  .contact-submit {
    min-height: 42px;
    font-size: 0.84rem;
  }

  .contact-details-section {
    padding-bottom: 34px;
  }

  .contact-details p {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

/* =========================
   BLOG LIST
========================= */

.blog-page .blog-hero {
    padding: 92px 0 34px;
  }
  
  .blog-hero-inner {
    max-width: 980px;
  }
  
  .blog-hero-inner h1 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: 0;
    font-weight: 800;
  }
  
  .blog-hero-inner p {
    margin: 10px 0 0;
    max-width: 700px;
    color: #7f7f7f;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .blog-list-section {
    padding: 10px 0 90px;
  }
  
  .blog-list {
    display: grid;
    gap: 28px;
    max-width: 980px;
    margin-inline: auto;
  }
  
  .blog-row {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 22px 28px;
    align-items: start;
    padding: 24px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  
  .blog-row-image {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    background: #ececea;
    aspect-ratio: 16 / 9;
    align-self: start;
  }
  
  .blog-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .blog-row-content {
    min-width: 0;
    display: grid;
    gap: 10px;
    align-content: start;
  }
  
  .blog-row-title {
    display: block;
    margin: 0;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 800;
    text-wrap: balance;
  }
  
  .blog-row-date {
    margin: 0;
    color: #929292;
    font-size: 0.96rem;
  }
  
  .blog-row-excerpt {
    margin: 0;
    color: #707070;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 62ch;
  }
  
  .blog-row-tags {
    display: flex;
    flex-wrap: wrap;
    grid-column: 2;
    justify-content: flex-start;
    gap: 10px;
    margin-top: -2px;
  }
  
  .blog-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ececea;
    color: #8d8d8d;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .blog-pagination {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    width: fit-content;
    margin-inline: auto;
  }
  
  .blog-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #ececea;
    color: #111;
    font-weight: 700;
  }
  
  .blog-pagination a.is-active {
    background: #000;
    color: #fff;
  }
  
  .blog-empty {
    padding: 24px;
    border-radius: 24px;
    background: #ececea;
    color: #666;
  }
  
  /* =========================
     BLOG POST
  ========================= */
  
  .blog-post-article {
    padding: 72px 0 110px;
  }
  
  .blog-post-shell {
    max-width: 980px;
  }
  
  .blog-back-link {
    display: inline-block;
    margin-bottom: 28px;
    color: #767676;
    font-weight: 600;
  }
  
  .blog-post-cover {
    border-radius: 28px;
    overflow: hidden;
    background: #ececea;
    margin-bottom: 64px;
  }
  
  .blog-post-cover img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  
  .blog-post-copy {
    width: min(100%, 700px);
    margin-inline: auto;
    display: grid;
    gap: 56px;
  }

  .blog-post-header {
    width: 100%;
    display: block;
  }

  .blog-post-header h1 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.9rem);
    line-height: 0.93;
    letter-spacing: 0;
    font-weight: 800;
    text-wrap: balance;
  }
  
  .blog-post-meta {
    display: flex;
    gap: 10px 12px;
    flex-wrap: wrap;
    margin-top: 22px;
    color: #7d7d7d;
    font-size: 0.87rem;
    font-weight: 600;
  }

  .blog-post-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #efefec;
    border: 1px solid #e6e6e2;
  }
  
  .blog-post-lead {
    margin: 28px 0 0;
    max-width: none;
    color: #2f2f2f;
    font-size: 1.18rem;
    line-height: 1.92;
    font-weight: 600;
  }
  
  .blog-post-body {
    width: 100%;
    display: grid;
    gap: 34px;
  }
  
  .blog-post-body p {
    margin: 0;
    color: #4c4c4c;
    font-size: 1.02rem;
    line-height: 1.96;
    font-weight: 400;
    max-width: 66ch;
  }

  .blog-post-body h2,
  .blog-post-body h3 {
    margin: 10px 0 -8px;
    color: #111;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0;
  }

  .blog-post-body h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }

  .blog-post-body h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
  }

  .blog-post-body ul,
  .blog-post-body ol {
    margin: 0;
    padding-left: 1.3rem;
    color: #4c4c4c;
    font-size: 1.02rem;
    line-height: 1.9;
    max-width: 66ch;
  }

  .blog-post-body li + li {
    margin-top: 8px;
  }
  
  .blog-related {
    width: 100%;
    margin: 0;
    padding-top: 42px;
    border-top: 1px solid #e6e6e2;
  }
  
  .blog-related h2 {
    margin: 0 0 20px;
    font-size: 1.4rem;
    font-weight: 800;
  }
  
  .blog-related-list {
    display: grid;
    gap: 12px;
  }
  
  .blog-related-item {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #ececea;
  }
  
  .blog-related-item strong {
    font-size: 1rem;
  }
  
  .blog-related-item span {
    color: #8a8a8a;
    font-size: 0.9rem;
  }
  
  /* TABLET */
  @media (max-width: 1199px) {
    .blog-row {
      grid-template-columns: 220px minmax(0, 1fr);
      gap: 18px 22px;
    }
  }
  
  /* MOBILE */
  @media (max-width: 767px) {
    .blog-page .blog-hero {
      padding: 56px 0 24px;
    }
  
    .blog-row {
      grid-template-columns: 1fr;
      gap: 14px;
      padding: 18px;
    }
  
    .blog-row-image {
      border-radius: 20px;
    }
  
    .blog-row-content {
      gap: 8px;
    }

    .blog-row-title {
      font-size: 1.45rem;
      text-wrap: initial;
    }
  
    .blog-row-date {
      margin-bottom: 8px;
    }
  
    .blog-row-excerpt {
      font-size: 0.95rem;
    }
  
    .blog-row-tags {
      grid-column: 1;
      justify-content: flex-start;
      gap: 8px;
      margin-top: 0;
    }
  
    .blog-tag {
      min-height: 32px;
      padding: 0 12px;
      font-size: 0.84rem;
    }
  
    .blog-post-article {
      padding: 44px 0 56px;
    }
  
    .blog-post-cover {
      border-radius: 20px;
      margin-bottom: 40px;
    }

    .blog-post-copy {
      width: 100%;
      gap: 42px;
    }

    .blog-post-header {
      width: 100%;
    }

    .blog-post-header h1 {
      font-size: 2.15rem;
      line-height: 0.96;
    }

    .blog-post-meta {
      margin-top: 18px;
      gap: 8px;
      font-size: 0.82rem;
    }

    .blog-post-meta span {
      min-height: 32px;
      padding: 0 11px;
    }
  
    .blog-post-lead {
      font-size: 1.02rem;
      margin-top: 22px;
      line-height: 1.76;
    }
  
    .blog-post-body {
      width: 100%;
      gap: 26px;
    }

    .blog-post-body p {
      font-size: 0.98rem;
      line-height: 1.8;
      max-width: none;
    }
  }
