  :root {
      --bg-deep: #020812;
      --bg-surface: rgba(10, 20, 45, 0.75);
      --glass-border: rgba(255, 255, 255, 0.08);
      --blur-amount: 24px;
      --deep-blue: #061030;
      --medium-blue: #1a3d78;
      --bright-blue: #2563eb;
      --accent-blue: #3b82f6;
      --light-blue: #60a5fa;
      --cyan: #06b6d4;
      --white: #ffffff;
      --off-white: #e2e8f0;
      --orange: #f97316;
      --orange-light: #fb923c;
      --orange-glow: rgba(249, 115, 22, 0.5);
      --blue-glow: rgba(59, 130, 246, 0.4);
      --cyan-glow: rgba(6, 182, 212, 0.3);
      --text-primary: #f1f5f9;
      --text-secondary: #94a3b8;
      --text-muted: #64748b;
      --font-armenian: 'Noto Serif Armenian', serif;
      --font-sans: 'Inter', sans-serif;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      --header-bg: rgba(2,8,18,0.8);
      --ticker-bg: rgba(6,16,40,0.5);
      --faq-bg: rgba(10,25,50,0.5);
      --contact-bg: rgba(10,25,50,0.6);
      --footer-bg: rgba(2,8,18,0.8);
      --input-bg: rgba(255,255,255,0.04);
      --hero-overlay-1: rgba(37,99,235,0.12);
      --hero-overlay-2: rgba(6,182,212,0.08);
    }

    [data-theme="light"] {
      --bg-deep: #f0f4f8;
      --bg-surface: rgba(255, 255, 255, 0.75);
      --glass-border: rgba(0, 0, 0, 0.08);
      --text-primary: #0f172a;
      --text-secondary: #475569;
      --text-muted: #64748b;
      --header-bg: rgba(240,244,248,0.85);
      --ticker-bg: rgba(255,255,255,0.5);
      --faq-bg: rgba(255,255,255,0.6);
      --contact-bg: rgba(255,255,255,0.7);
      --footer-bg: rgba(240,244,248,0.9);
      --input-bg: rgba(0,0,0,0.04);
      --hero-overlay-1: rgba(37,99,235,0.05);
      --hero-overlay-2: rgba(6,182,212,0.03);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--bg-deep); }

    body {
      font-family: var(--font-sans);
      background: var(--bg-deep);
      color: var(--text-primary);
      line-height: 1.7;
      overflow-x: hidden;
      cursor: none;
      transition: background 0.5s, color 0.5s;
    }

    .cursor-dot, .cursor-ring {
      position: fixed; pointer-events: none; z-index: 9999;
      border-radius: 50%; transform: translate(-50%, -50%);
    }
    .cursor-dot { width: 8px; height: 8px; background: var(--cyan); box-shadow: 0 0 20px var(--cyan-glow); }
    .cursor-ring { width: 40px; height: 40px; border: 2px solid rgba(6,182,212,0.5); transition: all 0.1s ease; }
    .cursor-ring.hover { width: 60px; height: 60px; border-color: var(--orange); }

    .theme-toggle {
      position: fixed; top: 100px; right: 20px; z-index: 998;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--bg-surface); backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: var(--text-primary);
      transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .theme-toggle:hover { transform: scale(1.1); }

    .loader {
      position: fixed; inset: 0; z-index: 10000;
      background: #020812; display: flex;
      flex-direction: column; align-items: center; justify-content: center;
      transition: opacity 0.8s, visibility 0.8s;
    }
    .loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader-canvas { width: 200px; height: 200px; }
    .loader-text {
      font-family: var(--font-armenian); font-size: 2.5rem; font-weight: 900;
      background: linear-gradient(135deg, var(--cyan), var(--orange));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      margin-top: 16px; animation: pulse 1.5s ease-in-out infinite;
    }
    .loader-progress { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 10px; margin-top: 16px; overflow: hidden; }
    .loader-progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--cyan), var(--orange)); border-radius: 10px; transition: width 0.1s; }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

    .stars-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

    .glass {
      background: var(--bg-surface); backdrop-filter: blur(var(--blur-amount));
      -webkit-backdrop-filter: blur(var(--blur-amount)); border: 1px solid var(--glass-border);
      border-radius: var(--radius-md); box-shadow: 0 25px 50px rgba(0,0,0,0.3); transition: all var(--transition);
    }
    .glass:hover { border-color: rgba(59, 130, 246, 0.3); box-shadow: 0 35px 60px rgba(0,0,0,0.4), 0 0 40px var(--blue-glow); transform: translateY(-6px); }

    .btn {
      display: inline-flex; align-items: center; gap: 10px; padding: 15px 36px; border-radius: 60px;
      font-weight: 600; font-size: 0.95rem; letter-spacing: 0.3px; text-decoration: none;
      transition: all 0.35s ease; border: none; cursor: pointer; font-family: var(--font-sans);
      position: relative; overflow: hidden;
    }
    .btn::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.2); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; }
    .btn:hover::after { width: 300px; height: 300px; }
    .btn-primary { background: linear-gradient(135deg, var(--bright-blue), var(--cyan)); color: #fff; box-shadow: 0 10px 30px -8px var(--blue-glow); }
    .btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 45px -10px var(--cyan-glow); }
    .btn-outline { border: 2px solid var(--orange); color: var(--orange); background: rgba(249,115,22,0.05); }
    .btn-outline:hover { background: var(--orange); color: #fff; box-shadow: 0 15px 35px var(--orange-glow); }
    .btn-service {
      display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 50px;
      font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: all 0.3s ease;
      border: 1px solid var(--cyan); color: var(--cyan); background: rgba(6,182,212,0.05); cursor: pointer;
      font-family: var(--font-sans); margin-top: 12px;
    }
    .btn-service:hover { background: var(--cyan); color: #020812; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(6,182,212,0.3); }

    .header {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 18px 0; transition: all 0.4s;
      background: var(--header-bg); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border);
    }
    .header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; }
    .logo {
      font-family: var(--font-armenian); font-size: 2.2rem; font-weight: 900;
      background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 80%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .logo span { background: linear-gradient(135deg, var(--orange), var(--orange-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .nav-links { display: flex; gap: 30px; align-items: center; }
    .nav-links a { font-weight: 500; color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: all 0.25s; position: relative; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--cyan); transition: width 0.3s; }
    .nav-links a:hover { color: var(--text-primary); }
    .nav-links a:hover::after { width: 100%; }
    .phone-header { background: rgba(59,130,246,0.15); padding: 10px 20px; border-radius: 50px; color: var(--light-blue); font-weight: 600; text-decoration: none; font-size: 0.9rem; border: 1px solid rgba(59,130,246,0.3); }
    .lang-switch { display: flex; gap: 6px; margin-right: 12px; }
    .lang-btn { padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; background: transparent; color: var(--text-muted); border: 1px solid var(--glass-border); cursor: pointer; transition: 0.3s; font-family: var(--font-sans); }
    .lang-btn.active, .lang-btn:hover { background: var(--bright-blue); color: #fff; border-color: var(--bright-blue); }

    .mobile-nav { display: none; }
    .burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
    .burger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: 0.3s; }

    .hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 100px 0 60px; background: radial-gradient(ellipse at 50% 0%, var(--hero-overlay-1) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, var(--hero-overlay-2) 0%, transparent 50%); }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .hero-badge { display: inline-block; padding: 8px 20px; background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); border-radius: 50px; font-size: 0.8rem; color: var(--light-blue); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
    .hero-title { font-family: var(--font-armenian); font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; color: var(--text-primary); }
    .hero-gradient { background: linear-gradient(135deg, var(--cyan), var(--blue-glow), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero-desc { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 30px; max-width: 85%; }
    .hero-stats { display: flex; gap: 30px; margin-bottom: 30px; }
    .hero-stat { text-align: center; }
    .hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--cyan); }
    .hero-stat-lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .model-viewer-wrap { width: 100%; height: 450px; border-radius: var(--radius-xl); overflow: hidden; background: rgba(10,25,50,0.3); backdrop-filter: blur(8px); border: 1px solid var(--glass-border); position: relative; }
    .model-viewer-wrap::before { content: ''; position: absolute; inset: -2px; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--cyan), transparent, var(--orange)); z-index: -1; opacity: 0.3; filter: blur(20px); }
    model-viewer { width: 100%; height: 100%; }

    .ticker-wrap { overflow: hidden; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: var(--ticker-bg); padding: 14px 0; }
    .ticker { display: flex; gap: 40px; animation: ticker 30s linear infinite; white-space: nowrap; width: max-content; }
    .ticker span { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
    .ticker em { color: var(--cyan); font-style: normal; margin: 0 8px; }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    .section { padding: 100px 0; position: relative; }
    .section-label { text-align: center; color: var(--cyan); font-weight: 600; text-transform: uppercase; letter-spacing: 3px; font-size: 0.78rem; margin-bottom: 12px; }
    .section-title { font-family: var(--font-armenian); font-size: 2.5rem; font-weight: 700; text-align: center; color: var(--text-primary); margin-bottom: 50px; }

    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
    .service-card { padding: 40px 28px; text-align: center; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
    .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--bright-blue), var(--cyan)); transform: scaleX(0); transition: transform 0.5s; transform-origin: left; }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: rgba(59,130,246,0.1); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; transition: all 0.4s; }
    .service-card:hover .service-icon { background: rgba(6,182,212,0.2); transform: rotateY(180deg); }
    .service-card h3 { font-family: var(--font-armenian); font-size: 1.3rem; margin-bottom: 10px; color: var(--text-primary); }
    .service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 4px; }

    .social-section { padding: 80px 0; background: var(--ticker-bg); text-align: center; }
    .social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; max-width: 900px; margin: 40px auto 0; }
    .social-card { background: var(--bg-surface); backdrop-filter: blur(var(--blur-amount)); border: 1px solid var(--glass-border); border-radius: var(--radius-md); padding: 30px 20px; text-align: center; transition: all var(--transition); text-decoration: none; color: var(--text-primary); display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .social-card:hover { transform: translateY(-8px); border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px var(--blue-glow); }
    .social-card i { font-size: 2.5rem; transition: transform 0.3s; }
    .social-card:hover i { transform: scale(1.2); }
    .social-card.fb:hover i { color: #1877f2; }
    .social-card.ig:hover i { color: #e4405f; }
    .social-card.tw:hover i { color: #1da1f2; }
    .social-card.li:hover i { color: #0a66c2; }
    .social-card.yt:hover i { color: #ff0000; }
    .social-card.tg:hover i { color: #0088cc; }
    .social-card span { font-weight: 600; font-size: 0.9rem; }

    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
    .why-image { height: 400px; border-radius: var(--radius-xl); overflow: hidden; background: url('neanet1.png') center/cover; border: 1px solid var(--glass-border); transition: transform 0.5s; }
    .why-image:hover { transform: scale(1.02); }
    .why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
    .why-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-primary); }
    .why-check { width: 28px; height: 28px; background: rgba(6,182,212,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cyan); flex-shrink: 0; font-weight: 700; }

    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .faq-card { padding: 28px; border-radius: var(--radius-md); background: var(--faq-bg); border: 1px solid var(--glass-border); transition: all 0.35s; cursor: pointer; }
    .faq-card:hover { border-color: var(--cyan); }
    .faq-card h4 { color: var(--text-primary); margin-bottom: 8px; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
    .faq-card h4 i { color: var(--cyan); font-size: 1rem; }
    .faq-card p { color: var(--text-muted); font-size: 0.9rem; max-height: 0; overflow: hidden; transition: max-height 0.4s; }
    .faq-card.open p { max-height: 150px; margin-top: 8px; }

    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; background: var(--contact-bg); backdrop-filter: blur(20px); border-radius: var(--radius-xl); padding: 50px; border: 1px solid var(--glass-border); }
    .contact-info-item { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; color: var(--text-primary); }
    .contact-icon { width: 50px; height: 50px; background: rgba(59,130,246,0.15); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
    .social-links { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
    .social-link { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s; border: 1px solid var(--glass-border); color: var(--text-secondary); text-decoration: none; }
    .social-link:hover { background: var(--bright-blue); border-color: var(--bright-blue); color: #fff; transform: translateY(-4px); }
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .contact-form input, .contact-form textarea { width: 100%; padding: 14px 18px; background: var(--input-bg); border: 1px solid var(--glass-border); border-radius: 14px; color: var(--text-primary); font-family: var(--font-sans); font-size: 0.9rem; outline: none; transition: border-color 0.3s; }
    .contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); }
    .contact-form input:focus, .contact-form textarea:focus { border-color: var(--cyan); }
    .map-wrap { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--glass-border); height: 300px; margin-top: 30px; }
    .map-wrap iframe { width: 100%; height: 100%; border: none; }

    .footer { border-top: 1px solid var(--glass-border); padding: 50px 0 24px; background: var(--footer-bg); }
    .footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-bottom: 30px; }
    .footer-col h4 { color: var(--text-primary); margin-bottom: 14px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
    .footer-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 8px; font-size: 0.88rem; }
    .footer-col a:hover { color: var(--cyan); }
    .footer-social { display: flex; gap: 12px; margin-top: 12px; }
    .footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.9rem; transition: 0.3s; text-decoration: none; border: 1px solid var(--glass-border); }
    .footer-social a:hover { color: #fff; background: var(--bright-blue); }
    .footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.8rem; padding-top: 20px; border-top: 1px solid var(--glass-border); }

    .back-to-top { position: fixed; bottom: 30px; right: 30px; z-index: 996; width: 50px; height: 50px; border-radius: 50%; background: var(--bright-blue); color: #fff; border: none; font-size: 1.3rem; cursor: pointer; opacity: 0; transform: translateY(20px); transition: all 0.3s; box-shadow: 0 10px 30px rgba(37,99,235,0.4); }
    .back-to-top.visible { opacity: 1; transform: translateY(0); }
    .back-to-top:hover { background: var(--cyan); transform: translateY(-4px); }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
    .animate { animation: fadeUp 0.8s ease forwards; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
    .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.3); transform: scale(0); animation: rippleEffect 0.6s linear; pointer-events: none; }
    @keyframes rippleEffect { to { transform: scale(4); opacity: 0; } }

    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      body { cursor: auto; }
      .cursor-dot, .cursor-ring { display: none; }
      .hero-grid, .why-grid, .contact-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-deep); z-index: 999; align-items: center; justify-content: center; gap: 30px; font-size: 1.3rem; }
      .burger { display: flex; z-index: 1001; }
      .model-viewer-wrap { height: 300px; }
      .theme-toggle { top: 80px; right: 10px; }
      .services-grid { grid-template-columns: 1fr; }
      .social-grid { grid-template-columns: repeat(3, 1fr); }
      .lang-switch { gap: 4px; }
      .lang-btn { padding: 4px 8px; font-size: 0.7rem; }
    }
    @media (max-width: 480px) {
      .social-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-stats { gap: 16px; }
      .hero-stat-num { font-size: 1.5rem; }
    }
    /* ═══════════ FOOTER ═══════════ */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 50px 0 24px;
  background: var(--footer-bg);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

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

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.88rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-col a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
  border: 1px solid var(--glass-border);
}

.footer-social a:hover {
  color: #fff;
  background: var(--bright-blue);
  border-color: var(--bright-blue);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

/* ═══════════ COOKIE CONSENT ═══════════ */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  max-width: 600px;
  width: calc(100% - 40px);
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  animation: cookieSlideUp 0.5s ease;
  border: none;
}

.cookie-consent::backdrop {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-consent-content {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-content p {
  flex: 1;
  min-width: 250px;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-consent-content p a {
  color: var(--cyan);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-consent-content p a:hover {
  color: var(--orange);
}

.cookie-consent .btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 12px 28px;
  font-size: 0.9rem;
}

/* ═══════════ DEVELOPER CREDIT ═══════════ */
.developer-credit {
  text-align: center;
  padding: 12px 0 0;
  margin-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.developer-credit a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
}

.developer-credit a:hover {
  color: var(--cyan);
  opacity: 1;
}

.developer-credit a::before {
  content: '💻';
  font-size: 0.9rem;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .cookie-consent-content p {
    min-width: 100%;
  }
  
  .cookie-consent .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-col a:hover {
    transform: none;
  }
}