@import url('https://fonts.googleapis.com/css2?family=Varela+Round&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

    html { scroll-behavior: smooth; }
    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Nunito Sans', -apple-system, sans-serif;
      background: #FFFBFA;
      color: #0F172A;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }

    .header {
      position: fixed; top: 12px; left: 12px; right: 12px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 64px;
      max-width: 1280px;
      margin: 0 auto;
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.5);
      border-radius: 20px;
      box-shadow: 0 4px 24px rgba(15,23,42,0.06);
    }

    .logo {
      font-family: 'Varela Round', sans-serif;
      font-size: 22px;
      color: #059669;
      display: flex;
      align-items: center;
      gap: 8px;
    }

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

    .nav a {
      font-size: 14px;
      font-weight: 600;
      color: #64748B;
      transition: color 0.2s;
    }
    .nav a:hover { color: #0F172A; }
    .nav a.active { color: #059669; }

    .header-actions { display: flex; align-items: center; gap: 10px; }

    .btn-outline {
      padding: 10px 20px;
      border-radius: 999px;
      border: 1.5px solid #E2E8F0;
      background: transparent;
      color: #1E293B;
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-outline:hover { border-color: #94A3B8; background: #F8FAFC; }

    .btn-primary-nav {
      padding: 10px 22px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #059669, #10B981);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 12px rgba(5,150,105,0.25);
    }
    .btn-primary-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(5,150,105,0.3); }

    .support-page {
      min-height: 100dvh;
      padding: 120px clamp(18px, 5vw, 72px) 70px;
      position: relative;
      overflow: hidden;
    }

    .support-page::before,
    .support-page::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: .45;
      animation: float 7s ease-in-out infinite;
    }

    .support-page::before {
      width: 240px;
      height: 240px;
      background: #A7F3D0;
      right: 7%;
      top: 15%;
    }

    .support-page::after {
      width: 180px;
      height: 180px;
      background: #DDD6FE;
      left: 5%;
      bottom: 8%;
      animation-delay: 1.4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .hero {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 820px;
      margin: 0 auto 48px;
    }

    .badge {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.7);
      border: 1px solid rgba(5,150,105,0.15);
      color: #059669;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-family: 'Varela Round', sans-serif;
      font-size: clamp(36px, 6vw, 64px);
      line-height: 1.08;
      color: #0F172A;
      margin-bottom: 16px;
    }

    .hero p {
      font-size: clamp(14px, 2vw, 18px);
      line-height: 1.7;
      color: #64748B;
      max-width: 680px;
      margin: 0 auto;
    }

    .support-grid {
      position: relative;
      z-index: 2;
      width: min(100%, 1100px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .support-card {
      padding: 30px;
      border-radius: 24px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(226,232,240,0.5);
      box-shadow: 0 8px 32px rgba(15,23,42,0.06);
      transition: .25s ease;
    }

    .support-card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,0.9);
      box-shadow: 0 16px 48px rgba(15,23,42,0.08);
    }

    .icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #F0FDF4, #DBEAFE);
      font-size: 28px;
      margin-bottom: 22px;
    }

    .support-card h3 {
      font-family: 'Varela Round', sans-serif;
      font-size: 21px;
      color: #0F172A;
      margin-bottom: 12px;
    }

    .support-card p {
      color: #64748B;
      line-height: 1.7;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .card-link {
      color: #059669;
      font-weight: 800;
      font-size: 14px;
    }

    .faq-section {
      position: relative;
      z-index: 2;
      width: min(100%, 900px);
      margin: 70px auto 0;
      padding: 34px;
      border-radius: 24px;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(226,232,240,0.5);
      box-shadow: 0 8px 32px rgba(15,23,42,0.06);
    }

    .faq-section h2 {
      font-family: 'Varela Round', sans-serif;
      font-size: clamp(26px, 4vw, 38px);
      color: #0F172A;
      margin-bottom: 24px;
    }

    .faq {
      border-top: 1px solid #F1F5F9;
      padding: 18px 0;
    }

    .faq h4 {
      font-size: 16px;
      font-weight: 700;
      color: #0F172A;
      margin-bottom: 8px;
    }

    .faq p {
      color: #64748B;
      line-height: 1.7;
      font-size: 14px;
    }

    .emergency-box {
      position: relative;
      z-index: 2;
      width: min(100%, 900px);
      margin: 28px auto 0;
      padding: 24px 28px;
      border-radius: 20px;
      background: #FEF2F2;
      border: 1px solid #FECACA;
      color: #991B1B;
      line-height: 1.7;
    }

    .emergency-box strong {
      display: block;
      margin-bottom: 6px;
      color: #991B1B;
    }

    .footer {
      background: #0F172A;
      color: white;
      padding: 50px clamp(18px, 5vw, 72px);
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 42px;
    }

    .footer h3 {
      font-family: 'Varela Round', sans-serif;
      font-size: 28px;
      margin-bottom: 14px;
    }

    .footer p,
    .footer a {
      color: rgba(255,255,255,.68);
      font-size: 14px;
      line-height: 1.8;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .newsletter input {
      height: 44px;
      width: 260px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      color: white;
      padding: 0 16px;
      outline: none;
    }

    .hamburger {
      display: none;
      width: 40px; height: 40px;
      border: none; background: transparent;
      flex-direction: column; gap: 5px;
      justify-content: center; cursor: pointer;
    }
    .hamburger span { width: 22px; height: 2px; background: #1E293B; border-radius: 2px; }

    @media (max-width: 980px) {
      .support-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 768px) {
      .header { top: 8px; left: 8px; right: 8px; padding: 0 16px; height: 56px; border-radius: 14px; }

      .nav {
        position: fixed; inset: 64px 8px auto 8px;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(16px);
        border: 1px solid #F1F5F9;
        border-radius: 16px;
        flex-direction: column; padding: 24px;
        transform: translateY(-120%);
        transition: 0.3s ease;
        gap: 16px;
        box-shadow: 0 16px 48px rgba(15,23,42,0.1);
      }
      .nav.open { transform: translateY(0); }

      .header-actions { display: none; }
      .hamburger { display: flex; }

      .support-page {
        padding-top: 100px;
      }

      .faq-section {
        padding: 24px;
      }

      .footer {
        text-align: center;
      }

      .newsletter input {
        width: 100%;
      }
    }
