@font-face {
      font-family: 'Vazirmatn';
      src: url('../../fonts/Vazirmatn-Regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Vazirmatn';
      src: url('../../fonts/Vazirmatn-Medium.woff2') format('woff2');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Vazirmatn';
      src: url('../../fonts/Vazirmatn-Bold.woff2') format('woff2');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Vazirmatn';
      src: url('../../fonts/Vazirmatn-Black.woff2') format('woff2');
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --teal: #159c9a;
      --teal-2: #22bbb6;
      --teal-dark: #087d7b;
      --teal-soft: #e7fbfa;
      --orange: #ff8a2a;
      --orange-2: #ffb25c;
      --orange-soft: #fff3e8;
      --blue-dark: #173653;
      --blue-soft: #eef7ff;
      --green: #69a84f;
      --purple: #8b77d8;
      --red: #ef6b6b;
      --text: #24384d;
      --muted: #72808d;
      --light: #f7fbfc;
      --card: #ffffff;
      --border: #e5edf1;
      --shadow: 0 22px 60px rgba(27, 74, 96, .14);
      --shadow-soft: 0 12px 30px rgba(27, 74, 96, .09);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --safe-bottom: env(safe-area-inset-bottom, 0px);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 96px; }
    body {
      font-family: Vazirmatn, Tahoma, Arial, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(255,138,42,.10), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(21,156,154,.12), transparent 25%),
        linear-gradient(180deg, #f5fbfb 0%, #fff 45%, #f7fbfc 100%);
      color: var(--text);
      line-height: 1.85;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }
    img { max-width: 100%; display: block; }
    ::selection { background: rgba(21,156,154,.20); }

    .skip-link {
      position: fixed;
      top: 10px;
      right: 10px;
      transform: translateY(-140%);
      z-index: 999;
      background: var(--blue-dark);
      color: #fff;
      padding: 10px 14px;
      border-radius: 14px;
      transition: .2s ease;
    }
    .skip-link:focus { transform: translateY(0); }

    .page {
      width: min(1260px, calc(100% - 32px));
      margin: 24px auto;
      background: rgba(255,255,255,.93);
      border: 1px solid rgba(218,230,235,.92);
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 28px 85px rgba(19, 63, 85, .16);
      isolation: isolate;
    }

    .topbar {
      min-height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 0 34px;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 50;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
      min-width: 210px;
    }
    .logo-mark {
      width: 58px;
      height: 58px;
      border-radius: 20px;
      background:
        radial-gradient(circle at 28% 22%, #fff 0 11%, transparent 12%),
        linear-gradient(135deg, var(--orange), var(--teal-2) 72%);
      display: grid;
      place-items: center;
      color: white;
      font-size: 29px;
      box-shadow: 0 14px 28px rgba(21,156,154,.25);
      transform: rotate(-3deg);
    }
    .logo h1 {
      font-size: 22px;
      line-height: 1.25;
      color: var(--teal-dark);
      letter-spacing: -.8px;
      white-space: nowrap;
    }
    .logo span {
      display: block;
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      margin-top: 2px;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(14px, 2.1vw, 28px);
      color: #40505d;
      font-size: 14px;
      flex: 1;
    }
    .nav a {
      position: relative;
      padding: 9px 0;
      white-space: nowrap;
      transition: .2s ease;
    }
    .nav a:hover { color: var(--teal-dark); }
    .nav a.active {
      color: var(--teal-dark);
      font-weight: 900;
    }
    .nav a.active::after {
      content: "";
      width: 30px;
      height: 3px;
      border-radius: 10px;
      background: linear-gradient(90deg, var(--teal), var(--orange));
      position: absolute;
      right: 50%;
      transform: translateX(50%);
      bottom: -7px;
    }

    .btn, .donate-btn, .primary-btn, .secondary-btn, .outline-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      cursor: pointer;
      font-weight: 900;
      transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
      white-space: nowrap;
      -webkit-tap-highlight-color: transparent;
    }
    .donate-btn {
      background: linear-gradient(135deg, var(--orange), var(--orange-2));
      color: white;
      min-width: 146px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      box-shadow: 0 14px 28px rgba(255,138,42,.27);
    }
    .primary-btn {
      min-height: 56px;
      padding: 0 31px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--teal), #0d817f);
      box-shadow: 0 16px 30px rgba(21,156,154,.25);
    }
    .secondary-btn {
      min-height: 56px;
      padding: 0 29px;
      border-radius: 999px;
      background: rgba(255,255,255,.94);
      color: var(--blue-dark);
      border: 1px solid #cad7dd;
      box-shadow: var(--shadow-soft);
    }
    .outline-btn {
      min-height: 46px;
      border: 1px solid rgba(21,156,154,.5);
      background: #fff;
      color: var(--teal-dark);
      padding: 0 28px;
      border-radius: 999px;
    }
    .donate-btn:hover, .primary-btn:hover, .secondary-btn:hover, .outline-btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.03);
    }
    .donate-btn:focus-visible, .primary-btn:focus-visible, .secondary-btn:focus-visible, .outline-btn:focus-visible, .mobile-menu:focus-visible, .mobile-drawer a:focus-visible {
      outline: 3px solid rgba(255,138,42,.35);
      outline-offset: 3px;
    }

    .menu-toggle { display: none; }
    .mobile-menu {
      display: none;
      width: 48px;
      height: 48px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff;
      color: var(--teal-dark);
      cursor: pointer;
      box-shadow: var(--shadow-soft);
      place-items: center;
      position: relative;
      flex: 0 0 auto;
    }
    .mobile-menu span,
    .mobile-menu span::before,
    .mobile-menu span::after {
      width: 22px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
      display: block;
      content: "";
      transition: .25s ease;
    }
    .mobile-menu span::before { transform: translateY(-7px); }
    .mobile-menu span::after { transform: translateY(5px); }
    .mobile-drawer {
      display: none;
      position: fixed;
      inset: 88px 14px auto 14px;
      z-index: 60;
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: rgba(255,255,255,.98);
      box-shadow: 0 24px 70px rgba(19,63,85,.18);
      transform: translateY(-12px);
      opacity: 0;
      pointer-events: none;
      transition: .24s ease;
    }
    .mobile-drawer a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 14px;
      border-radius: 15px;
      color: #40505d;
      font-size: 14px;
      font-weight: 800;
    }
    .mobile-drawer a:hover { background: var(--teal-soft); color: var(--teal-dark); }
    .mobile-drawer .donate-btn { width: 100%; margin-top: 8px; }
    .mobile-drawer .app-mode-link {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 8px;
      padding: 12px 14px;
      border-radius: 15px;
      background: linear-gradient(135deg, #e7fbfa, #fff8f2);
      color: var(--teal-dark);
      font-size: 14px;
      font-weight: 800;
      border: 1px dashed rgba(21, 156, 154, 0.35);
    }
    .app-promo-bar {
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 14px;
      background: linear-gradient(90deg, #e7fbfa, #fff8f2);
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      font-weight: 700;
      color: var(--teal-dark);
    }
    .app-promo-bar a {
      flex: 0 0 auto;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--teal);
      color: #fff;
      font-size: 12px;
      white-space: nowrap;
    }
    .menu-toggle:checked ~ .page .mobile-drawer {
      display: block;
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .menu-toggle:checked ~ .page .mobile-menu span { background: transparent; }
    .menu-toggle:checked ~ .page .mobile-menu span::before { transform: translateY(0) rotate(45deg); }
    .menu-toggle:checked ~ .page .mobile-menu span::after { transform: translateY(-2px) rotate(-45deg); }

    .hero {
      min-height: 600px;
      display: grid;
      grid-template-columns: 1.03fr .97fr;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 86% 18%, rgba(255,138,42,.14), transparent 25%),
        radial-gradient(circle at 36% 58%, rgba(21,156,154,.13), transparent 29%),
        linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.96) 50%, #fff 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      left: -96px;
      bottom: -118px;
      background: rgba(255,138,42,.14);
      filter: blur(2px);
    }
    .hero-photo {
      position: relative;
      min-height: 580px;
      overflow: hidden;
      isolation: isolate;
    }
    .hero-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.84) 84%, #fff 100%),
        var(--hero-bg, url('../../imgs/panah (1).png')) center/cover;
      z-index: -2;
      transform: scale(1.02);
    }
    .hero-photo::after {
      content: "♡  ☼  ♡";
      position: absolute;
      top: 58px;
      right: 70px;
      color: rgba(255,255,255,.95);
      font-size: 34px;
      letter-spacing: 35px;
      text-shadow: 0 8px 18px rgba(0,0,0,.13);
    }
    .hero-content {
      padding: 80px 50px 168px 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: right;
      position: relative;
      z-index: 2;
    }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 36px;
      padding: 5px 14px;
      border-radius: 999px;
      background: rgba(255,138,42,.11);
      color: #df6f12;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 14px;
    }
    .eyebrow {
      color: var(--orange);
      font-size: 28px;
      font-weight: 900;
      margin-bottom: 2px;
    }
    .hero h2 {
      font-size: clamp(38px, 5.2vw, 68px);
      line-height: 1.28;
      letter-spacing: -2px;
      color: var(--blue-dark);
      margin-bottom: 20px;
      max-width: 620px;
    }
    .hero p {
      color: var(--muted);
      font-size: 17px;
      max-width: 570px;
      margin-bottom: 30px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }
    .trust-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      color: #71808d;
      font-size: 13px;
      font-weight: 700;
    }
    .trust-row span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,.75);
      border: 1px solid var(--border);
    }

    .stats {
      width: min(1090px, calc(100% - 64px));
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
      margin: -92px auto 48px;
      z-index: 5;
    }
    .stat-card {
      background: rgba(255,255,255,.95);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 21px;
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      gap: 15px;
      min-height: 124px;
      transition: .22s ease;
    }
    .stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .icon-circle {
      width: 60px;
      height: 60px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      font-size: 28px;
      flex: 0 0 auto;
    }
    .stat-card:nth-child(1) .icon-circle { background: var(--orange-soft); color: var(--orange); }
    .stat-card:nth-child(2) .icon-circle { background: var(--teal-soft); color: var(--teal); }
    .stat-card:nth-child(3) .icon-circle { background: #edf8e9; color: var(--green); }
    .stat-card:nth-child(4) .icon-circle { background: var(--blue-soft); color: #3976bd; }
    .stat-number {
      display: block;
      font-size: 32px;
      line-height: 1.1;
      font-weight: 900;
      color: var(--teal-dark);
      direction: ltr;
      text-align: right;
    }
    .stat-card:first-child .stat-number { color: var(--orange); }
    .stat-title { font-size: 14px; font-weight: 900; color: #30475b; }
    .stat-sub { font-size: 12px; color: #8a96a2; }

    section { padding: 32px 42px; }
    .section-heading {
      text-align: center;
      margin-bottom: 30px;
    }
    .section-heading .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--orange);
      background: var(--orange-soft);
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 10px;
    }
    .section-heading .heart { color: var(--teal); font-size: 24px; margin-right: 8px; }
    .section-heading h3 {
      font-size: clamp(26px, 3vw, 38px);
      color: var(--blue-dark);
      letter-spacing: -.7px;
      margin-bottom: 8px;
    }
    .section-heading p { color: var(--muted); font-size: 15px; }

    .about-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
      padding: 26px;
      border: 1px solid var(--border);
      border-radius: 28px;
      background:
        radial-gradient(circle at 12% 20%, rgba(255,138,42,.13), transparent 21%),
        linear-gradient(135deg, #fff, #f5ffff);
      box-shadow: var(--shadow-soft);
    }
    .about-text { display: flex; flex-direction: column; justify-content: center; }
    .about-text h3 { font-size: 30px; color: var(--blue-dark); margin-bottom: 10px; }
    .about-text p { color: var(--muted); margin-bottom: 16px; }
    .about-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      list-style: none;
    }
    .about-list li {
      padding: 12px 14px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid var(--border);
      font-weight: 900;
      color: #3d5061;
    }
    .about-list li::before { content: "✓"; color: var(--teal-dark); margin-left: 8px; }
    .about-photo {
      min-height: 320px;
      border-radius: 24px;
      background: url('../../imgs/panah (2).png') center/cover;
      position: relative;
      overflow: hidden;
    }
    .about-photo::after {
      content: "آموزش، مراقبت، مهارت‌آموزی";
      position: absolute;
      right: 18px;
      bottom: 18px;
      left: 18px;
      padding: 13px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.88);
      color: var(--blue-dark);
      font-weight: 900;
      text-align: center;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }
    .service-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: .25s ease;
      height: 100%;
    }
    .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .service-img {
      height: 126px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .service-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.15));
    }
    .service-card:nth-child(1) .service-img { background-image: url('../../imgs/panah (2).png'); }
    .service-card:nth-child(2) .service-img { background-image: url('../../imgs/panah (3).png'); }
    .service-card:nth-child(3) .service-img { background-image: url('../../imgs/panah (4).png'); }
    .service-card:nth-child(4) .service-img { background-image: url('../../imgs/panah (5).png'); }
    .service-card:nth-child(5) .service-img { background-image: url('../../imgs/panah (6).png'); }
    .service-icon {
      width: 50px;
      height: 50px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--teal);
      color: #fff;
      font-size: 24px;
      position: absolute;
      right: 50%;
      bottom: -25px;
      transform: translateX(50%);
      box-shadow: 0 12px 22px rgba(21,156,154,.25);
      z-index: 2;
    }
    .service-card:nth-child(2) .service-icon { background: #4d9adf; }
    .service-card:nth-child(3) .service-icon { background: var(--purple); }
    .service-card:nth-child(4) .service-icon { background: var(--orange); }
    .service-card:nth-child(5) .service-icon { background: #63b95e; }
    .service-body { padding: 39px 18px 23px; text-align: center; min-height: 160px; }
    .service-body h4 { font-size: 17px; color: var(--blue-dark); margin-bottom: 7px; }
    .service-body p { font-size: 13px; color: #788692; line-height: 1.9; }
    .center-action { text-align: center; margin-top: 24px; }

    .campaign { padding-top: 36px; }
    .campaign-box {
      display: grid;
      grid-template-columns: 1.1fr 1.55fr .85fr;
      align-items: stretch;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid #f0dfcc;
      box-shadow: var(--shadow-soft);
      background: linear-gradient(135deg, #fff8ef, #fff 48%, #e9fbfa);
    }
    .campaign-child { min-height: 282px; background: url('../../imgs/panah (7).png') center/cover; position: relative; }
    .campaign-child::after {
      content: "هر قدم کوچک شما، آینده‌ای بزرگ می‌سازد.";
      position: absolute;
      right: 24px;
      bottom: 24px;
      max-width: 230px;
      padding: 12px 16px;
      background: rgba(255,255,255,.88);
      border-radius: 18px;
      font-size: 14px;
      color: #596977;
      box-shadow: 0 10px 24px rgba(0,0,0,.08);
    }
    .campaign-info { padding: 36px 34px; display: flex; flex-direction: column; justify-content: center; }
    .campaign-info small { color: var(--teal-dark); font-weight: 900; margin-bottom: 8px; }
    .campaign-info h3 { font-size: clamp(23px, 3vw, 35px); line-height: 1.5; margin-bottom: 10px; color: var(--blue-dark); }
    .campaign-info p { color: #788692; margin-bottom: 24px; }
    .progress-wrap { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: var(--shadow-soft); }
    .progress-row { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; font-weight: 900; color: #52616d; margin-bottom: 12px; }
    .bar { height: 13px; background: #e7edf1; border-radius: 999px; overflow: hidden; position: relative; }
    .bar span { display: block; width: 91.5%; height: 100%; background: linear-gradient(90deg, var(--teal), #85d8d5); border-radius: inherit; }
    .campaign-cta {
      background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,.24), transparent 30%),
        linear-gradient(160deg, #26b9b5, #0d807d);
      color: white;
      padding: 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 16px;
    }
    .campaign-cta .big-heart { font-size: 52px; line-height: 1; }
    .campaign-cta h4 { font-size: 22px; line-height: 1.55; }

    .stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .story-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 14px;
      box-shadow: var(--shadow-soft);
      display: grid;
      grid-template-columns: 130px 1fr;
      gap: 15px;
      align-items: center;
      min-height: 145px;
      transition: .22s ease;
    }
    .story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .story-img { height: 112px; border-radius: 18px; background-size: cover; background-position: center; overflow: hidden; }
    .story-card:nth-child(1) .story-img { background-image: url('../../imgs/panah (8).png'); }
    .story-card:nth-child(2) .story-img { background-image: url('../../imgs/panah (9).png'); }
    .story-card:nth-child(3) .story-img { background-image: url('../../imgs/panah (10).png'); }
    .tag { display: inline-flex; align-items: center; justify-content: center; min-height: 26px; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 900; margin-bottom: 6px; }
    .tag.teal { background: var(--teal-soft); color: var(--teal-dark); }
    .tag.green { background: #edf8e9; color: var(--green); }
    .tag.orange { background: var(--orange-soft); color: var(--orange); }
    .story-body h4 { font-size: 16px; margin-bottom: 3px; color: var(--blue-dark); }
    .story-body p { font-size: 13px; color: #7b8792; line-height: 1.8; margin-bottom: 6px; }
    .story-link { font-size: 13px; color: var(--teal-dark); font-weight: 900; }

    .join-strip {
      margin: 28px 42px 20px;
      padding: 30px;
      border-radius: 26px;
      background:
        radial-gradient(circle at 12% 55%, rgba(255,138,42,.22), transparent 18%),
        linear-gradient(135deg, #e7fbfa, #f7fffe);
      border: 1px solid #d5eeec;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .hands { font-size: 62px; line-height: 1; letter-spacing: -12px; direction: ltr; flex: 0 0 auto; }
    .join-strip h3 { font-size: 28px; margin-bottom: 4px; color: var(--blue-dark); }
    .join-strip p { color: #6f7e8b; font-size: 14px; }

    .footer { padding: 30px 42px 0; background: #fff; border-top: 1px solid var(--border); }
    .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr 1.1fr; gap: 26px; padding-bottom: 28px; }
    .footer h4 { font-size: 16px; margin-bottom: 12px; color: var(--blue-dark); }
    .footer p, .footer a, .footer li { color: #72808d; font-size: 13px; list-style: none; margin-bottom: 7px; }
    .footer a:hover { color: var(--teal-dark); }
    .license-row { display: flex; gap: 8px; margin: 10px 0; }
    .license { width: 54px; height: 54px; border-radius: 14px; border: 1px solid var(--border); background: #fafafa; display: grid; place-items: center; font-size: 25px; }
    .socials { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
    .socials a { width: 36px; height: 36px; border-radius: 12px; background: var(--teal-soft); color: var(--teal-dark); display: grid; place-items: center; font-weight: 900; margin-bottom: 0; }
    .copyright { background: linear-gradient(90deg, #0d807d, #20b4b0); color: white; text-align: center; padding: 14px; margin: 0 -42px; font-size: 13px; }

    .floating-donate {
      display: none;
      position: fixed;
      right: 14px;
      left: 14px;
      bottom: calc(12px + var(--safe-bottom));
      z-index: 80;
      min-height: 54px;
      border-radius: 18px;
      box-shadow: 0 18px 44px rgba(255,138,42,.33);
    }

    .fade-in { animation: fadeIn .75s ease both; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    }

    @media (max-width: 1120px) {
      .page { width: min(100% - 18px, 980px); margin: 12px auto; border-radius: 24px; }
      .topbar { min-height: 78px; padding: 14px 18px; }
      .nav, .topbar > .donate-btn { display: none; }
      .mobile-menu { display: grid; }
      .app-promo-bar { display: flex; }
      .mobile-drawer { display: block; inset-top: 84px; }
      .hero { grid-template-columns: 1fr; }
      .hero-photo { min-height: 325px; order: 1; }
      .hero-photo::before {
        background:
          linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.88) 94%, #fff 100%),
          url('../../imgs/panah (1).png') center/cover;
      }
      .hero-content { order: 2; padding: 38px 24px 118px; align-items: center; text-align: center; }
      .trust-row { justify-content: center; }
      .stats { grid-template-columns: repeat(2, 1fr); width: calc(100% - 32px); margin-top: -78px; }
      section { padding: 26px 20px; }
      .about-box { grid-template-columns: 1fr; }
      .about-photo { order: -1; min-height: 260px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .campaign-box { grid-template-columns: 1fr; }
      .campaign-child { min-height: 235px; }
      .stories-grid { grid-template-columns: 1fr; }
      .join-strip { margin: 22px 20px; flex-direction: column; text-align: center; }
      .footer { padding: 26px 20px 0; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .copyright { margin: 0 -20px; }
    }

    @media (max-width: 680px) {
      html { scroll-padding-top: 76px; }
      body { background: #fff; padding-bottom: 76px; }
      .page { width: 100%; margin: 0; border-radius: 0; border: 0; box-shadow: none; }
      .topbar { min-height: 72px; padding: 11px 14px; }
      .logo { min-width: 0; gap: 9px; }
      .logo-mark { width: 46px; height: 46px; border-radius: 16px; font-size: 23px; }
      .logo h1 { font-size: 17px; letter-spacing: -.5px; }
      .logo span { font-size: 10.5px; }
      .mobile-menu { width: 45px; height: 45px; border-radius: 15px; }
      .mobile-drawer { inset: 78px 10px auto 10px; }
      .hero { min-height: auto; }
      .hero-photo { min-height: 244px; }
      .hero-photo::after { top: 28px; right: 24px; font-size: 24px; letter-spacing: 22px; }
      .hero-content { padding: 30px 18px 108px; }
      .pill { font-size: 12px; }
      .eyebrow { font-size: 22px; }
      .hero h2 { font-size: clamp(32px, 10.6vw, 42px); letter-spacing: -1.2px; margin-bottom: 12px; }
      .hero p { font-size: 14.5px; margin-bottom: 22px; }
      .hero-actions { width: 100%; gap: 10px; margin-bottom: 15px; }
      .primary-btn, .secondary-btn { width: 100%; min-height: 52px; }
      .trust-row { gap: 7px; font-size: 12px; }
      .trust-row span { flex: 1 1 140px; justify-content: center; }
      .stats { grid-template-columns: 1fr; gap: 12px; margin-top: -68px; width: calc(100% - 24px); margin-bottom: 28px; }
      .stat-card { min-height: auto; padding: 15px; border-radius: 19px; }
      .icon-circle { width: 52px; height: 52px; border-radius: 18px; font-size: 25px; }
      .stat-number { font-size: 28px; }
      section { padding: 24px 14px; }
      .section-heading { margin-bottom: 22px; }
      .section-heading h3 { font-size: 25px; line-height: 1.45; }
      .section-heading p { font-size: 13.5px; }
      .about-box { padding: 14px; border-radius: 22px; gap: 16px; }
      .about-photo { min-height: 215px; border-radius: 19px; }
      .about-text h3 { font-size: 24px; }
      .about-text p { font-size: 14px; }
      .about-list { grid-template-columns: 1fr; gap: 9px; }
      .about-list li { padding: 10px 12px; font-size: 13.5px; }
      .services-grid { grid-template-columns: 1fr; gap: 14px; }
      .service-img { height: 170px; }
      .service-body { min-height: auto; padding: 38px 17px 20px; }
      .campaign { padding-top: 22px; }
      .campaign-box { border-radius: 22px; }
      .campaign-child { min-height: 215px; }
      .campaign-child::after { right: 14px; bottom: 14px; left: 14px; max-width: none; font-size: 12.5px; }
      .campaign-info { padding: 22px 17px; }
      .campaign-info h3 { font-size: 23px; }
      .campaign-info p { font-size: 14px; margin-bottom: 18px; }
      .progress-row { flex-direction: column; gap: 4px; font-size: 12.5px; }
      .campaign-cta { padding: 24px 18px; }
      .campaign-cta h4 { font-size: 19px; }
      .story-card { grid-template-columns: 1fr; border-radius: 20px; }
      .story-img { height: 170px; }
      .join-strip { margin: 20px 14px; padding: 22px 18px; border-radius: 22px; }
      .hands { font-size: 48px; }
      .join-strip h3 { font-size: 22px; }
      .join-strip p { font-size: 13.5px; }
      .footer-grid { grid-template-columns: 1fr; gap: 18px; }
      .footer { padding-bottom: 0; }
      .floating-donate { display: inline-flex; }
    }

    @media (max-width: 380px) {
      .logo h1 { font-size: 15.5px; }
      .logo span { display: none; }
      .hero h2 { font-size: 30px; }
      .trust-row span { flex-basis: 100%; }
    }