:root {
      --ink: #12151c;
      --muted: #5f6471;
      --paper: #f7f2ea;
      --cream: #fff7ed;
      --accent: #ff6a2b;
      --accent-2: #0f766e;
      --teal: #11AAA6;
      --line: rgba(18,21,28,0.08);
      --shadow: 0 18px 40px rgba(18,21,28,0.12);
      --radius-lg: 20px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --focus: 0 0 0 3px rgba(255,106,43,0.18);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Roboto Flex", system-ui, -apple-system, Segoe UI, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(1200px 600px at 85% -10%, rgba(255,106,43,0.16), transparent 60%),
        radial-gradient(900px 500px at 10% 5%, rgba(15,118,110,0.14), transparent 55%),
        var(--paper);
    }

    img { max-width: 100%; height: auto; }
    body { overflow-x: hidden; }
    a { color: inherit; }
    :focus-visible { outline: none; box-shadow: var(--focus); border-radius: 6px; }


    .container {
      width: min(1100px, 92vw);
      margin: 0 auto;
    }

    .section { padding: 100px 0; }

    .section-teal {
      background: #11AAA6;
    }

    .section-teal.section {
      padding: 70px 0;
    }


    .section-white {
      background: #ffffff;
    }

    .section-soft {
      background: #f4f6f8;
    }

    .section-white .section-title {
      color: #000000;
      text-align: left;
      font-size: 33px;
      line-height: 1.4;
    }

    .section-white .section-kicker {
      font-size: 15px;
      color: #11AAA6;
      text-align: left;
      margin-bottom: 15px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .section-white .section-rows {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px;
      align-items: start;
    }

    .section-white .row-container {
      max-width: 520px;
    }

    .section-white .row-container:last-child {
      max-width: none;
    }

    .section-white .row-content {
      margin-top: 42px;
    }

    .section-white .cards-panel {
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 18px;
      box-shadow: 0 16px 30px rgba(18, 21, 28, 0.08);
      padding: 24px;
    }

    .section-white .value-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .section-white .value-card {
      padding: 14px 16px;
      background: #CBECEB;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(18, 21, 28, 0.06);
      font-size: 14px;
      font-weight: 600;
      color: #1f1f1f;
    }

    .dark-container {
      background: #313131;
      border-radius: 15px;
      min-height: 120px;
      padding: 100px 32px;
    }

    .dark-container {
      margin-top: -100px;
    }

    .dark-container .dark-title {
      color: #ffffff;
      font-size: 33px;
      line-height: 1.3;
      margin: 0;
      text-align: center;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .dark-container .dark-subtitle {
      color: #ffffff;
      text-align: center;
      margin: 12px 0 0;
      font-size: 15px;
      line-height: 1.6;
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }

    .dark-container .dark-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 60px;
    }

    .dark-container .dark-box {
      min-height: 120px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 16px;
    }

    .dark-container .funnel-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .dark-container .funnel-stack {
      width: 100%;
      display: grid;
      gap: 10px;
      align-items: center;
    }

    .dark-container .funnel-block {
      margin: 0 auto;
      padding: 12px 14px;
      background: rgba(9, 9, 9, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      text-align: center;
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }

    .dark-container .funnel-block:hover {
      border-color: rgba(76, 187, 116, 0.6);
      background: rgba(76, 187, 116, 0.12);
    }

    .dark-container .funnel-block__title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .dark-container .funnel-block.is-active {
      background: rgba(76, 187, 116, 0.2);
      border-color: rgba(76, 187, 116, 0.7);
      box-shadow: 0 12px 26px rgba(76, 187, 116, 0.25);
    }

    .dark-container .funnel-block:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(76, 187, 116, 0.35);
    }

    .dark-container .funnel-detail {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
      color: #ffffff;
    }

    .dark-container .funnel-acc-item {
      background: rgba(9, 9, 9, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      padding: 12px 14px;
    }

    .dark-container .funnel-acc-title {
      list-style: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
    }

    .dark-container .funnel-acc-title::-webkit-details-marker {
      display: none;
    }

    .dark-container .funnel-acc-text {
      margin: 8px 0 0;
      font-size: 13px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
    }

    .dark-container .funnel-block:nth-child(1) { width: 100%; }
    .dark-container .funnel-block:nth-child(1) { transform: rotate(180deg); }
    .dark-container .funnel-block:nth-child(2) { width: 95%; }
    .dark-container .funnel-block:nth-child(3) { width: 90%; }
    .dark-container .funnel-block:nth-child(4) { width: 85%; }
    .dark-container .funnel-block:nth-child(5) { width: 80%; }
    .dark-container .funnel-block:nth-child(6) { width: 75%; }
    .dark-container .funnel-block:nth-child(7) { width: 70%; }

    .dark-container .funnel-block:nth-child(2),
    .dark-container .funnel-block:nth-child(3),
    .dark-container .funnel-block:nth-child(4),
    .dark-container .funnel-block:nth-child(5),
    .dark-container .funnel-block:nth-child(6),
    .dark-container .funnel-block:nth-child(7) {
      transform: rotate(180deg);
    }

    .dark-container .funnel-block__title {
      transform: rotate(180deg);
    }


    @media (max-width: 700px) {
      .dark-container .dark-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 900px) {
      .section-white .value-grid {
        grid-template-columns: 1fr;
      }

      .section-soft .difference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-split .split-grid {
        grid-template-columns: 1fr;
      }

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

      .industries-section .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .results-section .results-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .results-section .results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .why-section .why-grid {
        grid-template-columns: 1fr;
      }

      .framework-section .framework-grid {
        grid-template-columns: 1fr;
      }

      .resources-section .resources-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .section-soft .difference-grid {
        grid-template-columns: 1fr;
      }

      .section-soft .section-title {
        font-size: 28px;
      }

      .section-split .split-left .section-title {
        font-size: 28px;
      }

      .industries-section .industries-grid {
        grid-template-columns: 1fr;
      }

      .results-section .results-stats {
        grid-template-columns: 1fr;
      }

      .results-section .results-grid {
        grid-template-columns: 1fr;
      }

      .why-section .why-intro .section-title {
        font-size: 28px;
      }

      .framework-section .framework-visual .section-title {
        font-size: 28px;
      }

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

      .resources-section .resources-grid {
        grid-template-columns: 1fr;
      }

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

      .final-cta .final-grid {
        grid-template-columns: 1fr;
      }

      .final-cta .final-intro h2 {
        font-size: 28px;
      }
    }


    .section-white p {
      margin: 0 0 14px;
      color: #2a2a2a;
      line-height: 1.7;
    }

    .section-white .section-list {
      margin: 8px 0 16px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-white .section-list li {
      position: relative;
      padding: 16px;
      color: #1f1f1f;
      line-height: 1.6;
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(18, 21, 28, 0.06);
    }

    .section-white .issue-cards {
      display: grid;
      gap: 16px;
    }

    .section-white .issue-card {
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 14px;
      box-shadow: 0 12px 24px rgba(18, 21, 28, 0.08);
      padding: 18px 20px;
      --issue-icon-size: 28px;
      --issue-icon-gap: 12px;
    }

    .section-white .issue-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: #111111;
      display: flex;
      align-items: center;
      gap: var(--issue-icon-gap);
    }

    .section-white .issue-card p {
      margin: 0;
      color: #2a2a2a;
      line-height: 1.7;
      margin-left: calc(var(--issue-icon-size) + var(--issue-icon-gap));
    }

    .section-white .issue-icon {
      width: var(--issue-icon-size);
      height: var(--issue-icon-size);
      stroke: #FF610B;
      stroke-width: 1.8;
      fill: none;
      flex: 0 0 auto;
    }

    .section-soft .section-heading {
      max-width: 760px;
      margin-bottom: 36px;
    }

    .section-soft .section-title {
      margin: 0 0 12px;
      font-size: 34px;
      line-height: 1.35;
      color: #0d0f14;
    }

    .section-soft .section-intro {
      margin: 0;
      color: #3a3f4a;
      line-height: 1.7;
      font-size: 16px;
    }

    .section-soft .difference-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .section-soft .difference-card {
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 18px;
      padding: 22px 22px 24px;
      box-shadow: 0 18px 36px rgba(18, 21, 28, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .section-soft .difference-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 40px rgba(18, 21, 28, 0.12);
      border-color: rgba(17, 170, 166, 0.3);
    }

    .section-soft .difference-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(17, 170, 166, 0.1);
      border: 1px solid rgba(17, 170, 166, 0.18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .section-soft .difference-icon svg {
      width: 24px;
      height: 24px;
      stroke: #0f766e;
      stroke-width: 1.8;
      fill: none;
    }

    .section-soft .difference-card h3 {
      margin: 14px 0 8px;
      font-size: 18px;
      color: #0f1218;
    }

    .section-soft .difference-card p {
      margin: 0;
      color: #2f343f;
      line-height: 1.7;
    }

    .section-soft .difference-foot {
      margin: 28px 0 0;
      max-width: 760px;
      font-weight: 600;
      color: #1d2128;
    }

    .difference-section {
      background: transparent;
    }

    .section-split .split-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
      gap: 44px;
      align-items: start;
    }

    .section-split .split-left .section-title {
      margin: 0 0 14px;
      font-size: 34px;
      line-height: 1.35;
    }

    .section-split .split-intro {
      margin: 0 0 22px;
      color: #3a3f4a;
      line-height: 1.7;
      font-size: 16px;
      max-width: 520px;
    }

    .section-split .value-stack {
      display: grid;
      gap: 16px;
    }

    .section-split .value-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 20px;
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 16px;
      box-shadow: 0 14px 28px rgba(18, 21, 28, 0.08);
    }

    .section-split .value-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(17, 170, 166, 0.1);
      border: 1px solid rgba(17, 170, 166, 0.18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .section-split .value-icon svg {
      width: 22px;
      height: 22px;
      stroke: #0f766e;
      stroke-width: 1.8;
      fill: none;
    }

    .section-split .value-item h3 {
      margin: 0 0 6px;
      font-size: 17px;
      color: #0f1218;
    }

    .section-split .value-item p {
      margin: 0;
      color: #2f343f;
      line-height: 1.7;
    }

    .section-split .split-foot {
      margin: 20px 0 0;
      font-weight: 600;
      color: #1d2128;
      max-width: 620px;
    }

    .services-section .section-heading {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .services-section {
      background:
        radial-gradient(900px 520px at 80% -10%, rgba(17, 170, 166, 0.08), transparent 60%),
        #f7f9fb;
    }

    .services-section .services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .services-section .service-card {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 18px;
      padding: 22px 22px 24px;
      box-shadow: 0 16px 34px rgba(18, 21, 28, 0.08);
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      backdrop-filter: blur(6px);
    }

    .services-section .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 40px rgba(18, 21, 28, 0.12);
      border-color: rgba(17, 170, 166, 0.28);
    }

    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    .services-section .service-card.reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
    .services-section .service-card.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
    .services-section .service-card.reveal-on-scroll:nth-child(3) { transition-delay: 0.15s; }
    .services-section .service-card.reveal-on-scroll:nth-child(4) { transition-delay: 0.2s; }

    .services-section .service-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: rgba(17, 170, 166, 0.1);
      border: 1px solid rgba(17, 170, 166, 0.18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .services-section .service-icon svg {
      width: 24px;
      height: 24px;
      stroke: #0f766e;
      stroke-width: 1.8;
      fill: none;
    }

    .services-section .service-card h3 {
      margin: 0;
      font-size: 18px;
      color: #0f1218;
    }

    .services-section .service-card p {
      margin: 0;
      color: #2f343f;
      line-height: 1.7;
    }

    .services-section .service-link {
      margin-top: auto;
      font-weight: 600;
      color: #0f766e;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .services-section .service-link::after {
      content: "→";
      font-weight: 700;
    }

    .services-section .service-link:hover {
      color: #0b5d57;
    }

    .services-section .services-foot {
      margin: 22px 0 0;
      font-weight: 600;
      color: #1d2128;
    }

    .industries-section .section-heading {
      max-width: 820px;
      margin-bottom: 34px;
    }

    .industries-section .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .industries-section .industry-card {
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 18px;
      padding: 20px 20px 22px;
      box-shadow: 0 16px 32px rgba(18, 21, 28, 0.08);
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .industries-section .industry-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 36px rgba(18, 21, 28, 0.12);
      border-color: rgba(17, 170, 166, 0.26);
    }

    .industries-section .industry-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(17, 170, 166, 0.08);
      border: 1px solid rgba(17, 170, 166, 0.16);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .industries-section .industry-icon svg {
      width: 22px;
      height: 22px;
      stroke: #0f766e;
      stroke-width: 1.8;
      fill: none;
    }

    .industries-section .industry-card h3 {
      margin: 0;
      font-size: 17px;
      color: #0f1218;
    }

    .industries-section .industry-card p {
      margin: 0;
      color: #2f343f;
      line-height: 1.7;
    }

    .industries-section .industry-link {
      margin-top: auto;
      font-weight: 600;
      color: #0f766e;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .industries-section .industry-link::after {
      content: "→";
      font-weight: 700;
    }

    .industries-section .industry-link:hover {
      color: #0b5d57;
    }

    .industries-section .industries-foot {
      margin: 22px 0 0;
      font-weight: 600;
      color: #1d2128;
    }

    .results-section .section-heading {
      max-width: 760px;
      margin-bottom: 26px;
    }

    .results-section .results-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-bottom: 28px;
    }

    .results-section .results-stat {
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 16px;
      padding: 16px 18px;
      box-shadow: 0 14px 26px rgba(18, 21, 28, 0.06);
    }

    .results-section .results-stat__value {
      font-size: 24px;
      font-weight: 700;
      color: #0f1218;
    }

    .results-section .results-stat__label {
      font-size: 13px;
      color: #5b6170;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 6px;
    }

    .results-section .results-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .results-section .result-card {
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 18px;
      padding: 22px 22px 24px;
      box-shadow: 0 18px 34px rgba(18, 21, 28, 0.08);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .results-section .result-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #0f766e;
      font-weight: 700;
    }

    .results-section .result-card h3 {
      margin: 0;
      font-size: 18px;
      color: #0f1218;
    }

    .results-section .result-metrics {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
    }

    .results-section .result-metrics li {
      padding-left: 16px;
      position: relative;
      color: #2f343f;
      line-height: 1.6;
    }

    .results-section .result-metrics li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #0f766e;
      position: absolute;
      left: 0;
      top: 10px;
    }

    .results-section .result-card p {
      margin: 0;
      color: #2f343f;
      line-height: 1.7;
    }

    .results-section .result-link {
      margin-top: auto;
      font-weight: 600;
      color: #0f766e;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .results-section .result-link::after {
      content: "→";
      font-weight: 700;
    }

    .results-section .result-link:hover {
      color: #0b5d57;
    }

    .results-section .results-foot {
      margin: 22px 0 0;
      font-weight: 600;
      color: #1d2128;
    }

    .why-section .why-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
      gap: 40px;
      align-items: start;
    }

    .why-section .why-intro .section-title {
      margin: 0 0 14px;
      font-size: 34px;
      line-height: 1.35;
    }

    .why-section .why-intro .section-intro {
      margin: 0 0 22px;
      color: #3a3f4a;
      line-height: 1.7;
      font-size: 16px;
    }

    .why-section .why-points {
      display: grid;
      gap: 14px;
    }

    .why-section .why-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 16px 18px;
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 16px;
      box-shadow: 0 14px 26px rgba(18, 21, 28, 0.08);
    }

    .why-section .why-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(17, 170, 166, 0.1);
      border: 1px solid rgba(17, 170, 166, 0.18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .why-section .why-icon svg {
      width: 20px;
      height: 20px;
      stroke: #0f766e;
      stroke-width: 1.8;
      fill: none;
    }

    .why-section .why-card h3 {
      margin: 0 0 6px;
      font-size: 16px;
      color: #0f1218;
    }

    .why-section .why-card p {
      margin: 0;
      color: #2f343f;
      line-height: 1.7;
    }

    .why-section .why-foot {
      margin: 24px 0 0;
      font-weight: 600;
      color: #1d2128;
      max-width: 760px;
    }

    .framework-section .framework-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
      gap: 36px;
      align-items: start;
    }

    .framework-section .framework-visual .section-title {
      margin: 0 0 14px;
      font-size: 34px;
      line-height: 1.35;
    }

    .framework-section .framework-visual .section-intro {
      margin: 0 0 22px;
      color: #3a3f4a;
      line-height: 1.7;
      font-size: 16px;
    }

    .framework-section .pipeline {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 14px 28px rgba(18, 21, 28, 0.08);
    }

    .framework-section .pipeline-step {
      padding: 8px 12px;
      background: rgba(17, 170, 166, 0.08);
      border: 1px solid rgba(17, 170, 166, 0.18);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      color: #0f1218;
      white-space: nowrap;
    }

    .framework-section .pipeline-arrow {
      color: #0f766e;
      font-weight: 700;
    }

    .framework-section .framework-steps {
      display: grid;
      gap: 12px;
    }

    .framework-section .framework-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px 18px;
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 16px;
      box-shadow: 0 14px 26px rgba(18, 21, 28, 0.08);
    }

    .framework-section .step-badge {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: rgba(17, 170, 166, 0.12);
      border: 1px solid rgba(17, 170, 166, 0.22);
      color: #0f766e;
      font-weight: 700;
      display: grid;
      place-items: center;
      font-size: 14px;
    }

    .framework-section .framework-card h3 {
      margin: 0 0 6px;
      font-size: 16px;
      color: #0f1218;
    }

    .framework-section .framework-card p {
      margin: 0;
      color: #2f343f;
      line-height: 1.7;
    }

    .framework-section .framework-footer {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
    }

    .framework-section .framework-footer p {
      margin: 0;
      font-weight: 600;
      color: #1d2128;
      max-width: 620px;
    }

    .resources-section .section-heading {
      max-width: 820px;
      margin-bottom: 34px;
    }

    .resources-section .resources-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .resources-section .resource-card {
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 18px;
      padding: 22px 22px 24px;
      box-shadow: 0 16px 32px rgba(18, 21, 28, 0.08);
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .resources-section .resource-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 36px rgba(18, 21, 28, 0.12);
      border-color: rgba(17, 170, 166, 0.26);
    }

    .resources-section .resource-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(17, 170, 166, 0.08);
      border: 1px solid rgba(17, 170, 166, 0.16);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .resources-section .resource-icon svg {
      width: 22px;
      height: 22px;
      stroke: #0f766e;
      stroke-width: 1.8;
      fill: none;
    }

    .resources-section .resource-card h3 {
      margin: 0;
      font-size: 17px;
      color: #0f1218;
    }

    .resources-section .resource-card p {
      margin: 0;
      color: #2f343f;
      line-height: 1.7;
    }

    .resources-section .resource-link {
      margin-top: auto;
      font-weight: 600;
      color: #0f766e;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .resources-section .resource-link::after {
      content: "→";
      font-weight: 700;
    }

    .resources-section .resource-link:hover {
      color: #0b5d57;
    }

    .resources-section .resources-foot {
      margin: 22px 0 0;
      font-weight: 600;
      color: #1d2128;
    }

    .faq-section .section-heading {
      max-width: 820px;
      margin-bottom: 24px;
    }

    .faq-section .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-section .faq-item {
      background: #ffffff;
      border: 1px solid rgba(18, 21, 28, 0.08);
      border-radius: 16px;
      padding: 16px 18px;
      box-shadow: 0 14px 26px rgba(18, 21, 28, 0.06);
    }

    .faq-section .faq-item summary {
      cursor: pointer;
      font-weight: 600;
      color: #0f1218;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .faq-section .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-section .faq-item summary::after {
      content: "+";
      font-weight: 700;
      color: #0f766e;
      font-size: 18px;
    }

    .faq-section .faq-item[open] summary::after {
      content: "–";
    }

    .faq-section .faq-item p {
      margin: 10px 0 0;
      color: #2f343f;
      line-height: 1.7;
    }

    .faq-section .faq-footer {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
    }

    .faq-section .faq-footer p {
      margin: 0;
      color: #2f343f;
      max-width: 680px;
      font-weight: 600;
    }

    .timeline-section {
      background: #f8fafc;
      position: relative;
    }

    .blueprint-grid {
      background-image:
        linear-gradient(rgba(17, 170, 166, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 170, 166, 0.06) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .timeline-intro {
      margin-bottom: 48px;
      max-width: 880px;
    }

    .timeline-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .timeline-kicker__line {
      height: 1px;
      width: 48px;
      background: var(--accent-2);
    }

    .timeline-kicker__label {
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #11AAA6;
      font-weight: 500;
    }

    .timeline-title {
      font-size: clamp(28px, 3.2vw, 44px);
      line-height: 1.2;
      margin: 0 0 14px;
      color: #111111;
    }

    .timeline-subtitle {
      margin: 0;
      color: #5b6470;
      font-size: 17px;
      max-width: 620px;
    }

    .timeline {
      position: relative;
      padding: 12px 0 0;
    }

    .timeline__line {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: rgba(18, 21, 28, 0.1);
      transform: translateX(-50%);
    }

    .timeline__stack {
      display: grid;
      gap: 28px;
      position: relative;
    }

    .timeline-step {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      gap: 18px;
      align-items: center;
    }

    .timeline-step__content {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid rgba(18, 21, 28, 0.08);
      box-shadow: 0 16px 40px rgba(18, 21, 28, 0.08);
      padding: 18px 20px;
      max-width: 460px;
    }

    .timeline-step__content h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: #1f1f1f;
    }

    .timeline-step__content p {
      margin: 0;
      font-size: 14px;
      color: #57606f;
      line-height: 1.6;
    }

    .timeline-step__content.is-right {
      justify-self: end;
      text-align: right;
    }

    .timeline-step__content.is-left {
      justify-self: start;
      text-align: left;
    }

    .timeline-step__badge {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-weight: 700;
      color: #ffffff;
      font-size: 20px;
      border: 4px solid #ffffff;
      box-shadow: 0 16px 30px rgba(18, 21, 28, 0.18);
      background: #6b7280;
      z-index: 1;
    }

    .timeline-step__badge.is-primary {
      background: var(--accent-2);
    }

    .timeline-step__badge.is-muted {
      background: #4b5563;
    }

    .timeline-step__badge.is-accent {
      background: var(--accent);
      box-shadow: 0 18px 36px rgba(255, 97, 11, 0.35);
    }

    .timeline-step__tag {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--accent-2);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .timeline-step__tag.is-left {
      justify-self: start;
    }

    .timeline-step__tag.is-right {
      justify-self: end;
    }

    .timeline-step__tag.is-accent {
      color: var(--accent);
    }

    .timeline-cta {
      margin-top: 40px;
      text-align: center;
    }

    @media (max-width: 900px) {
      .timeline__line {
        left: 18px;
        transform: none;
      }

      .timeline-step {
        grid-template-columns: auto 1fr;
        gap: 16px;
      }

      .timeline-step__badge {
        grid-row: 1 / span 2;
      }

      .timeline-step__content {
        max-width: none;
      }

      .timeline-step__content.is-right,
      .timeline-step__content.is-left {
        justify-self: start;
        text-align: left;
      }

      .timeline-step__tag {
        order: 3;
        justify-self: start;
        margin-left: 74px;
      }
    }

    @media (max-width: 900px) {
      .section-white .section-rows {
        grid-template-columns: 1fr;
      }

      .section-white .row-container {
        max-width: none;
      }
    }

    @media (max-width: 1024px) {
      .section { padding: 50px 0; }
      .section-teal.section { padding: 40px 0; }
    }

    @media (max-width: 700px) {
      .section { padding: 25px 0; }
      .section-teal.section { padding: 20px 0; }
    }

    .stats-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(140px, 1fr));
      gap: 0;
      align-items: center;
      text-align: center;
      color: #ffffff;
    }

    .stat-block {
      padding: 28px 16px;
      position: relative;
    }

    .stat-block + .stat-block::before {
      content: "";
      position: absolute;
      left: 0;
      top: 15%;
      bottom: 15%;
      width: 1px;
      background: rgba(255, 255, 255, 0.5);
    }

    .stat-number {
      font-size: 80px;
      line-height: 1;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 15px;
      color: #ffffff;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
    }

    .card {
      background: #fff;
      padding: 18px;
      border-radius: var(--radius-md);
      border: 1px solid var(--line);
      box-shadow: 0 10px 24px rgba(18,21,28,0.08);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      border-radius: 5px;
      background: var(--accent);
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      border: none;
      cursor: pointer;
      box-shadow: 0 12px 22px rgba(255,106,43,0.3);
    }

    .btn.ghost {
      background: transparent;
      border: 1px solid var(--line);
      color: var(--ink);
      box-shadow: none;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(15,118,110,0.12);
      color: var(--accent-2);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.6px;
      text-transform: uppercase;
    }

    h1, h2, h3 {
      font-family: "Roboto Flex", system-ui, -apple-system, Segoe UI, sans-serif;
      margin: 0 0 12px;
    }

    h1 { font-size: clamp(30px, 5vw, 56px); }
    p { color: var(--muted); line-height: 1.7; margin: 0 0 16px; }

    .top-bar {
      background: var(--teal);
      color: #ffffff;
      font-size: 13px;
    }

    .top-bar .bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 8px 0;
    }

    .top-bar .contact-info {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .top-bar .contact-info a { color: #ffffff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
    .top-bar .contact-info svg { width: 14px; height: 14px; fill: currentColor; }

    .social-mini {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .social-mini a {
      color: #ffffff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.12);
      transition: background 0.2s ease, color 0.2s ease;
    }

    .social-mini a:hover { color: #FF610B; background: rgba(255, 97, 11, 0.2); }
    .social-mini svg { width: 14px; height: 14px; fill: currentColor; }

    .site-header {
      position: sticky;
      top: 0;
      backdrop-filter: blur(6px);
      background: #ffffff;
      border-bottom: 1px solid var(--line);
      z-index: 10;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 16px 0;
    }

    .logo {
      display: inline-flex;
      align-items: center;
    }

    .logo img { height: 52px; width: auto; display: block; }

    .nav-actions { display: flex; align-items: center; gap: 12px; }

    .nav-links {
      font-size: 14px;
      color: var(--muted);
    }

    .nav-links ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .nav-links li {
      position: relative;
      padding-bottom: 6px;
    }

    .nav-links a {
      color: inherit;
      text-decoration: none;
      padding: 8px 6px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 260px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 14px;
      box-shadow: var(--shadow);
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 20;
    }

    .submenu ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 4px;
    }

    .submenu a { padding: 6px 8px; display: block; color: var(--muted); border-radius: 8px; }
    .submenu a:hover { background: rgba(255,106,43,0.12); color: var(--ink); }

    .nav-links li:hover .submenu,
    .nav-links li:focus-within .submenu,
    .nav-links li.open .submenu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .menu-toggle {
      display: none;
      background: transparent;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 8px 10px;
      cursor: pointer;
      align-items: center;
      gap: 8px;
      color: var(--ink);
    }

    .menu-toggle .bars {
      display: grid;
      gap: 4px;
    }

    .menu-toggle .bars span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--ink);
    }

    .hero {
      padding: 70px 0 50px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
      align-items: center;
    }

    .hero-section {
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("../images/Home Page Banner background img.avif") center center/100% 100% no-repeat;
      opacity: 0.15;
      z-index: 1;
    }

    .hero-section .hero {
      min-height: 65vh;
      padding-top: 60px;
      padding-bottom: 60px;
      position: relative;
      z-index: 2;
    }


    .hero-content {
      text-align: center;
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      width: 100%;
    }

    .hero-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 40px 0;
    }

    .hero-title {
      color: #11AAA6;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 0;
      overflow-wrap: anywhere;
      word-break: break-word;
      hyphens: auto;
    }

    .hero-headline {
      color: #000000;
      font-size: clamp(32px, 5vw, 50px);
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 0;
      overflow-wrap: anywhere;
      word-break: break-word;
      hyphens: auto;
    }

    .hero-headline .line {
      display: block;
    }

    .accent-text {
      color: #FF610B;
      font-style: inherit;
    }

    .hero-text {
      color: #000000;
      font-size: 18px;
      margin-bottom: 0;
      overflow-wrap: anywhere;
      word-break: break-word;
      hyphens: auto;
    }

    .hero-partner-title {
      font-size: 16px;
      text-transform: uppercase;
      color: #313131;
      letter-spacing: 0.6px;
      margin: 0 0 12px;
    }

    .partner-marquee {
      position: relative;
      overflow: hidden;
      width: 100%;
      padding: 6px 0;
      mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    }

    .partner-marquee::before,
    .partner-marquee::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 60px;
      pointer-events: none;
      z-index: 2;
    }

    .partner-marquee::before {
      left: 0;
      background: linear-gradient(90deg, #ffffff, transparent);
    }

    .partner-marquee::after {
      right: 0;
      background: linear-gradient(270deg, #ffffff, transparent);
    }

    .partner-track {
      display: flex;
      gap: 48px;
      width: max-content;
      animation: marquee 22s linear infinite;
    }

    .partner-group {
      display: flex;
      gap: 36px;
      align-items: center;
    }

    .partner-group img {
      height: 90px;
      width: auto;
      opacity: 0.9;
      filter: grayscale(100%);
    }


    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .btn-dark {
      background: #313131;
      color: #ffffff;
      box-shadow: none;
    }

    .btn-outline-dark {
      background: transparent;
      color: #313131;
      border: 1px solid #313131;
      box-shadow: none;
    }

    .btn .icon {
      width: 16px;
      height: 16px;
      fill: currentColor;
      flex: 0 0 auto;
    }

    .hero-card {
      background: var(--cream);
      padding: 24px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 14px;
      margin-top: 16px;
    }

    .stat {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 14px;
      border: 1px solid var(--line);
    }

    .stat strong { font-size: 20px; display: block; }

    .logos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 12px;
      margin: 40px 0;
    }

    .logo-tile {
      border: 1px dashed var(--line);
      border-radius: var(--radius-sm);
      padding: 14px;
      text-align: center;
      color: var(--muted);
      font-size: 13px;
      background: rgba(255,255,255,0.6);
    }

    .cta {
      background: linear-gradient(135deg, rgba(255,106,43,0.16), rgba(15,118,110,0.14));
      border-radius: 22px;
      padding: 28px;
      border: 1px solid var(--line);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      align-items: center;
    }

    .contact-form label {
      display: block;
      font-size: 14px;
      color: var(--muted);
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      margin-top: 6px;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid var(--line);
      font: inherit;
      background: #fff;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-form input:hover,
    .contact-form textarea:hover { border-color: rgba(18,21,28,0.2); }

    .contact-form input:focus,
    .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: var(--focus); }

    .contact-note { font-size: 12px; color: var(--muted); margin-top: 10px; }

    .final-cta {
      background:
        radial-gradient(900px 500px at 90% 10%, rgba(17, 170, 166, 0.22), transparent 60%),
        radial-gradient(700px 420px at 10% 20%, rgba(255, 106, 43, 0.18), transparent 55%),
        #0e1118;
      color: #ffffff;
    }

    .final-cta .final-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
      gap: 32px;
      align-items: start;
    }

    .final-cta .final-intro h2 {
      margin: 0 0 14px;
      font-size: 34px;
      line-height: 1.3;
      color: #ffffff;
    }

    .final-cta .final-intro p {
      margin: 0 0 18px;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.7;
      font-size: 16px;
    }

    .final-cta .final-trust {
      list-style: none;
      padding: 0;
      margin: 0 0 18px;
      display: grid;
      gap: 10px;
    }

    .final-cta .final-trust li {
      position: relative;
      padding-left: 22px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
    }

    .final-cta .final-trust li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #11AAA6;
      font-weight: 700;
    }

    .final-cta .final-note {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
    }

    .final-cta .final-form {
      background: #ffffff;
      color: #111111;
      border-radius: 20px;
      padding: 24px;
      border: 1px solid rgba(18, 21, 28, 0.1);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
      display: grid;
      gap: 10px;
    }

    .final-cta .final-form h3 {
      margin: 0 0 4px;
      font-size: 20px;
      color: #0f1218;
    }

    .final-cta .final-form label {
      font-size: 14px;
      color: #4b5160;
    }

    .final-cta .final-form input,
    .final-cta .final-form textarea {
      width: 100%;
      margin-top: 6px;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(18, 21, 28, 0.14);
      font: inherit;
      background: #fff;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .final-cta .final-form select {
      width: 100%;
      margin-top: 6px;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid rgba(18, 21, 28, 0.14);
      font: inherit;
      background: #fff;
      color: #111111;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .final-cta .final-form input:focus,
    .final-cta .final-form textarea:focus,
    .final-cta .final-form select:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: var(--focus);
    }

    .final-cta .phone-field {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 10px;
      align-items: center;
    }

    @media (max-width: 640px) {
      .final-cta .phone-field {
        grid-template-columns: 1fr;
      }
    }

    .final-cta .final-form .btn {
      margin-top: 6px;
      width: 100%;
      justify-content: center;
    }

    .final-cta .final-privacy {
      font-size: 12px;
      color: #6b7280;
    }

    footer {
      padding: 101px 0 125px;
      color: #ffffff;
      font-size: 14px;
      background-image:
        linear-gradient(rgba(10, 12, 18, 0.65), rgba(10, 12, 18, 0.65)),
        url("../images/Footer Background.avif");
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      line-height: 1.7;
    }

    .footer-inner { width: 100%; max-width: none; padding: 0 4vw; }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
      gap: 18px;
      margin-bottom: 18px;
    }

    .footer-title {
      font-size: 16px;
      margin: 0 0 10px;
      color: #11AAA6;
    }

    .footer-links { list-style: none; margin: 0; padding: 0; }
    .footer-links li + li { margin-top: 6px; }
    .footer-links a { color: #ffffff; text-decoration: none; }
    .footer-links a:hover { color: #FF610B; }

    .footer-about { font-size: 15px; padding-left: 50px; }

    .footer-logo {
      display: block;
      width: min(220px, 100%);
      height: auto;
      margin-bottom: 10px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 12px;
      padding-left: 50px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.12);
      color: #ffffff;
      text-decoration: none;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .footer-social a:hover { background: rgba(255, 97, 11, 0.2); color: #FF610B; }
    .footer-social svg { width: 18px; height: 18px; fill: currentColor; }

    .footer-secondary {
      background: linear-gradient(180deg, #1a1a1f 0%, #050505 100%);
      color: #ffffff;
      border-top: none;
      text-align: center;
      padding: 14px 4vw;
    }

    .footer-secondary a { color: #ffffff; text-decoration: none; }
    .footer-secondary a:hover { color: #FF610B; }

    .reveal { opacity: 0; transform: translateY(16px); animation: rise 0.8s ease-out forwards; }
    .reveal.delay-1 { animation-delay: 0.1s; }
    .reveal.delay-2 { animation-delay: 0.2s; }
    .reveal.delay-3 { animation-delay: 0.3s; }

    @keyframes rise { to { opacity: 1; transform: translateY(0); } }

    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 800px) {
      .nav-links { display: none; }
      .menu-toggle { display: inline-flex; }
      .nav { flex-direction: row; align-items: center; justify-content: space-between; }
      .nav-actions { justify-content: flex-end; }
      .nav-actions .btn { display: none; }
      .logo { justify-content: flex-start; }
      .menu-toggle { margin-left: auto; }
      .nav-links.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        padding: 12px 4vw 16px;
      }

      .nav-links ul { flex-direction: column; align-items: flex-start; gap: 6px; }
      .submenu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: none; padding: 6px 0 0; }
    }

    @media (max-width: 700px) {
      .hero { padding-top: 40px; }
      .top-bar { display: none; }
      .hero-section .hero { min-height: auto; padding-top: 40px; padding-bottom: 40px; }
      .hero-content { align-items: flex-start; text-align: left; width: 100%; }
      .hero-title { font-size: 15px; text-align: left; }
      .hero-headline { font-size: 26px; line-height: 1.3; text-align: left; }
      .hero-text { font-size: 15px; text-align: left; }
      .hero-cta { margin: 18px 0; gap: 10px; justify-content: flex-start; width: 100%; }
      .hero-cta .btn { width: 100%; justify-content: center; }
      .hero-partner-title { text-align: left; font-size: 13px; }
      .partner-track { gap: 20px; animation-duration: 26s; }
      .partner-group img { height: 48px; }
    }

    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; }
      .hero-content { align-items: flex-start; text-align: left; padding: 0 12px; max-width: 100%; }
      .partner-marquee { width: 100%; }
    }

    @media (max-width: 700px) {
      .container {
        width: 100%;
        padding: 0 16px;
      }

      .hero-content { padding: 0; }
      .hero-title,
      .hero-headline,
      .hero-headline .line,
      .hero-text {
        max-width: 100%;
        width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
        line-break: normal;
      }

      .hero-section,
      .hero,
      .hero-content,
      .hero-cta,
      .partner-marquee {
        max-width: 100%;
        overflow-x: hidden;
      }
    }

    @media (max-width: 600px) {
      .footer-inner { padding: 0 6vw; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-about, .footer-social { padding-left: 0; }
    }

    @media (max-width: 700px) {
      .stats-strip {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
      }

      .stat-number {
        font-size: 48px;
      }

      .stat-label {
        font-size: 13px;
      }

      .stat-block + .stat-block::before {
        display: none;
      }
    }

    @media (max-width: 420px) {
      .stats-strip {
        grid-template-columns: 1fr;
      }
    }
