﻿    :root {
      --primary: #0874e8;
      --primary-dark: #064fa8;
      --primary-deep: #052f66;
      --accent: #ef2b2d;
      --text: #10233d;
      --muted: #5c6f84;
      --border: #d9e6f5;
      --surface: #ffffff;
      --surface-soft: #f5f9ff;
      --footer: #032c58;
      --shadow: 0 18px 50px rgba(15, 61, 113, 0.10);
      --radius: 24px;
      --container: min(1180px, calc(100% - 40px));
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.55;
      overflow-x: hidden;
    }

    img {
      display: block;
      width: 100%;
      object-fit: cover;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: var(--container);
      margin-inline: auto;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -80px;
      z-index: 9999;
      padding: 12px 16px;
      background: #fff;
      color: var(--primary-dark);
      border-radius: 10px;
      box-shadow: var(--shadow);
      transition: top .2s ease;
    }

    .skip-link:focus {
      top: 16px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(16, 35, 61, .98);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(129, 161, 199, .24);
    }

    .header-inner {
      min-height: 78px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 34px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 238px;
    }

    .brand-logo {
      width: clamp(190px, 24vw, 190px);
      height: auto;
      object-fit: contain;
    }

    .brand-mark {
      position: relative;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      color: var(--primary);
      font-size: 32px;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      left: 5px;
      bottom: 1px;
      width: 38px;
      height: 6px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--accent), #fff 48%, var(--primary));
      transform: rotate(8deg);
      box-shadow: 0 6px 0 -2px var(--accent);
    }

    .brand-copy small {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .04em;
      color: #3f536a;
      text-transform: uppercase;
    }

    .brand-copy strong {
      display: block;
      font-family: "Manrope", sans-serif;
      font-size: 21px;
      line-height: 1.1;
      color: var(--primary-deep);
      letter-spacing: -.04em;
    }

    .main-nav {
      justify-self: center;
    }

    .main-nav ul {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .main-nav a {
      position: relative;
      display: inline-block;
      padding: 28px 0 24px;
      font-size: 12px;
      font-weight: 700;
      color: rgba(232, 242, 255, .92);
      text-transform: uppercase;
      letter-spacing: .02em;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 15px;
      height: 3px;
      border-radius: 3px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .2s ease;
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
      transform: scaleX(1);
    }

    .header-social {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .social-mini {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #10233d;
      background: #ffffff;
      font-size: 14px;
      transition: transform .2s ease, background .2s ease;
    }

    .social-mini:hover {
      transform: translateY(-2px);
      background: #dbe9fb;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 12px;
      background: rgba(255, 255, 255, .12);
      color: #ffffff;
      cursor: pointer;
    }

    .hero {
      position: relative;
      min-height: 490px;
      isolation: isolate;
      overflow: hidden;
      background: url("../img/banner.png") center right /cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .66) 22%, rgba(255, 255, 255, .30) 42%, rgba(255, 255, 255, 0) 60%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-inner {
      min-height: 490px;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      align-self: center;
      padding: 70px 0 56px;
      max-width: 530px;
    }

    .campaign-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(8, 115, 232, 0.12);
      color: var(--primary-dark);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 16px;
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .hero-kicker::before {
      content: "";
      width: 34px;
      height: 3px;
      border-radius: 10px;
      background: var(--accent);
    }

    .hero h1 {
      max-width: 510px;
      font-family: "Manrope", sans-serif;
      font-size: clamp(40px, 5vw, 67px);
      line-height: .98;
      letter-spacing: -.055em;
      color: #11253f;
    }

    .hero h1 strong {
      color: var(--primary);
    }

    .hero h1 .script {
      display: block;
      margin-top: 4px;
      font-family: "Pacifico", cursive;
      font-size: 1.02em;
      font-weight: 400;
      line-height: 1.05;
      color: #0674e8;
      letter-spacing: -.02em;
      transform: rotate(-2deg);
      text-shadow: 0 4px 20px rgba(0, 98, 210, .12);
    }

    .hero h1 .script::after {
      content: "";
      display: block;
      width: 66%;
      height: 6px;
      margin: 4px 0 0 18px;
      border-radius: 99px;
      background: var(--accent);
      transform: skewX(-24deg);
    }

    .hero-copy p {
      max-width: 470px;
      margin: 24px 0 28px;
      font-size: 16px;
      color: #3c5269;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .02em;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(0, 101, 221, .18);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, #0a7bf1, #0061cb);
    }

    .btn-outline {
      color: var(--primary-dark);
      background: #fff;
      border-color: #76b6f5;
    }

    .section {
      padding: 2rem 0;
    }

    .section-soft {
      background: linear-gradient(180deg, #f7fbff, #fff);
    }

    .section-title {
      margin-bottom: 28px;
      font-family: "Manrope", sans-serif;
      font-size: clamp(28px, 3vw, 39px);
      line-height: 1.1;
      letter-spacing: -.035em;
      color: var(--primary-deep);
    }

    .section-title span {
      color: var(--primary);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 12px;
      font-weight: 800;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .eyebrow::before {
      content: "";
      width: 36px;
      height: 3px;
      border-radius: 99px;
      background: var(--accent);
    }

    .about-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
      gap: 28px;
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: #fff;
      box-shadow: var(--shadow);
      align-items: center;
    }

    .about-copy {
      padding: 10px 4px 8px;
    }

    .about-copy p {
      margin-bottom: 16px;
      color: #455b72;
      font-size: 15px;
    }

    .about-copy p strong {
      color: var(--text);
    }

    .about-points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 26px 0 28px;
    }

    .about-point {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 11px;
      align-items: start;
    }

    .about-point-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #0b80f3, #0565d3);
      color: #fff;
      font-size: 17px;
      box-shadow: 0 8px 20px rgba(5, 103, 215, .18);
    }

    .about-point h3 {
      margin: 1px 0 4px;
      font-size: 14px;
      color: var(--primary-dark);
    }

    .about-point p {
      margin: 0;
      font-size: 12px;
      color: #687b8e;
    }

    .about-gallery {
      align-self: stretch;
    }

    .about-gallery figure {
      height: 100%;
      overflow: hidden;
      border-radius: 18px;
      background: #e9f2fb;
    }

    .about-gallery img {
      height: 100%;
      object-position: center;
      transition: transform .4s ease;
    }

    .about-gallery img {
      aspect-ratio: 4 / 5;
    }

    .about-gallery figure:hover img {
      transform: scale(1.04);
    }

    .social-actions-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 22px;
      align-items: stretch;
    }

    .panel {
      border: 1px solid var(--border);
      border-radius: 26px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .social-panel {
      position: relative;
      min-height: 520px;
      padding: 32px;
      overflow: hidden;
      isolation: isolate;
    }

    .social-panel::before {
      content: "";
      position: absolute;
      inset: auto -80px -100px auto;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,116,232,.14), rgba(0,116,232,0) 70%);
      z-index: -1;
    }

    .social-panel h2,
    .actions-panel h2 {
      font-family: "Manrope", sans-serif;
      font-size: 28px;
      letter-spacing: -.03em;
      color: var(--primary-deep);
    }

    .social-panel > p,
    .actions-panel > p {
      margin: 8px 0 20px;
      color: var(--muted);
      font-size: 14px;
    }

    .social-main {
      display: grid;
      grid-template-columns: minmax(250px, 300px) 220px;
      gap: 22px;
      align-items: stretch;
    }

    .social-main > div:first-child {
      display: flex;
      align-items: center;
    }

    .social-icons {
      display: grid;
      width: 100%;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 0;
    }

    .social-link {
      display: grid;
      place-items: center;
      gap: 10px;
      min-height: 150px;
      padding: 18px 10px;
      border: 1px solid #dfebf8;
      border-radius: 16px;
      background: #fff;
      font-size: 14px;
      font-weight: 700;
      color: #395069;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .social-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(24, 87, 154, .10);
    }

    .social-link i {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-size: 24px;
    }

    .social-link.instagram i { background: linear-gradient(145deg, #feda75, #d62976 48%, #4f5bd5); }
    .social-link.facebook i { background: #1877f2; }
    .social-link.youtube i { background: #ff0000; }
    .social-link.tiktok i { background: #101010; }

    .phone-mockup {
      position: relative;
      width: 210px;
      height: 395px;
      margin-inline: auto;
      padding: 12px;
      border-radius: 34px;
      background: #111;
      box-shadow: 0 24px 45px rgba(7, 27, 54, .28);
      transform: rotate(-4deg);
    }

    .phone-mockup::before {
      content: "";
      position: absolute;
      top: 8px;
      left: 50%;
      width: 64px;
      height: 8px;
      border-radius: 99px;
      background: #242424;
      transform: translateX(-50%);
      z-index: 2;
    }

    .phone-screen {
      height: 100%;
      overflow: hidden;
      border-radius: 25px;
      background: #fff;
    }

    .phone-screen img {
      height: 100%;
    }

    .float-reaction {
      position: absolute;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-size: 22px;
      box-shadow: 0 12px 26px rgba(0, 51, 122, .22);
      animation: floaty 3.6s ease-in-out infinite;
    }

    .reaction-heart {
      right: 4px;
      top: 150px;
      background: #ef4056;
    }

    .reaction-like {
      right: 14px;
      top: 230px;
      background: var(--primary);
      animation-delay: .7s;
    }

    .reaction-users {
      left: 8px;
      bottom: 42px;
      background: #315fbd;
      animation-delay: 1.2s;
    }

    @keyframes floaty {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-9px); }
    }

    .actions-panel {
      padding: 30px;
    }

    .actions-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 22px;
    }

    .action-card {
      border: 1px solid #deebf7;
      border-radius: 18px;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      transition: transform .2s ease, box-shadow .2s ease;
      min-height: 170px;
    }

    .action-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 25px rgba(22, 79, 142, .10);
    }

    .action-icon {
      width: 62px;
      height: 62px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #0a7bf1, #005fcc);
      color: #fff;
      font-size: 22px;
      box-shadow: 0 10px 22px rgba(0, 70, 151, .20);
      margin-bottom: 14px;
    }

    .action-icon.education {
      background: linear-gradient(135deg, #0a7bf1, #005fcc);
    }

    .action-icon.health {
      background: linear-gradient(135deg, #ef4056, #d81f3f);
    }

    .action-icon.infrastructure {
      background: linear-gradient(135deg, #0f8b7f, #0a6a62);
    }

    .action-icon.citizenship {
      background: linear-gradient(135deg, #f1a11f, #cc7a00);
    }

    .action-body {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px;
    }

    .action-body h3 {
      margin-bottom: 6px;
      font-size: 18px;
      color: var(--primary-deep);
    }

    .action-body p {
      font-size: 13px;
      line-height: 1.45;
      color: var(--muted);
    }

    .message-section {
      padding: 0 0 2rem;
    }

    .message-card {
      display: grid;
      grid-template-columns: .74fr 1.26fr;
      overflow: hidden;
      border-radius: 28px;
      background: linear-gradient(135deg, #064fa8, #064fa8);
      box-shadow: 0 24px 60px rgba(0, 77, 166, .20);
    }

    .message-copy {
      position: relative;
      padding: 38px 36px;
      color: #fff;
      isolation: isolate;
      overflow: hidden;
    }

    .message-copy::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #064fa8;
      z-index: -1;
    }

    .message-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.22);
      font-size: 24px;
    }

    .message-copy h2 {
      font-family: "Manrope", sans-serif;
      font-size: 28px;
      line-height: 1.1;
    }

    .message-copy p {
      margin-top: 12px;
      font-size: 14px;
      color: rgba(255,255,255,.86);
    }

    .signature {
      margin-top: 24px;
      font-family: "Pacifico", cursive;
      font-size: 27px;
      font-weight: 400;
      color: #fff;
      transform: rotate(-3deg);
    }

    .message-form-wrap {
      padding: 16px;
      background: #064fa8;
    }

    .message-form {
      height: 100%;
      padding: 26px;
      border-radius: 20px;
      background: rgba(255,255,255,.10);
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
      margin-bottom: 14px;
    }

    .field label {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.92);
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 12px;
      background: rgba(255,255,255,.14);
      color: #fff;
      outline: 0;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255,255,255,.72);
    }

    .field input {
      min-height: 48px;
      padding: 0 14px;
    }

    .field textarea {
      min-height: 135px;
      padding: 14px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: rgba(255,255,255,.65);
      box-shadow: 0 0 0 4px rgba(255,255,255,.16);
    }

    .submit-button {
      width: 100%;
      min-height: 50px;
      border: 0;
      border-radius: 12px;
      color: #fff;
      background: linear-gradient(135deg, #0879ef, #005fcc);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .submit-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(4, 97, 205, .20);
    }

    .form-note {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 10px;
      font-size: 10px;
      color: rgba(255,255,255,.78);
    }

    .form-status {
      min-height: 18px;
      margin-top: 8px;
      font-size: 12px;
      font-weight: 600;
      color: #087446;
    }

    .impact {
      padding: 0 0 2rem;
    }

    .impact-head {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-bottom: 22px;
    }

    .impact-head::before,
    .impact-head::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, #8fbee9);
    }

    .impact-head::after {
      background: linear-gradient(90deg, #8fbee9, transparent);
    }

    .impact-head h2 {
      white-space: nowrap;
      font-family: "Manrope", sans-serif;
      font-size: 24px;
      color: var(--primary-deep);
      letter-spacing: -.03em;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr) 1.8fr;
      gap: 14px;
      align-items: stretch;
    }

    .impact-item {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 12px;
      align-items: center;
      min-height: 102px;
      padding: 14px;
      border: 1px solid #dfebf7;
      border-radius: 18px;
      background: #fff;
    }

    .impact-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #0650a8;
      background: linear-gradient(135deg, #eaf4ff, #d8eaff);
      border: 1px solid #b8d5f3;
      font-size: 19px;
    }

    .impact-item:nth-child(1) .impact-icon { color: #0f63c9; }
    .impact-item:nth-child(2) .impact-icon { color: #0a7d71; }
    .impact-item:nth-child(3) .impact-icon { color: #3f53ba; }
    .impact-item:nth-child(4) .impact-icon { color: #b26a11; }

    .impact-item strong {
      display: block;
      color: var(--primary);
      font-size: 20px;
      line-height: 1.1;
    }

    .impact-item div span {
      display: block;
      margin-top: 3px;
      color: #4f6378;
      font-size: 11px;
    }

    .impact-icon i {
      display: block;
      line-height: 1;
    }

    .impact-photo {
      min-height: 102px;
      overflow: hidden;
      border-radius: 18px;
    }

    .impact-photo img {
      height: 100%;
    }

    .site-footer {
      padding: 48px 0 22px;
      background: linear-gradient(135deg, #052f5d, #03264c);
      color: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.28fr .8fr 1fr 1.15fr 1fr;
      gap: 30px;
    }

    .footer-brand p {
      max-width: 255px;
      margin: 14px 0 18px;
      color: rgba(255,255,255,.72);
      font-size: 12px;
    }

    .footer-social {
      display: flex;
      gap: 8px;
    }

    .footer-social a {
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,.10);
      font-size: 12px;
    }

    .footer-column h3 {
      margin-bottom: 15px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li + li {
      margin-top: 8px;
    }

    .footer-column a,
    .footer-column p {
      color: rgba(255,255,255,.72);
      font-size: 11px;
    }

    .footer-column a:hover {
      color: #fff;
    }

    .footer-contact li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 7px;
      align-items: start;
      color: rgba(255,255,255,.76);
      font-size: 11px;
    }

    .footer-contact i {
      margin-top: 3px;
      color: #91c8ff;
    }

    .footer-transparency .btn {
      min-height: 42px;
      margin-top: 15px;
      padding-inline: 16px;
      border-color: rgba(255,255,255,.30);
      background: transparent;
      color: #fff;
      font-size: 10px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 34px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.14);
      color: rgba(255,255,255,.58);
      font-size: 10px;
    }

    .footer-bottom-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .55s ease, transform .55s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1080px) {
      .header-inner {
        grid-template-columns: auto 1fr auto;
      }

      .main-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 78px;
        padding: 14px;
        border: 1px solid rgba(134, 166, 204, .3);
        border-radius: 18px;
        background: #10233d;
        box-shadow: 0 16px 40px rgba(4, 14, 30, .45);
      }

      .main-nav.open {
        display: block;
      }

      .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
      }

      .main-nav a {
        width: 100%;
        padding: 13px 12px;
        border-radius: 10px;
      }

      .main-nav a:hover {
        background: rgba(255, 255, 255, .08);
      }

      .main-nav a::after {
        display: none;
      }

      .header-social {
        justify-self: end;
      }

      .menu-toggle {
        display: grid;
        place-items: center;
      }

      .header-social .social-mini:nth-child(n+3) {
        display: none;
      }

      .hero {
        min-height: 560px;
      }

      .hero-inner {
        min-height: 560px;
      }

      .about-card {
        grid-template-columns: 1fr;
      }

      .social-actions-grid {
        grid-template-columns: 1fr;
      }

      .impact-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .impact-photo {
        grid-column: 1 / -1;
        height: 190px;
      }

      .footer-grid {
        grid-template-columns: 1.4fr repeat(2, 1fr);
      }
    }

    @media (max-width: 780px) {
      :root {
        --container: min(100% - 28px, 680px);
      }

      .header-inner {
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
      }

      .brand {
        min-width: auto;
        flex: 0 0 auto;
      }

      .brand-logo {
        width: clamp(160px, 46vw, 220px);
      }

      .brand-copy small {
        font-size: 8px;
      }

      .brand-copy strong {
        font-size: 17px;
      }

      .header-social {
        display: none;
      }

      #mobileMenuToggle {
        display: grid;
        place-items: center;
        margin-left: auto;
        flex: 0 0 auto;
      }

      .hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(255,255,255,.96), rgba(236,247,255,.95)),
          url("../img/banner.png") center/cover no-repeat;
      }

      .hero::before {
        display: none;
      }

      .hero::after {
        display: none;
      }

      .hero-inner {
        min-height: auto;
        display: block;
      }

      .hero-copy {
        padding: 58px 0 16px;
        text-align: center;
      }

      .hero-kicker {
        justify-content: center;
      }

      .hero h1 {
        margin-inline: auto;
      }

      .hero h1 .script::after {
        margin-inline: auto;
      }

      .hero-copy p {
        margin-inline: auto;
      }

      .section {
        padding: 2rem 0;
      }

      .about-card,
      .social-panel,
      .actions-panel {
        padding: 22px;
        border-radius: 22px;
      }

      .about-points,
      .actions-grid {
        grid-template-columns: 1fr;
      }

      .action-card {
        min-height: 150px;
      }

      .action-body {
        padding: 18px;
      }

      .action-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
      }

      .about-card {
        grid-template-columns: 1fr;
      }

      .about-gallery {
        min-height: 280px;
      }

      .social-main {
        grid-template-columns: 1fr;
      }

      .social-main > div:first-child {
        align-items: start;
      }

      .social-icons {
        max-width: 100%;
      }

      .phone-mockup {
        margin-top: 10px;
      }

      .message-card {
        grid-template-columns: 1fr;
      }

      .message-copy {
        padding: 30px 24px;
      }

      .message-form-wrap {
        padding: 10px;
      }

      .message-form {
        padding: 20px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .impact-photo {
        grid-column: 1 / -1;
        height: 170px;
      }

      .impact-head h2 {
        white-space: normal;
        text-align: center;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }

      .footer-brand {
        grid-column: auto;
      }

      .footer-bottom {
        margin-top: 18px;
        padding-top: 12px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
        text-align: center;
      }

      .site-footer {
        padding: 28px 0 14px;
      }

      .footer-column h3 {
        margin-bottom: 8px;
      }

      .footer-column li + li {
        margin-top: 5px;
      }

      .footer-brand p {
        margin: 8px 0 10px;
      }

      .footer-transparency .btn {
        margin-top: 8px;
      }
    }

    @media (max-width: 520px) {
      .header-inner {
        min-height: 68px;
      }

      .main-nav {
        top: 68px;
      }

      .hero h1 {
        font-size: 39px;
      }

      .about-gallery {
        min-height: 240px;
      }

      .social-icons {
        grid-template-columns: 1fr;
      }

      .action-body h3 {
        font-size: 16px;
      }

      .action-body p {
        font-size: 12px;
      }

      .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .impact-item {
        grid-template-columns: 42px 1fr;
        gap: 8px;
        min-height: 88px;
        padding: 10px;
      }

      .impact-icon {
        width: 42px;
        height: 42px;
        font-size: 15px;
      }

      .impact-item strong {
        font-size: 17px;
      }

      .impact-item div span {
        font-size: 10px;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-bottom-links {
        justify-content: center;
        gap: 10px;
      }
    }
  


