:root {
      --green: #64ff5f;
      --green-soft: #a2ff91;
      --black: #050505;
      --panel: #171717;
      --panel-2: #0d0d0d;
      --text: #f7f7f1;
      --muted: #a0a0a0;
      --line: rgba(255, 255, 255, 0.12);
      --radius: 8px;
      --max: 1630px;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    @property --spin {
      syntax: "<angle>";
      inherits: false;
      initial-value: 0deg;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--black);
      font-family: Inter, Arial, sans-serif;
      overflow-x: hidden;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }
    }

    body.menu-open {
      overflow: hidden;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0;
      height: 5px;
      background: var(--green);
      z-index: 120;
    }

    .wrap {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .grain {
      position: relative;
      isolation: isolate;
      background:
        radial-gradient(circle at 16% 18%, rgba(100, 255, 95, 0.16), transparent 26%),
        radial-gradient(circle at 86% 24%, rgba(100, 255, 95, 0.1), transparent 32%),
        linear-gradient(90deg, rgba(100, 255, 95, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(100, 255, 95, 0.06) 1px, transparent 1px),
        #050505;
      background-size: auto, auto, 118px 118px, 118px 118px, auto;
    }

    .grain::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: 0.15;
      pointer-events: none;
      background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%),
        linear-gradient(225deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%);
      background-size: 4px 4px;
      mix-blend-mode: screen;
    }

    .glass-panel {
      border: 1px solid rgba(255, 255, 255, 0.16);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
        rgba(9, 9, 9, 0.58);
      box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .animated-border {
      position: relative;
      isolation: isolate;
      animation: floatSoft 7.2s ease-in-out infinite;
      will-change: transform;
      transition:
        transform 320ms var(--ease),
        box-shadow 320ms var(--ease),
        border-color 320ms var(--ease),
        background 320ms var(--ease);
    }

    .animated-border:hover {
      animation-play-state: paused;
      transform: translateY(-6px);
      border-color: rgba(100, 255, 95, 0.28);
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    @keyframes floatSoft {
      0%,
      100% {
        transform: translate3d(0, 0, 0);
      }

      50% {
        transform: translate3d(0, -8px, 0);
      }
    }

    @keyframes sheenMove {
      0% {
        transform: translateX(-130%) rotate(18deg);
      }

      100% {
        transform: translateX(130%) rotate(18deg);
      }
    }

    .site-header {
      position: fixed;
      top: 28px;
      left: 0;
      width: 100%;
      z-index: 90;
      transition: top 220ms var(--ease), transform 320ms var(--ease);
    }

    .site-header.scrolled {
      top: 16px;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand-pill {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      min-height: 74px;
      padding: 0 28px 0 7px;
      border-radius: 999px;
      color: #fff;
      background: #000;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mark {
      width: 62px;
      height: 62px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #000;
      background: var(--green);
      font-weight: 900;
      font-size: 25px;
      line-height: 1;
    }

    .menu-button {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      border: 0;
      color: #fff;
      background: transparent;
      cursor: pointer;
      font-weight: 800;
      font-size: 26px;
    }

    .hamburger {
      width: 20px;
      display: grid;
      gap: 5px;
    }

    .hamburger span {
      height: 3px;
      background: var(--green);
      border-radius: 99px;
    }

    .talk-pill,
    .pill-link {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      width: max-content;
      min-height: 50px;
      border-radius: 999px;
      transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
    }

    .talk-pill {
      padding: 0 8px 0 32px;
      border: 2px solid currentColor;
      color: #fff;
      font-size: 24px;
      font-weight: 700;
    }

    .pill-link {
      padding: 0 6px 0 30px;
      color: #000;
      background: var(--green);
      font-size: 22px;
      font-weight: 600;
      border: 0;
      cursor: pointer;
    }

    .talk-pill:hover,
    .pill-link:hover {
      transform: translateY(-3px);
      background: #fff;
      color: #000;
    }

    .arrow-dot {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: #000;
      font-size: 20px;
      line-height: 1;
    }

    .drawer {
      position: fixed;
      inset: 0;
      z-index: 85;
      display: grid;
      place-items: center;
      padding: 120px 20px 40px;
      color: #fff;
      background: rgba(0, 0, 0, 0.95);
      transform: translateY(-100%);
      transition: transform 420ms var(--ease);
    }

    .drawer.open {
      transform: translateY(0);
    }

    .drawer nav {
      display: grid;
      gap: 12px;
      text-align: center;
    }

    .drawer a {
      font-size: clamp(46px, 8vw, 112px);
      line-height: 0.95;
      font-weight: 900;
    }

    .drawer-close {
      position: absolute;
      top: 100px;
      right: 28px;
      width: 54px;
      height: 54px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      color: #fff;
      font-size: 32px;
      line-height: 1;
      cursor: pointer;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .hero {
      min-height: 100svh;
      display: grid;
      align-items: end;
      padding: 170px 0 70px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.58fr);
      gap: 80px;
      align-items: end;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 36px;
      width: max-content;
      padding: 0 18px;
      color: #000;
      background: var(--green);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .hero h1 {
      margin: 34px 0 0;
      max-width: 1040px;
      font-size: clamp(66px, 7.6vw, 148px);
      line-height: 0.95;
      font-weight: 900;
      letter-spacing: 0;
    }

    .serif {
      color: var(--green);
      font-family: "Instrument Serif", Georgia, serif;
      font-style: italic;
      font-weight: 400;
    }

    .hero-aside {
      display: grid;
      gap: 28px;
      align-content: start;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .hero-proof-copy {
      display: grid;
      gap: 18px;
    }

    .hero-proof-stat {
      display: grid;
      gap: 8px;
    }

    .hero-proof-number {
      color: var(--green);
      font-size: clamp(44px, 5vw, 76px);
      line-height: 0.95;
      font-weight: 900;
    }

    .hero-proof-label {
      color: #fff;
      font-size: clamp(20px, 1.8vw, 28px);
      line-height: 1.2;
      font-weight: 800;
    }

    .hero-proof-meta {
      margin: 0;
      color: var(--muted);
      font-size: clamp(17px, 1.4vw, 22px);
      line-height: 1.4;
      font-weight: 700;
    }

    .hero-copy {
      margin: 0;
      color: var(--muted);
      font-size: clamp(21px, 1.8vw, 30px);
      line-height: 1.45;
      font-weight: 600;
    }

    .hero-media {
      width: 100%;
      height: clamp(360px, 45vw, 680px);
      margin-top: -12px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: #111;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.86) contrast(1.08);
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.25), rgba(5, 5, 5, 0.42)),
        linear-gradient(90deg, rgba(100, 255, 95, 0.18), transparent 55%);
      pointer-events: none;
    }

    .section {
      padding: 120px 0;
      overflow: hidden;
    }

    .section-title {
      margin: 0;
      font-size: clamp(50px, 6.2vw, 112px);
      line-height: 0.95;
      font-weight: 900;
      letter-spacing: 0;
    }

    .lead {
      margin: 0;
      color: var(--muted);
      font-size: clamp(19px, 1.65vw, 27px);
      line-height: 1.45;
      max-width: 870px;
      font-weight: 600;
    }

    .services-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr) 130px;
      gap: 42px;
      align-items: start;
      margin-bottom: 70px;
    }

    .round-arrow {
      width: 118px;
      height: 118px;
      display: grid;
      place-items: center;
      justify-self: end;
      border-radius: 50%;
      color: #000;
      background: var(--green);
      font-size: 58px;
    }

    .featured-service {
      display: grid;
      grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
      gap: 70px;
      align-items: center;
      margin-bottom: 48px;
    }

    .service-visual {
      min-height: 520px;
      display: grid;
      place-items: center;
      position: relative;
    }

    .service-visual strong {
      color: var(--green);
      font-size: clamp(78px, 12vw, 230px);
      line-height: 0.9;
      font-weight: 900;
      transform: rotate(-13deg);
      text-shadow: 0 28px 70px rgba(100, 255, 95, 0.18);
      animation: floatSoft 5.8s var(--ease) infinite;
    }

    .service-visual span {
      position: absolute;
      width: 120px;
      height: 120px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #000;
      background: #fff;
      font-size: 48px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    }

    .service-visual span:first-of-type {
      top: 18%;
      right: 14%;
      animation: floatSoft 6.4s var(--ease) infinite;
    }

    .service-visual span:last-of-type {
      bottom: 20%;
      left: 18%;
      background: var(--green);
      animation: floatSoft 5.2s var(--ease) infinite reverse;
    }

    .service-card {
      min-height: 360px;
      padding: clamp(24px, 3vw, 44px);
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(100, 255, 95, 0.28);
      box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .service-card::after {
      content: attr(data-code);
      position: absolute;
      right: 42px;
      bottom: 30px;
      color: rgba(100, 255, 95, 0.11);
      font-size: clamp(78px, 9vw, 160px);
      font-weight: 900;
      line-height: 0.8;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 18px;
      border-radius: 999px;
      color: #000;
      background: var(--green);
      font-weight: 900;
      font-size: 15px;
      text-transform: uppercase;
    }

    .service-card h2,
    .service-card h3 {
      margin: 24px 0 20px;
      max-width: 720px;
      font-size: clamp(28px, 2.4vw, 42px);
      line-height: 1.08;
    }

    .checks {
      display: grid;
      gap: 14px;
      margin: 0 0 28px;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
    }

    .checks li {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .checks li::before {
      content: "\2713";
      color: var(--green);
      font-size: 30px;
      line-height: 1;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .mission {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      min-height: 720px;
    }

    .mission-panel {
      position: relative;
      display: grid;
      align-items: center;
      padding: clamp(36px, 7vw, 120px);
      overflow: hidden;
      isolation: isolate;
    }

    .mission-panel img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      filter: saturate(0.72) contrast(1.04);
    }

    .mission-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: rgba(0, 0, 0, 0.58);
    }

    .mission h2 {
      margin: 0 0 34px;
      font-size: clamp(56px, 6vw, 116px);
      line-height: 0.95;
      font-weight: 900;
    }

    .mission p {
      max-width: 740px;
      color: #fff;
      font-size: clamp(21px, 1.7vw, 29px);
      line-height: 1.45;
      font-weight: 600;
    }

    .ghost-word {
      color: rgba(255, 255, 255, 0.28);
      font-size: clamp(78px, 12vw, 220px);
      line-height: 0.8;
      font-weight: 900;
      text-transform: uppercase;
    }

    .pricing-head {
      max-width: 1120px;
      margin: 0 auto 74px;
      text-align: center;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 26px;
      align-items: stretch;
    }

    .price-card {
      min-height: 520px;
      padding: 46px 34px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(11, 11, 11, 0.56);
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 22px 70px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transition: transform 320ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease);
    }

    .price-card:hover {
      transform: translateY(-8px);
      border-color: rgba(100, 255, 95, 0.34);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 90px rgba(0, 0, 0, 0.36);
    }

    .price-card.featured {
      color: #061006;
      background: linear-gradient(145deg, var(--green), var(--green-soft));
      transform: translateY(-28px);
    }

    .price-card.featured:hover {
      transform: translateY(-36px);
    }

    .price-card.featured::before {
      content: "Top choice";
      position: absolute;
      top: 0;
      right: 0;
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      padding: 0 22px;
      color: #000;
      background: #fff;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 28px;
    }

    .price strong {
      font-size: clamp(52px, 4.7vw, 78px);
      line-height: 1;
      font-weight: 900;
    }

    .price span {
      color: var(--muted);
      font-size: 22px;
      font-weight: 800;
    }

    .featured .price span,
    .featured .checks {
      color: rgba(6, 16, 6, 0.76);
    }

    .price-card h3 {
      margin: 0 0 14px;
      font-size: 34px;
    }

    .price-card p {
      min-height: 78px;
      margin: 0 0 34px;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.35;
      font-weight: 700;
    }

    .featured p {
      color: rgba(6, 16, 6, 0.82);
    }

    .proof {
      color: #000;
      background: var(--green);
      padding: 72px 0;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: minmax(300px, 0.55fr) minmax(0, 1fr);
      gap: 70px;
      align-items: center;
    }

    .proof h2 {
      margin: 0 0 26px;
      font-size: clamp(28px, 2.8vw, 46px);
      line-height: 1.1;
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: clamp(34px, 4vw, 64px);
      font-weight: 900;
    }

    .rating span {
      color: #ff6036;
      font-size: 22px;
      letter-spacing: 0;
    }

    .logo-row {
      display: grid;
      grid-template-columns: repeat(5, minmax(100px, 1fr));
      gap: 18px;
      align-items: center;
    }

    .logo-word {
      min-height: 72px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(0, 0, 0, 0.18);
      border-radius: var(--radius);
      font-weight: 900;
      background: rgba(255, 255, 255, 0.16);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
      gap: 70px;
      align-items: start;
    }

    .faq-layout .section-title {
      font-size: clamp(48px, 4.8vw, 86px);
    }

    .faq-list {
      display: grid;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
      border-radius: var(--radius);
      transition: background 260ms var(--ease), border-color 260ms var(--ease), padding 260ms var(--ease);
    }

    .faq-item:hover,
    .faq-item.active {
      padding-inline: 22px;
      border-color: rgba(100, 255, 95, 0.26);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .faq-question {
      width: 100%;
      min-height: 118px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 0;
      color: #fff;
      background: transparent;
      border: 0;
      cursor: pointer;
      text-align: left;
      font-size: clamp(24px, 2.5vw, 42px);
      font-weight: 600;
    }

    .faq-toggle {
      color: var(--muted);
      font-size: 42px;
      line-height: 1;
    }

    .faq-answer {
      display: none;
      padding: 0 70px 36px 0;
      color: var(--muted);
      font-size: clamp(19px, 1.6vw, 28px);
      line-height: 1.45;
      font-weight: 600;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-toggle {
      color: #fff;
    }

    .cta {
      padding: 130px 0;
      overflow: hidden;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
      gap: 60px;
      align-items: center;
    }

    .cta h2 {
      margin: 0 0 34px;
      max-width: 1120px;
      font-size: clamp(56px, 7vw, 128px);
      line-height: 0.94;
      font-weight: 900;
    }

    .cta-figure {
      min-height: 420px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 50% 40%, rgba(100, 255, 95, 0.18), transparent 42%),
        rgba(255, 255, 255, 0.04);
      font-size: clamp(120px, 12vw, 220px);
      color: var(--green);
    }

    .contact-section {
      padding: 110px 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.9fr);
      gap: 60px;
      align-items: start;
    }

    .contact-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      padding: clamp(24px, 3vw, 42px);
      border-radius: var(--radius);
    }

    .field {
      display: grid;
      gap: 9px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: #fff;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius);
      color: #fff;
      background: rgba(0, 0, 0, 0.38);
      outline: 0;
    }

    input {
      min-height: 56px;
      padding: 0 16px;
    }

    textarea {
      resize: vertical;
      min-height: 140px;
      padding: 16px;
    }

    input:focus,
    textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(100, 255, 95, 0.13);
    }

    .footer {
      padding: 44px 0;
      color: #fff;
      background: #000;
      border-top: 1px solid var(--line);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 30px;
      align-items: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      color: var(--muted);
      font-weight: 800;
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 700ms var(--ease), transform 700ms var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1180px) {
      .hero-grid,
      .featured-service,
      .mission,
      .proof-grid,
      .faq-layout,
      .cta-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .services-head,
      .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .round-arrow {
        justify-self: start;
      }

      .service-grid {
        grid-template-columns: 1fr;
      }

      .mission {
        min-height: auto;
      }

      .mission-panel {
        min-height: 520px;
      }

      .price-card.featured {
        transform: none;
      }
    }

    @media (max-width: 760px) {
      .wrap {
        width: min(100% - 28px, var(--max));
      }

      .site-header {
        top: 14px;
      }

      .brand-pill {
        min-height: 58px;
        gap: 10px;
        padding-right: 16px;
      }

      .mark {
        width: 48px;
        height: 48px;
        font-size: 18px;
      }

      .menu-button {
        font-size: 0;
        gap: 0;
      }

      .talk-pill {
        min-height: 46px;
        padding-left: 18px;
        font-size: 16px;
      }

      .arrow-dot {
        width: 34px;
        height: 34px;
      }

      .hero {
        min-height: auto;
        padding: 126px 0 50px;
      }

      .hero-grid {
        gap: 42px;
      }

      .hero h1 {
        font-size: clamp(50px, 15vw, 76px);
      }

      .client-proof {
        align-items: flex-start;
      }

      .section,
      .cta,
      .contact-section {
        padding: 78px 0;
      }

      .services-head,
      .pricing-grid,
      .footer-grid,
      .contact-form {
        grid-template-columns: 1fr;
      }

      .service-visual {
        min-height: 310px;
      }

      .service-visual span {
        width: 82px;
        height: 82px;
        font-size: 32px;
      }

      .service-card {
        min-height: auto;
      }

      .mission-panel {
        min-height: 460px;
        padding: 34px 20px;
      }

      .proof-grid {
        gap: 36px;
      }

      .logo-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .faq-question {
        min-height: 94px;
      }

      .faq-answer {
        padding-right: 0;
      }

      .footer-grid {
        justify-items: start;
      }
    }
