
    /* ===== CSS VARIABLES ===== */
    :root {
      --bg-primary: #0a0a0f;
      --bg-secondary: #0d0d1a;
      --card-bg: #1a1a2e;
      --card-border: rgba(124, 58, 237, 0.15);
      --accent: #7c3aed;
      --accent-light: #9d5cf5;
      --accent-glow: rgba(124, 58, 237, 0.4);
      --cyan: #06b6d4;
      --cyan-glow: rgba(6, 182, 212, 0.3);
      --gold: #f59e0b;
      --gold-glow: rgba(245, 158, 11, 0.3);
      --green: #10b981;
      --red: #ef4444;
      --text-primary: #f1f5f9;
      --text-secondary: #94a3b8;
      --text-muted: #64748b;
      --nav-height: 70px;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --transition: 0.3s ease;
      --font: 'Outfit', sans-serif;
      --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.2);
      --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font);
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.7;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    ul, ol { list-style: none; }
    button { cursor: pointer; font-family: var(--font); }
    input, select, textarea { font-family: var(--font); }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-primary); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

    /* ===== ANIMATED BG ===== */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 800px 600px at 20% 10%, rgba(124,58,237,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 600px 500px at 80% 80%, rgba(6,182,212,0.04) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      height: var(--nav-height);
      background: rgba(10, 10, 15, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      flex-shrink: 0;
    }
    .nav-logo .logo-icon {
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, var(--accent), var(--cyan));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 0 16px var(--accent-glow);
    }
    .logo-soju { color: var(--accent-light); }
    .logo-88 { color: var(--cyan); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-links a {
      padding: 7px 14px;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-secondary);
      transition: color var(--transition), background var(--transition);
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--text-primary);
      background: rgba(124, 58, 237, 0.15);
    }
    .nav-links a.active { color: var(--accent-light); }
    .nav-cta {
      padding: 8px 20px !important;
      background: linear-gradient(135deg, var(--accent), #5b21b6) !important;
      color: white !important;
      border-radius: var(--radius-sm) !important;
      font-weight: 600 !important;
      box-shadow: 0 0 16px var(--accent-glow);
    }
    .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 8px;
      cursor: pointer;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-secondary);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ===== BREADCRUMB ===== */
    .breadcrumb-bar {
      background: rgba(26, 26, 46, 0.5);
      border-bottom: 1px solid rgba(124, 58, 237, 0.1);
      padding: 12px 0;
      position: relative;
      z-index: 1;
    }
    .breadcrumb-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .breadcrumb a {
      color: var(--text-muted);
      transition: color var(--transition);
    }
    .breadcrumb a:hover { color: var(--accent-light); }
    .breadcrumb .sep { color: var(--text-muted); opacity: 0.5; font-size: 0.7rem; }
    .breadcrumb .current { color: var(--accent-light); font-weight: 500; }

    /* ===== HERO ===== */
    .page-hero {
      position: relative;
      z-index: 1;
      padding: 72px 24px 60px;
      text-align: center;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(124,58,237,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.12);
      border: 1px solid rgba(124, 58, 237, 0.3);
      color: var(--accent-light);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      animation: fadeInDown 0.6s ease forwards;
    }
    .hero-badge .dot {
      width: 7px; height: 7px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-title {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 16px;
      animation: fadeInUp 0.7s ease 0.1s both;
    }
    .hero-title .grad {
      background: linear-gradient(135deg, var(--accent-light), var(--cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 560px;
      margin: 0 auto 32px;
      animation: fadeInUp 0.7s ease 0.2s both;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      animation: fadeInUp 0.7s ease 0.3s both;
    }
    .hero-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .hero-stat strong {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--gold);
    }
    .hero-stat span {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .hero-divider {
      width: 1px;
      height: 36px;
      background: rgba(255,255,255,0.1);
    }

    /* ===== MAIN LAYOUT ===== */
    .page-main {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px 80px;
    }

    /* ===== CONTACT GRID ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 32px;
      margin-bottom: 64px;
      align-items: start;
    }

    /* ===== GLASS CARD ===== */
    .glass-card {
      background: rgba(26, 26, 46, 0.7);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-xl);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      overflow: hidden;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .glass-card:hover {
      border-color: rgba(124, 58, 237, 0.3);
      box-shadow: var(--shadow-glow);
    }
    .card-header {
      padding: 28px 32px 0;
    }
    .card-title {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .card-title .icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .icon-purple { background: rgba(124,58,237,0.2); }
    .icon-cyan { background: rgba(6,182,212,0.15); }
    .card-subtitle { font-size: 0.875rem; color: var(--text-muted); }
    .card-body { padding: 24px 32px 32px; }

    /* ===== CONTACT FORM ===== */
    .contact-form { display: flex; flex-direction: column; gap: 20px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-secondary);
      letter-spacing: 0.3px;
    }
    .form-label .required { color: var(--accent-light); margin-left: 3px; }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 13px 16px;
      background: rgba(10, 10, 15, 0.6);
      border: 1px solid rgba(124, 58, 237, 0.2);
      border-radius: var(--radius-md);
      color: var(--text-primary);
      font-size: 0.925rem;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
      outline: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
      background: rgba(26, 26, 46, 0.8);
    }
    .form-input::placeholder, .form-textarea::placeholder {
      color: var(--text-muted);
    }
    .form-select {
      appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
    }
    .form-select option { background: #1a1a2e; color: var(--text-primary); }
    .form-textarea {
      resize: vertical;
      min-height: 140px;
      line-height: 1.6;
    }
    .char-count {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-align: right;
      margin-top: -4px;
    }
    .form-hint {
      font-size: 0.775rem;
      color: var(--text-muted);
      margin-top: -4px;
    }
    .form-hint a { color: var(--accent-light); }
    .form-hint a:hover { text-decoration: underline; }
    .btn-submit {
      width: 100%;
      padding: 15px 28px;
      background: linear-gradient(135deg, var(--accent), #5b21b6);
      border: none;
      border-radius: var(--radius-md);
      color: white;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
      box-shadow: 0 4px 20px var(--accent-glow);
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px var(--accent-glow);
    }
    .btn-submit:active { transform: translateY(0); }
    .btn-submit svg { width: 18px; height: 18px; }
    .form-notice {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: rgba(124, 58, 237, 0.08);
      border: 1px solid rgba(124, 58, 237, 0.2);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .form-notice .notice-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

    /* ===== CONTACT INFO ===== */
    .info-stack { display: flex; flex-direction: column; gap: 20px; }
    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 16px;
      background: rgba(10, 10, 15, 0.4);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: var(--radius-md);
      transition: background var(--transition), border-color var(--transition);
    }
    .info-item:hover {
      background: rgba(124, 58, 237, 0.08);
      border-color: rgba(124, 58, 237, 0.2);
    }
    .info-item a { transition: color var(--transition); }
    .info-item a:hover { color: var(--accent-light); }
    .info-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .info-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-muted);
      margin-bottom: 2px;
    }
    .info-value {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-primary);
      word-break: break-all;
    }
    .info-desc {
      font-size: 0.775rem;
      color: var(--text-muted);
      margin-top: 2px;
    }
    .response-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: var(--green);
      padding: 5px 12px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      margin-top: 6px;
    }

    /* Social colors */
    .bg-discord { background: rgba(88,101,242,0.15); }
    .bg-instagram { background: rgba(225,48,108,0.12); }
    .bg-twitter { background: rgba(29,155,240,0.12); }
    .bg-youtube { background: rgba(255,0,0,0.1); }
    .bg-tiktok { background: rgba(105,201,208,0.1); }
    .bg-email { background: rgba(124,58,237,0.15); }
    .bg-address { background: rgba(245,158,11,0.1); }
    .bg-time { background: rgba(16,185,129,0.1); }

    /* ===== ADDRESS BLOCK ===== */
    address {
      font-style: normal;
    }

    /* ===== TOPICS SECTION ===== */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--accent-light);
      margin-bottom: 12px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 16px;
      height: 2px;
      background: var(--accent);
      border-radius: 1px;
    }
    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }
    .section-desc {
      color: var(--text-secondary);
      font-size: 0.975rem;
      margin-bottom: 36px;
      max-width: 580px;
    }
    .topics-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
      margin-bottom: 64px;
    }
    .topic-card {
      background: rgba(26, 26, 46, 0.7);
      border: 1px solid rgba(124, 58, 237, 0.12);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
      position: relative;
      overflow: hidden;
    }
    .topic-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(124,58,237,0.05), transparent);
      opacity: 0;
      transition: opacity var(--transition);
    }
    .topic-card:hover {
      transform: translateY(-4px);
      border-color: rgba(124, 58, 237, 0.3);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(124,58,237,0.1);
    }
    .topic-card:hover::before { opacity: 1; }
    .topic-icon {
      font-size: 2rem;
      margin-bottom: 14px;
      display: block;
    }
    .topic-name {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-primary);
    }
    .topic-desc {
      font-size: 0.825rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .topic-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--accent-light);
      margin-top: 12px;
      transition: gap var(--transition);
    }
    .topic-link:hover { gap: 8px; }

    /* ===== FAQ SECTION ===== */
    .faq-section { margin-bottom: 64px; }
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: rgba(26, 26, 46, 0.6);
      border: 1px solid rgba(124, 58, 237, 0.12);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color var(--transition);
    }
    .faq-item:hover { border-color: rgba(124, 58, 237, 0.25); }
    .faq-question {
      width: 100%;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: none;
      border: none;
      color: var(--text-primary);
      font-size: 0.975rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      transition: color var(--transition);
    }
    .faq-question:hover { color: var(--accent-light); }
    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--text-muted);
      transition: transform var(--transition), color var(--transition);
    }
    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      color: var(--accent-light);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 24px;
    }
    .faq-item.open .faq-answer {
      max-height: 200px;
      padding: 0 24px 20px;
    }
    .faq-answer p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }
    .faq-answer a { color: var(--accent-light); }
    .faq-answer a:hover { text-decoration: underline; }

    /* ===== MAP SECTION ===== */
    .map-section { margin-bottom: 64px; }
    .map-wrapper {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid rgba(124, 58, 237, 0.2);
    }
    .map-placeholder {
      width: 100%;
      height: 360px;
      background:
        linear-gradient(135deg, rgba(26,26,46,0.95), rgba(10,10,15,0.98)),
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(124,58,237,0.07) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(124,58,237,0.07) 40px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
      overflow: hidden;
    }
    .map-placeholder::before {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 60%);
      border-radius: 50%;
      animation: map-pulse 3s ease-in-out infinite;
    }
    @keyframes map-pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.3); opacity: 0.8; }
    }
    .map-pin {
      font-size: 3rem;
      position: relative;
      z-index: 1;
      animation: pin-bounce 2s ease-in-out infinite;
      filter: drop-shadow(0 4px 12px rgba(124,58,237,0.6));
    }
    @keyframes pin-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .map-info {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .map-info h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .map-info p {
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .map-btn {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.2);
      border: 1px solid rgba(124, 58, 237, 0.4);
      color: var(--accent-light);
      padding: 10px 20px;
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      font-weight: 600;
      transition: background var(--transition), transform var(--transition);
    }
    .map-btn:hover {
      background: rgba(124, 58, 237, 0.3);
      transform: translateY(-2px);
    }

    /* ===== INTERNAL LINKS ===== */
    .internal-links-section { margin-bottom: 64px; }
    .internal-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
    }
    .int-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 18px;
      background: rgba(26, 26, 46, 0.5);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-secondary);
      transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
    }
    .int-link:hover {
      color: var(--text-primary);
      background: rgba(124, 58, 237, 0.1);
      border-color: rgba(124, 58, 237, 0.25);
      transform: translateX(3px);
    }
    .int-link .il-icon { font-size: 1.1rem; flex-shrink: 0; }

    /* ===== FOOTER ===== */
    .site-footer {
      position: relative;
      z-index: 1;
      background: rgba(13, 13, 26, 0.95);
      border-top: 1px solid rgba(124, 58, 237, 0.15);
      padding: 64px 24px 28px;
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand .nav-logo { margin-bottom: 16px; }
    .footer-brand p {
      font-size: 0.875rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .footer-social {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .social-btn {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      transition: background var(--transition), transform var(--transition), border-color var(--transition);
    }
    .social-btn:hover {
      background: rgba(124, 58, 237, 0.2);
      border-color: rgba(124, 58, 237, 0.4);
      transform: translateY(-2px);
    }
    .footer-col h4 {
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-primary);
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 0.875rem;
      color: var(--text-muted);
      transition: color var(--transition), padding-left var(--transition);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-col ul li a:hover {
      color: var(--accent-light);
      padding-left: 4px;
    }
    .footer-col ul li a::before {
      content: '›';
      color: var(--accent);
      font-size: 1rem;
      line-height: 1;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .footer-copy a { color: var(--accent-light); }
    .footer-copy a:hover { text-decoration: underline; }
    .footer-legal {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-legal a {
      font-size: 0.8rem;
      color: var(--text-muted);
      transition: color var(--transition);
    }
    .footer-legal a:hover { color: var(--accent-light); }
    .footer-disclaimer {
      margin-top: 20px;
      padding: 14px 18px;
      background: rgba(245, 158, 11, 0.06);
      border: 1px solid rgba(245, 158, 11, 0.15);
      border-radius: var(--radius-sm);
      font-size: 0.775rem;
      color: var(--text-muted);
      line-height: 1.6;
      text-align: center;
    }

    /* ===== SUCCESS MESSAGE ===== */
    .form-success {
      display: none;
      align-items: center;
      gap: 16px;
      padding: 20px 24px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.3);
      border-radius: var(--radius-md);
      color: var(--green);
      font-weight: 600;
    }
    .form-success.show { display: flex; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        border-bottom: 1px solid rgba(124, 58, 237, 0.2);
        padding: 16px;
        gap: 4px;
      }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal { justify-content: center; }
      .topics-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .page-hero { padding: 48px 20px 40px; }
      .hero-stats { gap: 20px; }
      .topics-grid { grid-template-columns: 1fr; }
      .internal-links-grid { grid-template-columns: 1fr 1fr; }
    }
  
