:root {
      --teal-900: #0a3d3a;
      --teal-800: #0a5c5b;
      --teal-700: #0E7C7B;
      --teal-600: #0d9488;
      --teal-500: #14b8a6;
      --teal-400: #2dd4bf;
      --teal-100: #ccfbf1;
      --teal-50: #f0fdfa;
      --orange-600: #f25c2e;
      --orange-700: #d44e24;
      --orange-50: #fff7ed;
      --green-500: #22c55e;
      --green-400: #4ade80;
      --green-50: #f0fdf4;
      --gray-50: #f0f2f5;
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --gray-300: #d1d5db;
      --gray-400: #9ca3af;
      --gray-500: #888888;
      --gray-600: #6b7280;
      --gray-700: #555555;
      --gray-800: #374151;
      --gray-900: #111111;
      --white: #ffffff;
      --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
      --shadow-xl: 0 20px 48px rgba(0,0,0,0.15);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 14px;
      --radius-xl: 16px;
      --radius-2xl: 20px;
      --radius-full: 999px;
      --transition: 0.2s ease;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--gray-50);
      color: var(--gray-900);
      font-size: 16px;
      line-height: 1.5;
      overflow-x: hidden;
      padding-bottom: 48px;
      -webkit-font-smoothing: antialiased;
    }

    /* ═══════════════ HEADER / NAV ═══════════════ */
    .header {
      position: sticky;
      top: 0;
      z-index: 300;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    }

    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      height: 62px;
    }

    /* Logo */
    .header-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .header-logo-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden;
      background: #e6f4f4;
      flex-shrink: 0;
      border: 2px solid #c8e8e8;
      box-shadow: 0 2px 8px rgba(14, 124, 123, 0.15);
    }

    .header-logo-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 4px;
    }

    .header-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .header-logo-name {
      font-size: 17px;
      font-weight: 800;
      color: var(--gray-900);
      letter-spacing: -0.3px;
    }

    .header-logo-name span {
      color: var(--teal-700);
    }

    .header-logo-tagline {
      font-size: 10px;
      color: var(--gray-400);
      font-weight: 500;
    }

    /* Right side */
    .header-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    /* Online indicator */
    .header-online {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--green-50);
      border: 1.5px solid #bbf7d0;
      border-radius: var(--radius-full);
      padding: 5px 12px;
      font-size: 12px;
      font-weight: 700;
      color: #15803d;
      white-space: nowrap;
    }

    .header-online-dot {
      width: 7px;
      height: 7px;
      background: var(--green-500);
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
    }

    .header-online-dot::after {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 50%;
      border: 2px solid var(--green-500);
      animation: headerRipple 2s ease-out infinite;
      opacity: 0;
    }

    @keyframes headerRipple {
      0% { transform: scale(1); opacity: 0.7; }
      100% { transform: scale(2.5); opacity: 0; }
    }

    .header-online-count {
      font-weight: 800;
      color: #166534;
    }

    /* CTA Button */
    .header-cta {
      background: linear-gradient(135deg, var(--orange-600), #e8430f);
      color: var(--white);
      border: none;
      padding: 0 18px;
      height: 38px;
      border-radius: var(--radius-sm);
      font-size: 13px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      box-shadow: 0 2px 10px rgba(242, 92, 46, 0.3);
      transition: all var(--transition);
    }

    .header-cta:hover {
      background: var(--orange-700);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(242, 92, 46, 0.4);
    }

    .header-cta i {
      font-size: 12px;
    }

    /* ═══════════════ HERO ═══════════════ */
    .hero {
      background: linear-gradient(165deg, #0a4a48 0%, #0E7C7B 40%, #0d9488 100%);
      padding: 56px 20px 52px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(34,197,94,0.08) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-full);
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 22px;
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--green-400);
      border-radius: 50%;
      animation: heroDotPulse 2s ease-in-out infinite;
    }

    @keyframes heroDotPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
      50% { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
    }

    .hero h1 {
      font-size: clamp(28px, 5.5vw, 52px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -1.5px;
      color: var(--white);
      max-width: 700px;
      margin: 0 auto 14px;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
    }

    .hero h1 .hl {
      color: #fde047;
    }

    .hero-sub {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 400;
      line-height: 1.6;
      max-width: 480px;
      margin: 0 auto 28px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange-600);
      color: var(--white);
      border: none;
      padding: 0 44px;
      height: 54px;
      border-radius: var(--radius-full);
      font-size: 16px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: 0.2px;
      box-shadow: 0 8px 28px rgba(242, 92, 46, 0.45);
      transition: all var(--transition);
    }

    .hero-cta:hover {
      background: var(--orange-700);
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(242, 92, 46, 0.5);
    }

    .hero-perks {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .hero-perk {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-full);
      padding: 5px 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* ═══════════════ REST OF STYLES ═══════════════ */
    /* WA Banner */
    .wa-wrap {
      max-width: 1060px;
      margin: 0 auto;
      padding: 20px 20px 8px;
    }

    .wa-banner {
      background: linear-gradient(90deg, #1d9e6a, #15875a);
      border-radius: var(--radius-xl);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(29, 158, 106, 0.2);
      transition: transform var(--transition);
    }

    .wa-banner:hover { transform: translateY(-2px); }

    .wa-left { display: flex; align-items: center; gap: 10px; }

    .wa-icon {
      width: 40px; height: 40px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }

    .wa-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 1px; }
    .wa-sub { font-size: 11px; color: rgba(255, 255, 255, 0.8); }

    .wa-btn {
      background: var(--white); color: #1d9e6a;
      border: none; padding: 0 16px; height: 34px;
      border-radius: 8px; font-size: 12px; font-weight: 700;
      font-family: inherit; cursor: pointer; flex-shrink: 0;
      text-decoration: none; display: inline-flex; align-items: center;
    }

    /* Section */
    .section { max-width: 1060px; margin: 0 auto; padding: 24px 20px 36px; }

    .section-heading {
      font-size: 20px; font-weight: 800; color: var(--gray-900);
      margin-bottom: 4px; letter-spacing: -0.4px;
    }
    .live-green { color: var(--green-500); }
    .section-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }

    /* Profile Cards */
    .profiles-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    }

    .profile-card {
      background: var(--white); border-radius: var(--radius-lg);
      border: 1px solid #e8e8e8; display: flex; flex-direction: column;
      text-decoration: none; overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s, opacity 0.3s;
      box-shadow: var(--shadow-sm); animation: cardFadeIn 0.4s ease both;
    }

    @keyframes cardFadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    .pc-banner { height: 4px; background: linear-gradient(90deg, var(--teal-700), var(--green-500)); flex-shrink: 0; }

    .pc-body { display: flex; align-items: center; gap: 10px; padding: 10px 12px 4px; }

    .pc-avatar-wrap { position: relative; flex-shrink: 0; }

    .pc-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      object-fit: cover; object-position: top;
      border: 2px solid #e8f4f4; display: block;
    }

    .pc-dot {
      position: absolute; bottom: 1px; right: 1px;
      width: 10px; height: 10px; background: var(--green-500);
      border-radius: 50%; border: 2px solid var(--white);
    }

    .pc-info { flex: 1; min-width: 0; }

    .pc-name {
      font-size: 13px; font-weight: 700; color: var(--gray-900);
      margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .pc-age { font-weight: 400; color: var(--gray-500); font-size: 12px; }

    .pc-meta { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--gray-500); margin-bottom: 3px; }

    .pc-flag-badge {
      background: #f0f0f0; border-radius: 4px; padding: 1px 6px;
      font-size: 10px; font-weight: 700; color: var(--gray-700);
    }

    .pc-status { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 600; }
    .pc-status.typing { color: var(--teal-700); }
    .pc-status.looking { color: #f59e0b; }

    .pc-sdot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
    .pc-sdot.typing { background: var(--teal-700); animation: blink 1.1s ease-in-out infinite; }
    .pc-sdot.looking { background: #f59e0b; }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.25; }
    }

    .pc-actions { display: flex; gap: 6px; padding: 8px 12px 10px; }

    .btn-start-chat {
      flex: 1; background: linear-gradient(135deg, var(--teal-700), #0a9a98);
      color: var(--white); border: none; border-radius: 7px;
      height: 30px; font-size: 11px; font-weight: 700;
      font-family: inherit; cursor: pointer; text-decoration: none;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(14, 124, 123, 0.25); transition: all var(--transition);
    }
    .btn-start-chat:hover { transform: translateY(-1px); }

    .btn-watch-chat {
      flex: 1; background: #f5f5f5; color: var(--gray-700);
      border: none; border-radius: 7px; height: 30px;
      font-size: 11px; font-weight: 600; font-family: inherit;
      cursor: pointer; text-decoration: none;
      display: flex; align-items: center; justify-content: center;
      transition: background var(--transition);
    }
    .btn-watch-chat:hover { background: #ebebeb; }

    .more-link {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      text-align: center; margin-top: 14px; background: var(--white);
      border: 1.5px solid #e0e0e0; border-radius: 12px; padding: 14px;
      font-size: 14px; font-weight: 700; color: var(--orange-600);
      text-decoration: none; transition: all var(--transition);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    .more-link:hover { background: #fff7f5; border-color: var(--orange-600); }

    .more-link .count-badge {
      background: var(--orange-600); color: white;
      border-radius: 20px; padding: 2px 10px;
      font-size: 12px; font-weight: 800;
      animation: countPulse 1.5s ease-in-out infinite;
    }

    @keyframes countPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.08); }
    }

    /* Steps */
    .steps-container {
      display: grid; grid-template-columns: 1fr; gap: 1.5rem;
      max-width: 800px; margin: 0 auto;
    }

    @media (min-width: 768px) {
      .steps-container { grid-template-columns: repeat(3, 1fr); }
    }

    .step-card {
      background: var(--white); border-radius: var(--radius-xl);
      padding: 1.8rem 1.2rem; box-shadow: var(--shadow-md);
      transition: all var(--transition); border: 1px solid #e8e8e8; text-align: center;
    }
    .step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--teal-500); }

    .step-number {
      width: 50px; height: 50px;
      background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      color: var(--white); font-size: 1.3rem; font-weight: 800;
      margin: 0 auto 1rem; position: relative;
    }
    @media (min-width: 768px) { .step-number { width: 64px; height: 64px; font-size: 1.6rem; } }

    .step-number::after {
      content: ""; position: absolute; inset: -5px;
      border-radius: 50%; border: 2px solid var(--teal-500);
      animation: stepPulse 2s infinite;
    }

    @keyframes stepPulse {
      0% { transform: scale(1); opacity: 0.7; }
      100% { transform: scale(1.12); opacity: 0; }
    }

    .step-content h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: #1a1a1a; }
    .step-content p { color: var(--gray-700); margin-bottom: 0.6rem; line-height: 1.5; font-size: 0.9rem; }
    .text-sm { font-size: 0.8rem; }
    .text-muted { color: var(--gray-500); }
    .text-success { color: var(--green-500); }

    /* Stats */
    .stats-section {
      background: linear-gradient(135deg, var(--teal-800), var(--teal-700), #0fa09e);
      padding: 36px 20px;
    }

    .stats-inner {
      max-width: 1060px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; text-align: center;
    }
    @media (min-width: 640px) { .stats-inner { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

    .stat-card {
      background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg);
      padding: 18px 12px; border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
    }

    .stat-val { font-size: 26px; font-weight: 900; color: var(--white); letter-spacing: -1px; line-height: 1; transition: all 0.3s ease; }
    .stat-val.updating { transform: scale(1.1); color: #fde047; }
    .stat-label { font-size: 11px; color: rgba(255, 255, 255, 0.75); margin-top: 4px; font-weight: 500; }

    /* Testimonials */
    .testi-section { max-width: 1060px; margin: 0 auto; padding: 36px 20px; }
    .testi-heading { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; letter-spacing: -0.4px; text-align: center; }
    .testi-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; text-align: center; }

    .testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    @media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

    .testi-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 16px; border: 1px solid #e8e8e8;
      box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
    }
    .testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

    .testi-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
    .testi-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 13px; color: var(--white); flex-shrink: 0;
    }
    .testi-name { font-weight: 700; font-size: 13px; color: var(--gray-900); }
    .testi-flag { font-size: 11px; color: var(--gray-500); }
    .testi-earn { font-size: 13px; font-weight: 700; color: var(--green-500); margin-bottom: 4px; }
    .testi-quote { font-size: 12px; color: var(--gray-700); font-style: italic; line-height: 1.4; }

    /* FAQ */
    .faq-section { background: var(--white); padding: 40px 20px; }
    .faq-inner { max-width: 720px; margin: 0 auto; }
    .faq-heading { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; letter-spacing: -0.4px; }
    .faq-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; }

    .faq-item {
      border: 1px solid var(--gray-200); border-radius: 10px;
      margin-bottom: 7px; overflow: hidden; transition: border-color var(--transition);
    }

    .faq-q {
      width: 100%; background: var(--white); border: none;
      padding: 14px 16px; font-size: 13.5px; font-weight: 600;
      color: var(--gray-900); font-family: inherit; cursor: pointer;
      text-align: left; display: flex; justify-content: space-between;
      align-items: center; gap: 10px; transition: background var(--transition);
    }
    .faq-q:hover { background: var(--teal-50); }

    .faq-icon {
      width: 24px; height: 24px; background: #f0f0f0;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 14px; color: var(--gray-500); flex-shrink: 0;
      transition: transform 0.25s, background var(--transition);
    }

    .faq-a { display: none; padding: 0 16px 14px; font-size: 12.5px; color: var(--gray-700); line-height: 1.6; }
    .faq-item.open .faq-a { display: block; }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal-700); color: var(--white); }
    .faq-item.open { border-color: var(--teal-700); }

    /* Footer CTA */
    .footer-cta {
      background: linear-gradient(160deg, var(--teal-800), var(--teal-700));
      padding: 48px 20px; text-align: center;
    }
    .footer-cta h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 900; color: var(--white); letter-spacing: -1px; margin-bottom: 8px; }
    .footer-cta p { font-size: 14px; color: rgba(255, 255, 255, 0.8); margin-bottom: 24px; }
    .footer-trust { font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-top: 12px; }

    /* Footer */
    footer { background: #111111; padding: 24px 20px; }
    .footer-inner {
      max-width: 1060px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
    .footer-logo-img {
      width: 32px; height: 32px; border-radius: 50%; overflow: hidden;
      background: #1e3a3a; flex-shrink: 0; border: 1px solid #2a5a5a;
    }
    .footer-logo-img img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
    .footer-logo-name { font-size: 13px; font-weight: 700; color: var(--white); }
    .footer-logo-name span { color: var(--green-400); }
    .footer-logo-sub { font-size: 10px; color: #666666; }

    .footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
    .footer-links a { font-size: 12px; color: #aaaaaa; text-decoration: none; font-weight: 500; transition: color var(--transition); }
    .footer-links a:hover { color: var(--white); }

    .footer-social { display: flex; gap: 10px; }
    .footer-social a { font-size: 11.5px; color: #aaaaaa; text-decoration: none; font-weight: 500; transition: color var(--transition); }
    .footer-social a:hover { color: var(--white); }

    .footer-copy { font-size: 11px; color: #555555; width: 100%; text-align: center; margin-top: 8px; }

    /* Ticker */
    .ticker {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--white); border-top: 1.5px solid #f0f0f0;
      padding: 5px 0; height: 30px; overflow: hidden;
      z-index: 100; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04);
    }
    .ticker-track { display: flex; gap: 36px; white-space: nowrap; animation: tick 25s linear infinite; }
    .ticker:hover .ticker-track { animation-play-state: paused; }

    @keyframes tick {
      0% { transform: translate3d(0, 0, 0); }
      100% { transform: translate3d(-50%, 0, 0); }
    }

    .t-item { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--gray-700); flex-shrink: 0; }
    .t-check {
      width: 15px; height: 15px; background: var(--green-500);
      border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .t-check svg { width: 7px; height: 7px; stroke: var(--white); stroke-width: 2.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
    .t-item strong { color: var(--gray-900); font-weight: 600; }
    .t-amt { color: var(--green-500); font-weight: 700; }

    /* Toast */
    .toast-wrap {
      position: fixed; bottom: 42px; left: 8px; z-index: 400;
      display: flex; flex-direction: column; gap: 6px; pointer-events: none;
    }
    .toast {
      background: var(--white); border: 1px solid #e8e8e8;
      border-radius: var(--radius-lg); padding: 10px 12px;
      display: flex; align-items: center; gap: 8px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      max-width: 240px; animation: toastIn 0.4s cubic-bezier(0.32, 1.1, 0.55, 1) both;
    }

    @keyframes toastIn {
      from { opacity: 0; transform: translate3d(-14px, 0, 0) scale(0.97); }
      to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
    }
    .toast.out { animation: toastOut 0.3s ease forwards; }
    @keyframes toastOut { to { opacity: 0; transform: translate3d(-14px, 0, 0) scale(0.96); } }

    .t-icon {
      width: 24px; height: 24px;
      background: linear-gradient(135deg, var(--green-500), #16a34a);
      border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .t-icon svg { width: 10px; height: 10px; stroke: var(--white); stroke-width: 2.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
    .t-body { flex: 1; min-width: 0; }
    .t-line { font-size: 11px; color: #333333; line-height: 1.4; }
    .t-line strong { font-weight: 700; color: var(--gray-900); }
    .t-line .t-green { color: var(--green-500); font-weight: 700; }
    .t-ago { font-size: 10px; color: #cccccc; white-space: nowrap; flex-shrink: 0; }

    /* ═══════════════ RESPONSIVE ═══════════════ */
    @media (max-width: 1024px) { .profiles-grid { grid-template-columns: repeat(3, 1fr); } }

    @media (max-width: 768px) {
      .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .header-inner { padding: 0 14px; height: 54px; }
      .header-logo-img { width: 34px; height: 34px; }
      .header-logo-name { font-size: 15px; }
      .header-logo-tagline { display: none; }
      .header-online { padding: 4px 10px; font-size: 11px; gap: 4px; }
      .header-online-dot { width: 6px; height: 6px; }
      .header-cta { padding: 0 14px; height: 34px; font-size: 12px; }
    }

    @media (max-width: 480px) {
      .header-inner { padding: 0 10px; height: 50px; gap: 6px; }
      .header-logo { gap: 7px; }
      .header-logo-img { width: 30px; height: 30px; }
      .header-logo-name { font-size: 13px; }
      .header-online { padding: 3px 8px; font-size: 10px; gap: 3px; }
      .header-online-dot { width: 5px; height: 5px; }
      .header-cta { padding: 0 10px; height: 30px; font-size: 11px; gap: 4px; }
      .header-cta i { font-size: 10px; }
      .hero { padding: 36px 14px 40px; }
      .hero h1 { font-size: 26px; letter-spacing: -0.8px; }
      .hero-sub { font-size: 13px; }
      .hero-cta { padding: 0 28px; height: 46px; font-size: 14px; }
      .hero-perks { gap: 6px; }
      .hero-perk { font-size: 10px; padding: 4px 8px; }
      .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
      .pc-avatar { width: 38px; height: 38px; }
      .pc-name { font-size: 11px; }
      .btn-start-chat, .btn-watch-chat { font-size: 10px; height: 26px; }
      .testi-grid { grid-template-columns: 1fr; }
      .wa-wrap, .section, .testi-section { padding-left: 14px; padding-right: 14px; }
      .footer-inner { flex-direction: column; align-items: center; text-align: center; }
      .footer-links, .footer-social { justify-content: center; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .stat-val { font-size: 22px; }
      .stat-label { font-size: 10px; }
      .toast { max-width: 200px; }
      .toast-wrap { left: 6px; bottom: 36px; }
    }