    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --green: #1a6b3c;
      --green-light: #2d9e5f;
      --green-pale: #e8f5ee;
      --saffron: #e8720c;
      --saffron-light: #f5a04a;
      --saffron-pale: #fff1e5;
      --white: #ffffff;
      --off: #fdfdfd;
      --dark: #0e1f14;
      --text: #1c2e20;
      --text-light: #4a5c50;
      --muted: #829a8a;
      --border: rgba(0, 0, 0, 0.08);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--off);
      overflow-x: hidden;
    }

    /* ANIMATIONS */
    .fade-in-up {
      animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      opacity: 0;
      transform: translateY(30px);
    }

    .delay-1 {
      animation-delay: 0.1s;
    }

    .delay-2 {
      animation-delay: 0.2s;
    }

    .delay-3 {
      animation-delay: 0.3s;
    }

    .delay-4 {
      animation-delay: 0.4s;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.3);
      }
    }

    @keyframes scaleIn {
      from {
        transform: scale(0.8);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 0.35;
      }
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 18px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo-mark {
      width: 34px;
      height: 34px;
      background: linear-gradient(135deg, var(--green-light), var(--saffron));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-logo-mark svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    .nav-brand {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.2px;
    }

    .nav-brand span {
      color: var(--saffron);
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-light);
      font-size: 13.5px;
      font-weight: 500;
      text-decoration: none;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--green);
    }

    .nav-cta {
      background: var(--saffron);
      color: #fff;
      padding: 9px 20px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s;
      box-shadow: 0 4px 10px rgba(232, 114, 12, 0.2);
    }

    .nav-cta:hover {
      background: var(--saffron-light);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(160deg, #f0f7f3 0%, #ffffff 40%, #fdfdfd 100%);
    }

    .hero-bg-circles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hbc {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0;
      animation: scaleIn 1.5s ease-out forwards;
    }

    .hbc1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(45, 158, 95, 0.25), transparent);
      top: -100px;
      left: -150px;
      animation-delay: 0s;
    }

    .hbc2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(232, 114, 12, 0.2), transparent);
      bottom: -120px;
      right: -100px;
      animation-delay: 0.3s;
    }

    .hbc3 {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(45, 158, 95, 0.2), transparent);
      top: 40%;
      right: 10%;
      animation-delay: 0.6s;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 820px;
      padding: 0 5%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
      padding: 7px 16px;
      border-radius: 50px;
      color: var(--text-light);
      font-size: 12.5px;
      font-weight: 600;
      margin-bottom: 28px;
      letter-spacing: 0.3px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .hero-badge .dot {
      width: 7px;
      height: 7px;
      background: var(--saffron);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(42px, 7vw, 78px);
      font-weight: 700;
      line-height: 1.08;
      color: var(--text);
      margin-bottom: 10px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--saffron);
      font-family: 'Playfair Display', serif;
    }

    .hero-sub {
      font-size: clamp(15px, 2vw, 18px);
      color: var(--text-light);
      line-height: 1.7;
      max-width: 580px;
      margin: 0 auto 40px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--green-light), var(--green));
      color: #fff;
      padding: 14px 30px;
      border-radius: 10px;
      font-size: 14.5px;
      font-weight: 600;
      text-decoration: none;
      transition: all .25s;
      box-shadow: 0 8px 25px rgba(26, 107, 60, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(45, 158, 95, 0.4);
    }

    .btn-ghost {
      background: #fff;
      color: var(--text);
      padding: 14px 30px;
      border-radius: 10px;
      font-size: 14.5px;
      font-weight: 600;
      text-decoration: none;
      border: 1px solid var(--border);
      transition: all .25s;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }

    .btn-ghost:hover {
      background: var(--green-pale);
      color: var(--green);
      border-color: rgba(45, 158, 95, 0.2);
    }

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--muted), transparent);
    }

    /* STATS STRIP */
    .stats-strip {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(20px);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 28px 5%;
      display: flex;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
      padding: 12px 40px;
      border-right: 1px solid var(--border);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-size: 28px;
      font-weight: 700;
      color: var(--green);
      line-height: 1;
    }

    .stat-num span {
      color: var(--saffron);
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-light);
      font-weight: 500;
      margin-top: 6px;
      letter-spacing: 0.3px;
    }

    /* SECTIONS */
    section {
      padding: 100px 5%;
    }

    .section-tag {
      display: inline-block;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--green-light);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--text);
      margin-bottom: 16px;
    }

    .section-title em {
      color: var(--saffron);
      font-style: italic;
    }

    .section-sub {
      font-size: 16px;
      color: var(--text-light);
      line-height: 1.75;
      max-width: 540px;
    }

    /* MISSION SECTION */
    .mission {
      background: #fff;
    }

    .mission-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .mission-visual {
      position: relative;
    }

    .mission-card-main {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    }

    .mission-card-main::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(45, 158, 95, 0.1), transparent);
      border-radius: 50%;
    }

    .mission-icon-large {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--green-light), var(--green));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 8px 20px rgba(45, 158, 95, 0.2);
    }

    .mission-icon-large svg {
      width: 28px;
      height: 28px;
      fill: white;
    }

    .mission-card-main h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }

    .mission-card-main p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
    }

    .mission-float {
      position: absolute;
      right: -30px;
      bottom: -30px;
      background: #fff;
      border: 1px solid rgba(232, 114, 12, 0.2);
      border-radius: 16px;
      padding: 20px 24px;
      min-width: 160px;
      box-shadow: 0 15px 35px rgba(232, 114, 12, 0.1);
    }

    .mission-float .mf-num {
      font-size: 32px;
      font-weight: 700;
      color: var(--saffron);
    }

    .mission-float .mf-label {
      font-size: 12px;
      color: var(--text-light);
      font-weight: 500;
      margin-top: 2px;
    }

    .mission-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .pill {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-light);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }

    .pill.green {
      background: var(--green-pale);
      border-color: rgba(45, 158, 95, 0.2);
      color: var(--green);
    }

    /* INITIATIVES */
    .initiatives {
      background: var(--off);
    }

    .initiatives-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .init-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .init-header .section-sub {
      margin: 0 auto;
    }

    .init-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .init-card {
      border-radius: 24px;
      padding: 44px;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      display: block;
      transition: transform .3s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .init-card:hover {
      transform: translateY(-6px);
    }

    .init-card.kyf {
      background: #fff;
      border: 1px solid rgba(45, 158, 95, 0.2);
    }

    .init-card.gfl {
      background: #fff;
      border: 1px solid rgba(232, 114, 12, 0.2);
    }

    .init-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
      border-radius: 24px;
    }

    .init-card.kyf::before {
      background: linear-gradient(145deg, rgba(45, 158, 95, 0.03), transparent);
    }

    .init-card.gfl::before {
      background: linear-gradient(145deg, rgba(245, 160, 74, 0.03), transparent);
    }

    .init-card:hover::before {
      opacity: 1;
    }

    .init-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 50px;
      margin-bottom: 24px;
    }

    .kyf .init-tag {
      background: rgba(45, 158, 95, 0.1);
      color: var(--green);
      border: 1px solid rgba(45, 158, 95, 0.2);
    }

    .gfl .init-tag {
      background: rgba(232, 114, 12, 0.1);
      color: var(--saffron);
      border: 1px solid rgba(232, 114, 12, 0.2);
    }

    .init-card h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 38px);
      font-weight: 700;
      color: var(--text);
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .init-card .domain {
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 20px;
      font-family: 'Inter', monospace;
    }

    .init-card p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .init-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 32px;
    }

    .init-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-light);
    }

    .init-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .kyf .init-features li::before {
      background: var(--green);
    }

    .gfl .init-features li::before {
      background: var(--saffron);
    }

    .init-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 600;
      padding: 11px 22px;
      border-radius: 10px;
      text-decoration: none;
      transition: all .25s;
    }

    .kyf .init-cta {
      background: rgba(45, 158, 95, 0.1);
      color: var(--green);
      border: 1px solid rgba(45, 158, 95, 0.2);
    }

    .kyf .init-cta:hover {
      background: rgba(45, 158, 95, 0.15);
    }

    .gfl .init-cta {
      background: rgba(232, 114, 12, 0.1);
      color: var(--saffron);
      border: 1px solid rgba(232, 114, 12, 0.2);
    }

    .gfl .init-cta:hover {
      background: rgba(232, 114, 12, 0.15);
    }

    .init-cta svg {
      width: 16px;
      height: 16px;
    }

    /* HOW IT WORKS */
    .hiw {
      background: #fff;
    }

    .hiw-inner {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
    }

    .hiw-step {
      background: #fdfdfd;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 28px;
      position: relative;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    }

    .step-num {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--green-light), var(--green));
      color: #fff;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(26, 107, 60, 0.3);
    }

    .step-icon {
      width: 52px;
      height: 52px;
      margin: 16px auto 20px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-icon svg {
      width: 26px;
      height: 26px;
    }

    .hiw-step h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }

    .hiw-step p {
      font-size: 13.5px;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* AWARENESS */
    .aware {
      background: var(--off);
    }

    .aware-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .aware-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 48px;
    }

    .aware-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px 20px;
      transition: all .25s;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    }

    .aware-card:hover {
      border-color: rgba(45, 158, 95, 0.3);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .aware-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-bottom: 14px;
    }

    .aware-card h4 {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }

    .aware-card p {
      font-size: 12.5px;
      color: var(--text-light);
      line-height: 1.6;
    }

    .aware-more {
      text-align: center;
      margin-top: 36px;
    }

    .aware-more a {
      color: var(--green);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid rgba(45, 158, 95, 0.3);
      padding-bottom: 2px;
      transition: border-color .2s;
    }

    .aware-more a:hover {
      border-color: var(--green);
    }

    /* IMPACT */
    .impact {
      background: #fff;
    }

    .impact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .impact-cards {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .impact-card {
      background: #fdfdfd;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px 28px;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    }

    .impact-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .impact-icon svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
    }

    .impact-card h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .impact-card p {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* PARTNERS */
    .partners {
      background: var(--off);
      text-align: center;
    }

    .partners-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .partners-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      justify-content: center;
      margin-top: 44px;
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    }

    .partner-logo {
      flex: 1;
      min-width: 160px;
      padding: 28px 20px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .partner-logo:nth-child(4n) {
      border-right: none;
    }

    .partner-name {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--text);
    }

    .partner-tag {
      font-size: 10.5px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.5px;
    }

    .partner-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
    }

    /* CTA SECTION */
    .cta-section {
      background: var(--green-pale);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 16px;
      line-height: 1.1;
    }

    .cta-section p {
      font-size: 16px;
      color: var(--text-light);
      margin-bottom: 40px;
      line-height: 1.7;
    }

    .cta-input-row {
      display: flex;
      gap: 0;
      max-width: 440px;
      margin: 0 auto 16px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .cta-input-row input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      padding: 14px 18px;
      font-size: 14.5px;
      color: var(--text);
      font-family: 'Inter', sans-serif;
    }

    .cta-input-row input::placeholder {
      color: var(--muted);
    }

    .cta-input-row button {
      background: var(--green);
      color: #fff;
      border: none;
      padding: 14px 24px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background .2s;
    }

    .cta-input-row button:hover {
      background: var(--green-light);
    }

    .cta-note {
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
    }

    /* FOOTER */
    footer {
      background: #fff;
      padding: 60px 5% 36px;
      border-top: 1px solid var(--border);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
    }

    .footer-brand p {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-light);
      line-height: 1.7;
      margin-top: 14px;
      max-width: 280px;
    }

    .footer-col h4 {
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-light);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-col ul li a:hover {
      color: var(--green);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-size: 12.5px;
      font-weight: 500;
      color: var(--muted);
    }

    .footer-bottom a {
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-bottom a:hover {
      color: var(--green);
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .social-btn {
      width: 34px;
      height: 34px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 15px;
      text-decoration: none;
      transition: all .2s;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    }

    .social-btn:hover {
      background: var(--off);
      color: var(--green);
      border-color: rgba(45, 158, 95, 0.3);
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {

      .mission-inner,
      .impact-inner {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .mission-visual {
        order: -1;
      }
    }

    @media (max-width: 900px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hero h1 {
        font-size: 42px;
      }

      .init-grid {
        grid-template-columns: 1fr;
      }

      .hiw-steps {
        grid-template-columns: 1fr;
      }

      .aware-grid {
        grid-template-columns: 1fr 1fr;
      }

      .partners-logos {
        flex-direction: column;
        border-radius: 12px;
      }

      .partner-logo {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .partner-logo:last-child {
        border-bottom: none;
      }

      .stats-strip {
        flex-direction: column;
        gap: 24px;
        padding: 32px 5%;
      }

      .stat-item {
        border-right: none;
        padding: 0;
      }

      section {
        padding: 60px 5%;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 36px;
      }

      .aware-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-primary,
      .btn-ghost {
        text-align: center;
      }

      .cta-input-row {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
      }

      .cta-input-row input {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-bottom: 10px;
      }

      .cta-input-row button {
        border-radius: 12px;
      }

      .mission-float {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        min-width: 180px;
        text-align: center;
      }
    }
