/* İmza Medya - Premium Design System v3 */
:root {
  --bg-dark: #07070C;
  --bg-card: #0F0F18;
  --bg-elevated: #161622;
  --primary: #E30613;
  --primary-bright: #FF2D55;
  --primary-glow: #E3061345;
  --accent: #00F5D4;
  --accent-2: #7B2CBF;
  --accent-3: #FFD60A;
  --accent-4: #FF6B35;
  --text: #F5F5F7;
  --text-muted: #9A9AB0;
  --border: #252535;
  --gradient-main: linear-gradient(135deg, #E30613 0%, #FF2D55 35%, #FF6B35 70%, #FFD60A 100%);
  --gradient-accent: linear-gradient(135deg, #00F5D4 0%, #7B2CBF 100%);
  --gradient-card: linear-gradient(145deg, rgba(227,6,19,0.08), rgba(0,245,212,0.05), rgba(123,44,191,0.08));
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
.bg-particles {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 18%, #E3061322 0%, transparent 42%),
    radial-gradient(ellipse at 88% 12%, #00F5D41A 0%, transparent 42%),
    radial-gradient(ellipse at 50% 85%, #7B2CBF1A 0%, transparent 48%),
    radial-gradient(ellipse at 72% 48%, #FFD60A12 0%, transparent 38%);
  animation: bgPulse 16s ease-in-out infinite alternate;
}
@keyframes bgPulse {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; }
  100% { opacity: 0.85; transform: scale(1.05); }
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* SEO helper - visually integrated keywords */
.seo-keywords {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* TOP BANNER */
.top-banner {
  background: linear-gradient(90deg, #FF6B35, #E30613, #FF2D55, #FF6B35);
  background-size: 300% 100%;
  animation: bannerGradient 8s ease infinite;
  color: #fff; font-size: 0.9rem; font-weight: 600;
  overflow: hidden; z-index: 1100; height: 42px;
  display: flex; align-items: center; position: relative;
}
@keyframes bannerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.top-banner-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.top-banner-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.top-banner-item { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0 2.5rem; }
.top-banner-item .fire { animation: bounce 1.2s ease infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* TOP INFO + SOCIAL */
.top-info {
  background: #0A0A10;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-muted); padding: 0.55rem 0;
}
.top-info-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.top-info-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.top-info-center {
  display: flex; align-items: center; gap: 1rem; flex: 1; justify-content: center;
}
.top-info a:hover { color: var(--primary-bright); }
.top-info .dot { color: var(--primary); margin-right: 0.3rem; }
.social-icons { display: flex; align-items: center; gap: 0.5rem; }
.social-icons a {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; transition: var(--transition);
}
.social-icons a:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(7, 7, 12, 0.94); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.header.scrolled { box-shadow: 0 8px 36px rgba(227, 6, 19, 0.22); }
.header-main {
  max-width: 1280px; margin: 0 auto; padding: 0.7rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.logo {
  display: flex; align-items: center; flex-shrink: 0;
  opacity: 0; transform: translateX(-80px) rotate(-8deg);
  animation: logoSlideSway 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}
@keyframes logoSlideSway {
  0% { opacity: 0; transform: translateX(-80px) rotate(-8deg); }
  40% { opacity: 1; transform: translateX(12px) rotate(4deg); }
  60% { transform: translateX(-6px) rotate(-2deg); }
  80% { transform: translateX(3px) rotate(1deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0); }
}
.logo:hover { animation: logoSway 0.6s ease; filter: brightness(1.15); }
@keyframes logoSway {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-4deg) scale(1.03); }
  75% { transform: rotate(4deg) scale(1.03); }
}
.logo img, .logo svg { height: 64px; width: auto; }
.header-contacts { display: flex; align-items: center; gap: 1.5rem; flex: 1; justify-content: center; }
.header-contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; }
.header-contact-item .icon-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(227, 6, 19, 0.12); border: 1px solid rgba(227, 6, 19, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--primary-bright); transition: var(--transition);
}
.header-contact-item:hover .icon-circle {
  background: var(--primary); color: #fff; transform: scale(1.1);
  box-shadow: 0 0 16px var(--primary-glow);
}
.header-contact-item strong { display: block; font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.header-contact-item span { font-weight: 600; color: var(--text); }
.header-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.btn-sm {
  padding: 0.5rem 1.1rem; border-radius: 8px; font-size: 0.85rem;
  font-weight: 700; border: none; cursor: pointer; transition: var(--transition);
}
.btn-outline-sm { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline-sm:hover { border-color: var(--primary); color: var(--primary-bright); }
.btn-red-sm { background: var(--primary); color: #fff; }
.btn-red-sm:hover { background: var(--primary-bright); transform: translateY(-2px); box-shadow: 0 6px 20px var(--primary-glow); }

.nav-bar {
  background: linear-gradient(90deg, #B0000C, #E30613, #FF2D55, #E30613, #B0000C);
  background-size: 200% 100%; animation: navShine 10s ease infinite;
  box-shadow: 0 4px 22px rgba(227, 6, 19, 0.4);
}
@keyframes navShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.nav-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 0.5rem;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.nav-links { display: flex; align-items: center; gap: 0; flex-wrap: wrap; justify-content: center; }
.nav-links a {
  padding: 0.75rem 1rem; font-weight: 700; font-size: 0.88rem;
  color: rgba(255,255,255,0.92); position: relative; letter-spacing: 0.2px;
  transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 3px; background: var(--accent-3);
  transition: all 0.3s ease; transform: translateX(-50%); border-radius: 3px 3px 0 0;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(0,0,0,0.18); }
.nav-links a:hover::after, .nav-links a.active::after { width: 70%; }
.nav-links a .nav-icon { margin-right: 0.3rem; opacity: 0.9; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; z-index: 1001;
}
.menu-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--text);
  margin: 6px auto; transition: var(--transition); border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 3.5rem 1.5rem 5rem; position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-elevated); border: 1px solid var(--border);
  padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.85rem;
  color: var(--accent); margin-bottom: 1.4rem; animation: fadeInUp 0.7s ease both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; animation: pulse 1.4s infinite; box-shadow: 0 0 12px var(--accent);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 1.2rem; min-height: 2.5em;
}
.hero h1 .type-prefix {
  display: inline;
  border-right: 3px solid var(--primary-bright);
  animation: blink-caret 0.75s step-end infinite;
  padding-right: 2px;
}
@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--primary-bright); }
}
.hero h1 .vizyon-word {
  display: inline-block; color: #FFFFFF;
  text-shadow: 0 0 30px rgba(255,255,255,0.5), 0 0 60px rgba(227,6,19,0.3);
  opacity: 0; transform: translateX(-40px) rotate(-12deg);
  animation: vizyonSwing 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 2.2s forwards;
}
@keyframes vizyonSwing {
  0% { opacity: 0; transform: translateX(-50px) rotate(-15deg) scale(0.8); }
  40% { opacity: 1; transform: translateX(10px) rotate(8deg) scale(1.08); }
  60% { transform: translateX(-6px) rotate(-4deg) scale(1.02); }
  80% { transform: translateX(3px) rotate(2deg) scale(1); }
  100% { opacity: 1; transform: translateX(0) rotate(0) scale(1); }
}
.hero h1 .suffix {
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0; animation: fadeInUp 0.6s 2.8s ease both;
}
.hero p {
  font-size: 1.12rem; color: var(--text-muted); max-width: 520px;
  margin-bottom: 1.8rem; animation: fadeInUp 0.8s 0.5s ease both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeInUp 0.8s 0.65s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.85rem; border-radius: 999px; font-weight: 700;
  font-size: 1rem; border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary {
  background: var(--gradient-main); color: #fff;
  box-shadow: 0 6px 28px var(--primary-glow); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 40px var(--primary-glow);
}
.btn-outline {
  background: transparent; color: var(--text); border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary-bright); color: var(--primary-bright);
  background: rgba(227, 6, 19, 0.1); box-shadow: 0 0 24px rgba(227, 6, 19, 0.2);
}
.hero-visual { position: relative; animation: fadeInRight 1s 0.3s ease both; }
.hero-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px;
  padding: 1.4rem; box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(227, 6, 19, 0.1);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--primary), var(--accent), transparent 40%);
  animation: rotate 7s linear infinite; opacity: 0.12;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.code-block {
  background: #0A0A0F; border-radius: 12px; padding: 1.2rem;
  font-family: 'Consolas', 'Monaco', monospace; font-size: 0.85rem;
  line-height: 1.8; position: relative; z-index: 1; min-height: 220px;
}
.code-block .dots { display: flex; gap: 6px; margin-bottom: 1rem; }
.code-block .dots span { width: 12px; height: 12px; border-radius: 50%; }
.code-cursor {
  display: inline-block; width: 8px; height: 1.1em; background: var(--accent);
  vertical-align: text-bottom; margin-left: 2px; animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.2rem;
  animation: fadeInUp 0.8s 0.8s ease both;
}
.stat-item strong {
  display: block; font-size: 1.85rem; font-weight: 900;
  background: var(--gradient-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-item span { font-size: 0.85rem; color: var(--text-muted); }
.orb {
  position: absolute; border-radius: 50%; filter: blur(50px);
  opacity: 0.35; pointer-events: none; animation: floatOrb 9s ease-in-out infinite;
}
.orb-1 { width: 200px; height: 200px; background: var(--primary); top: 8%; right: 4%; }
.orb-2 { width: 140px; height: 140px; background: var(--accent); bottom: 18%; left: 6%; animation-delay: 2s; }
.orb-3 { width: 110px; height: 110px; background: var(--accent-2); top: 42%; left: 38%; animation-delay: 4s; }
@keyframes floatOrb {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(22px,-28px) scale(1.12); }
  66% { transform: translate(-18px,16px) scale(0.92); }
}

/* SECTIONS */
.section { padding: 5.5rem 1.5rem; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .tag {
  display: inline-block; background: rgba(227, 6, 19, 0.14); color: var(--primary-bright);
  padding: 0.35rem 1.15rem; border-radius: 999px; font-size: 0.85rem; font-weight: 700;
  margin-bottom: 0.9rem; letter-spacing: 0.5px; border: 1px solid rgba(227, 6, 19, 0.28);
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 1.1rem;
}
.glow-text {
  text-shadow: 0 0 24px rgba(227, 6, 19, 0.45), 0 0 48px rgba(255, 45, 85, 0.2);
}

/* SERVICES */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem;
}
.service-card {
  background: var(--gradient-card); border: 1px solid var(--border); border-radius: 22px;
  padding: 2.2rem; transition: var(--transition); position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(227,6,19,0.12), transparent 50%);
  opacity: 0; transition: opacity 0.5s ease;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: var(--gradient-main); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s ease;
}
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(227, 6, 19, 0.5);
  box-shadow: 0 28px 55px rgba(227, 6, 19, 0.2), 0 0 40px rgba(0, 245, 212, 0.08);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 18px; background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  margin-bottom: 1.4rem; box-shadow: 0 10px 28px var(--primary-glow);
  transition: var(--transition); position: relative; z-index: 1;
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-8deg); box-shadow: 0 14px 36px var(--primary-glow);
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.7rem; position: relative; z-index: 1; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; position: relative; z-index: 1; }
.service-num {
  position: absolute; top: 1.2rem; right: 1.4rem; font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1; transition: var(--transition);
}
.service-card:hover .service-num { color: rgba(227, 6, 19, 0.15); transform: scale(1.1); }

/* ABOUT / VISION */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; margin-bottom: 1.2rem;
}
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem;
}
.feature-item {
  display: flex; align-items: center; gap: 0.75rem; background: var(--bg-elevated);
  padding: 0.9rem 1.1rem; border-radius: 14px; border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--accent); transform: translateX(6px);
  box-shadow: 0 0 24px rgba(0, 245, 212, 0.15);
}
.feature-item span {
  width: 30px; height: 30px; border-radius: 9px; background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0;
}
.vision-box {
  background: var(--gradient-card); border: 1px solid var(--border); border-radius: 24px;
  padding: 2.5rem; position: relative; overflow: hidden;
}
.vision-box::before {
  content: ''; position: absolute; top: -40%; right: -30%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(123,44,191,0.2), transparent 70%); pointer-events: none;
}
.vision-box h3 {
  font-size: 1.5rem; margin-bottom: 1rem;
  background: var(--gradient-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.vision-box p { color: var(--text-muted); margin-bottom: 0.8rem; position: relative; z-index: 1; }

/* ULTRA WORK CARDS */
.work-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}
.work-card {
  background: var(--bg-card); border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
  position: relative; isolation: isolate;
}
.work-card::before {
  content: ''; position: absolute; inset: -2px; border-radius: 24px;
  background: var(--gradient-main); opacity: 0; z-index: -1;
  transition: opacity 0.5s ease;
}
.work-card:hover::before { opacity: 0.6; }
.work-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 32px 60px rgba(0, 245, 212, 0.15), 0 0 50px rgba(227, 6, 19, 0.2);
  border-color: transparent;
}
.work-thumb {
  height: 240px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden; transition: var(--transition);
}
.work-thumb .shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform 0.7s ease;
}
.work-card:hover .work-thumb .shine { transform: translateX(100%); }
.work-card:hover .work-thumb { transform: scale(1.08); }
.work-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,12,0.9), transparent 55%);
}
.work-info { padding: 1.6rem; position: relative; }
.work-info h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.work-info p { color: var(--text-muted); font-size: 0.92rem; }
.work-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.work-tags span {
  font-size: 0.75rem; padding: 0.3rem 0.8rem; border-radius: 999px;
  background: rgba(0, 245, 212, 0.1); color: var(--accent);
  border: 1px solid rgba(0, 245, 212, 0.22); transition: var(--transition);
}
.work-card:hover .work-tags span {
  background: rgba(227, 6, 19, 0.15); color: var(--primary-bright);
  border-color: rgba(227, 6, 19, 0.35);
}
.work-overlay {
  position: absolute; inset: 0; background: rgba(7,7,12,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease; z-index: 2; backdrop-filter: blur(4px);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-overlay span {
  background: var(--gradient-main); color: #fff; padding: 0.8rem 1.6rem;
  border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  transform: translateY(16px) scale(0.9); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px var(--primary-glow);
}
.work-card:hover .work-overlay span { transform: translateY(0) scale(1); }

/* PARTNERS */
.partners-section {
  padding: 4.5rem 1.5rem; background: rgba(227, 6, 19, 0.03);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem; align-items: center; max-width: 1100px; margin: 0 auto;
}
.partner-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.5rem 1rem; text-align: center; transition: var(--transition);
  font-weight: 700; font-size: 1rem; color: var(--text-muted); position: relative; overflow: hidden;
}
.partner-item::before {
  content: ''; position: absolute; inset: 0; background: var(--gradient-main);
  opacity: 0; transition: opacity 0.4s ease;
}
.partner-item:hover {
  transform: translateY(-6px); border-color: var(--primary-bright); color: #fff;
  box-shadow: 0 12px 30px var(--primary-glow);
}
.partner-item:hover::before { opacity: 0.15; }
.partner-item span { position: relative; z-index: 1; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3rem; }
.contact-info h2 { font-size: 2.3rem; font-weight: 900; margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.6rem;
  padding: 1rem 1.2rem; background: var(--bg-elevated); border-radius: 16px;
  border: 1px solid var(--border); transition: var(--transition);
}
.contact-item:hover {
  transform: translateX(8px); border-color: var(--primary-bright);
  box-shadow: 0 8px 28px rgba(227, 6, 19, 0.15);
}
.contact-item .icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  flex-shrink: 0; box-shadow: 0 8px 22px var(--primary-glow);
}
.contact-item strong { display: block; margin-bottom: 0.2rem; font-size: 1rem; }
.contact-item span { color: var(--text-muted); font-size: 0.95rem; }
.contact-form {
  background: var(--gradient-card); border: 1px solid var(--border); border-radius: 28px;
  padding: 2.4rem; box-shadow: 0 25px 60px rgba(0,0,0,0.35); position: relative; overflow: hidden;
}
.contact-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-main);
}
.form-group { margin-bottom: 1.25rem; position: relative; z-index: 1; }
.form-group label {
  display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-muted);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.95rem 1.15rem; background: var(--bg-dark);
  border: 1px solid var(--border); border-radius: 14px; color: var(--text);
  font-family: inherit; font-size: 1rem; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary-bright);
  box-shadow: 0 0 0 3px var(--primary-glow), 0 0 24px rgba(227, 6, 19, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* AI WIDGET */
.ai-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient-main); border: none; cursor: pointer;
  box-shadow: 0 8px 30px var(--primary-glow); display: flex;
  align-items: center; justify-content: center; font-size: 1.5rem;
  transition: var(--transition); animation: aiPulse 2.5s ease infinite;
}
.ai-widget:hover { transform: scale(1.1); }
@keyframes aiPulse {
  0%, 100% { box-shadow: 0 8px 30px var(--primary-glow); }
  50% { box-shadow: 0 8px 40px var(--primary-glow), 0 0 60px rgba(0,245,212,0.3); }
}
.ai-panel {
  position: fixed; bottom: 100px; right: 24px; z-index: 998;
  width: 340px; max-width: calc(100vw - 32px);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); padding: 1.5rem;
  opacity: 0; transform: translateY(20px) scale(0.95); pointer-events: none;
  transition: all 0.35s ease;
}
.ai-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.ai-panel h4 {
  font-size: 1.05rem; margin-bottom: 0.75rem;
  background: var(--gradient-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.ai-panel p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.ai-panel .ai-actions { display: flex; flex-direction: column; gap: 0.5rem; }
.ai-panel .ai-actions a {
  padding: 0.65rem 1rem; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 10px; font-size: 0.88rem; font-weight: 600; transition: var(--transition);
}
.ai-panel .ai-actions a:hover {
  border-color: var(--primary); background: rgba(227,6,19,0.12); color: var(--primary-bright);
}

/* PAGE HERO */
.page-hero {
  padding: 4.5rem 1.5rem 2.8rem; text-align: center;
  background: linear-gradient(180deg, rgba(227,6,19,0.1) 0%, transparent 100%);
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem); font-weight: 900; margin-bottom: 0.7rem;
}
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* FOOTER */
.footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand p {
  color: var(--text-muted); margin-top: 1rem; font-size: 0.95rem; max-width: 280px;
}
.footer h4 { font-size: 1rem; margin-bottom: 1.2rem; color: var(--text); }
.footer ul li { margin-bottom: 0.55rem; }
.footer ul a { color: var(--text-muted); font-size: 0.95rem; }
.footer ul a:hover { color: var(--primary-bright); }
.footer-bottom {
  max-width: 1280px; margin: 2.5rem auto 0; padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5;
}
.footer-bottom .ssl {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(0, 245, 212, 0.1); color: var(--accent);
  padding: 0.3rem 0.75rem; border-radius: 6px; font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(0, 245, 212, 0.25);
}
.payment-icons {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
}
.payment-icons span {
  background: var(--bg-elevated); border: 1px solid var(--border);
  padding: 0.35rem 0.7rem; border-radius: 6px; font-size: 0.75rem;
  font-weight: 700; color: var(--text-muted); letter-spacing: 0.3px;
}
.payment-icons span:hover { border-color: var(--accent); color: var(--accent); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 0; transform: translateY(42px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links a { padding: 0.7rem 0.75rem; font-size: 0.82rem; }
}
@media (max-width: 1024px) {
  .header-contacts, .header-actions { display: none; }
  .top-info-center { order: 3; width: 100%; justify-content: center; margin-top: 0.3rem; }
}
@media (max-width: 900px) {
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--bg-card); flex-direction: column; padding: 5.5rem 1.5rem 2rem;
    gap: 0.3rem; transition: right 0.4s ease; border-left: 1px solid var(--border);
    box-shadow: -20px 0 40px rgba(0,0,0,0.5); z-index: 999; overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text); border-radius: 10px; width: 100%; }
  .nav-links a:hover, .nav-links a.active {
    background: rgba(227, 6, 19, 0.15); color: var(--primary-bright);
  }
  .nav-links a::after { display: none; }
  .menu-toggle { display: block; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .logo img, .logo svg { height: 52px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .top-info-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-panel { right: 12px; bottom: 90px; }
}


/* ========== HAKKIMIZDA / VİZYON - Açık ton + ultra geçiş ========== */
.about-light {
  background: linear-gradient(165deg, #1a1520 0%, #1e1a28 35%, #18141f 70%, #141018 100%);
  position: relative;
  overflow: hidden;
}
.about-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(255,45,85,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(0,245,212,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(123,44,191,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: aboutGlow 12s ease-in-out infinite alternate;
}
@keyframes aboutGlow {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}
.about-light .section-inner { position: relative; z-index: 1; }

.about-light .about-content h2,
.about-light .vision-box h3 {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.5s ease;
}
.about-light .about-content:hover h2 {
  text-shadow: 0 0 40px rgba(255,45,85,0.35);
}
.about-light .feature-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-light .feature-item:hover {
  background: rgba(255,45,85,0.12);
  border-color: rgba(255,45,85,0.4);
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 12px 32px rgba(227,6,19,0.2);
}

.vision-box-ultra {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(123,44,191,0.1) 50%, rgba(0,245,212,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.vision-box-ultra::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -40%;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle, rgba(123,44,191,0.25), transparent 70%);
  pointer-events: none;
  transition: transform 0.8s ease;
}
.vision-box-ultra::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vision-box-ultra:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,45,85,0.35);
  box-shadow: 0 28px 60px rgba(227,6,19,0.2), 0 0 40px rgba(0,245,212,0.1);
}
.vision-box-ultra:hover::before { transform: translate(-10%, 10%) scale(1.2); }
.vision-box-ultra:hover::after { transform: scaleX(1); }
.vision-box-ultra h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
.vision-box-ultra p {
  color: rgba(245,245,247,0.85);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.vision-box-ultra:hover p { color: #F5F5F7; }

/* Page-level about sections (hakkimizda / vizyonumuz) */
.page-about-light {
  background: linear-gradient(180deg, #1c1824 0%, #16121c 40%, #12101a 100%);
  position: relative;
}
.page-about-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,45,85,0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(0,245,212,0.08) 0%, transparent 45%);
  pointer-events: none;
  animation: aboutGlow 14s ease-in-out infinite alternate;
}

.reveal-ultra {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.34, 1.2, 0.64, 1),
              transform 0.85s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.reveal-ultra.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ========== ULTRA ENHANCEMENTS ========== */

/* Dancing Logo - more lively */
.logo {
  animation: logoDanceIn 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both !important;
  transform-origin: center bottom;
}
@keyframes logoDanceIn {
  0% { opacity: 0; transform: translateY(-40px) rotate(-12deg) scale(0.6); }
  25% { opacity: 1; transform: translateY(8px) rotate(8deg) scale(1.08); }
  45% { transform: translateY(-6px) rotate(-6deg) scale(0.96); }
  65% { transform: translateY(4px) rotate(4deg) scale(1.03); }
  80% { transform: translateY(-2px) rotate(-2deg) scale(0.99); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
.logo:hover {
  animation: logoDance 0.9s ease infinite !important;
}
@keyframes logoDance {
  0%, 100% { transform: rotate(0deg) scale(1); }
  15% { transform: rotate(-6deg) scale(1.05) translateY(-3px); }
  30% { transform: rotate(5deg) scale(1.08) translateY(0); }
  45% { transform: rotate(-4deg) scale(1.04) translateY(-2px); }
  60% { transform: rotate(3deg) scale(1.06); }
  75% { transform: rotate(-2deg) scale(1.03); }
}

/* Scroll to top - left side */
.scroll-top {
  position: fixed;
  left: 22px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E30613, #FF2D55, #7B2CBF);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 28px rgba(227,6,19,0.45), 0 0 20px rgba(0,245,212,0.2);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 14px 36px rgba(227,6,19,0.6), 0 0 30px rgba(0,245,212,0.35);
}
.scroll-top::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00F5D4, #E30613, #FFD60A);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  animation: spinBorder 3s linear infinite;
}
.scroll-top:hover::before { opacity: 0.7; }
@keyframes spinBorder {
  to { transform: rotate(360deg); }
}

/* Extra animations for cards & elements */
.service-card {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 24px 48px rgba(227,6,19,0.25), 0 0 40px rgba(0,245,212,0.12);
}
.service-card .service-icon {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-icon {
  transform: scale(1.25) rotate(12deg);
  filter: drop-shadow(0 0 12px var(--accent));
}

.partner-item {
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.partner-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,245,212,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.partner-item:hover::after { transform: translateX(100%); }
.partner-item:hover {
  transform: translateY(-8px) scale(1.06);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0,245,212,0.2);
}

/* Floating particles extra */
.floating-dot {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  animation: floatDot 12s ease-in-out infinite;
}
@keyframes floatDot {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.3; }
  25% { transform: translate(30px,-40px) scale(1.3); opacity: 0.6; }
  50% { transform: translate(-20px,-80px) scale(0.8); opacity: 0.4; }
  75% { transform: translate(40px,-30px) scale(1.1); opacity: 0.5; }
}

/* AI Widget ultra */
.ai-widget {
  animation: aiPulse 2s ease infinite, aiFloat 4s ease-in-out infinite !important;
}
@keyframes aiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.ai-panel {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,245,212,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,245,212,0.15);
}
.ai-panel.open {
  animation: panelPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes panelPop {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Glow text stronger */
.glow-text {
  text-shadow: 0 0 20px rgba(227,6,19,0.4), 0 0 40px rgba(0,245,212,0.2);
}

/* Hero badge pulse */
.hero-badge {
  animation: badgePulse 3s ease infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,245,212,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(0,245,212,0); }
}

/* Button shine */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 120%; }

/* Section header entrance */
.section-header.reveal.visible h2 {
  animation: titlePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes titlePop {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Contact form ultra */
.contact-form {
  transition: box-shadow 0.4s ease;
}
.contact-form:focus-within {
  box-shadow: 0 0 40px rgba(0,245,212,0.15);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(0,245,212,0.2);
}

/* Partners title style */
.partners-section .section-header h2 {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NEW UPDATES ========== */

/* Logo: hover titresin + sağa sola gitsin */
.logo {
  animation: logoDanceIn 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both !important;
  transform-origin: center center;
  display: inline-block;
}
.logo:hover {
  animation: logoShakeSwing 0.55s ease-in-out infinite !important;
  filter: brightness(1.2) drop-shadow(0 0 12px rgba(227,6,19,0.5));
}
@keyframes logoShakeSwing {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  10% { transform: translateX(-6px) rotate(-4deg); }
  20% { transform: translateX(6px) rotate(4deg); }
  30% { transform: translateX(-5px) rotate(-3deg); }
  40% { transform: translateX(5px) rotate(3deg); }
  50% { transform: translateX(-4px) rotate(-2deg); }
  60% { transform: translateX(4px) rotate(2deg); }
  70% { transform: translateX(-3px) rotate(-1deg); }
  80% { transform: translateX(3px) rotate(1deg); }
  90% { transform: translateX(-1px) rotate(0deg); }
}

/* Mouse-follow background parallax layers */
.bg-particles {
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.orb {
  transition: transform 0.25s ease-out;
  will-change: transform;
}
body.mouse-move .bg-particles {
  /* controlled by JS */
}

/* Nav icons colorful */
.nav-links a .nav-icon {
  display: inline-block;
  margin-right: 0.35rem;
  font-size: 1.05em;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-links a:nth-child(1) .nav-icon { color: #E30613; filter: drop-shadow(0 0 4px #E30613); }
.nav-links a:nth-child(2) .nav-icon { color: #00F5D4; filter: drop-shadow(0 0 4px #00F5D4); }
.nav-links a:nth-child(3) .nav-icon { color: #FFD60A; filter: drop-shadow(0 0 4px #FFD60A); }
.nav-links a:nth-child(4) .nav-icon { color: #7B2CBF; filter: drop-shadow(0 0 4px #7B2CBF); }
.nav-links a:nth-child(5) .nav-icon { color: #FF6B35; filter: drop-shadow(0 0 4px #FF6B35); }
.nav-links a:hover .nav-icon {
  transform: scale(1.25) rotate(8deg);
}

/* Header contact icons colorful */
.header-contact-item .icon-circle {
  background: linear-gradient(135deg, #E30613, #FF2D55);
  color: #fff;
  box-shadow: 0 0 12px rgba(227,6,19,0.4);
}
.header-contact-item:nth-child(2) .icon-circle {
  background: linear-gradient(135deg, #00F5D4, #7B2CBF);
  box-shadow: 0 0 12px rgba(0,245,212,0.4);
}
.header-contact-item:nth-child(3) .icon-circle {
  background: linear-gradient(135deg, #FFD60A, #FF6B35);
  box-shadow: 0 0 12px rgba(255,214,10,0.4);
}

/* Service icons already emoji - enhance glow */
.service-card .service-icon {
  filter: drop-shadow(0 0 8px rgba(0,245,212,0.3));
}
.service-card:nth-child(1) .service-icon { color: #E30613; }
.service-card:nth-child(2) .service-icon { color: #00F5D4; }
.service-card:nth-child(3) .service-icon { color: #FFD60A; }
.service-card:nth-child(4) .service-icon { color: #7B2CBF; }
.service-card:nth-child(5) .service-icon { color: #FF6B35; }
.service-card:nth-child(6) .service-icon { color: #E30613; }
.service-card:nth-child(7) .service-icon { color: #00F5D4; }
.service-card:nth-child(8) .service-icon { color: #FFD60A; }
.service-card:nth-child(9) .service-icon { color: #7B2CBF; }

/* Buttons with icons more vivid */
.btn .btn-icon, .btn-sm .btn-icon {
  margin-right: 0.4rem;
}

/* ========== LATEST UPDATES ========== */

/* Logo wrap + 3 colorful dots */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  animation: dotPulse 1.8s ease-in-out infinite;
}
.logo-dot.d1 {
  background: #E30613;
  box-shadow: 0 0 10px #E30613;
  animation-delay: 0s;
}
.logo-dot.d2 {
  background: #00F5D4;
  box-shadow: 0 0 10px #00F5D4;
  animation-delay: 0.25s;
}
.logo-dot.d3 {
  background: #FFD60A;
  box-shadow: 0 0 10px #FFD60A;
  animation-delay: 0.5s;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.35); opacity: 1; }
}
.footer-logo .logo-dots {
  flex-direction: row;
  gap: 6px;
}
.footer-logo .logo-dot {
  width: 8px;
  height: 8px;
}

/* Stronger logo shake on hover */
.logo:hover {
  animation: logoShakeSwing 0.5s ease-in-out infinite !important;
  filter: brightness(1.25) drop-shadow(0 0 14px rgba(227,6,19,0.55));
}
@keyframes logoShakeSwing {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  12% { transform: translateX(-7px) rotate(-5deg); }
  25% { transform: translateX(7px) rotate(5deg); }
  37% { transform: translateX(-6px) rotate(-4deg); }
  50% { transform: translateX(6px) rotate(4deg); }
  62% { transform: translateX(-4px) rotate(-2deg); }
  75% { transform: translateX(4px) rotate(2deg); }
  87% { transform: translateX(-2px) rotate(-1deg); }
}

/* Hero badge + rotating slogans */
.hero-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}
.hero-slogans {
  position: relative;
  height: 1.6em;
  min-width: 180px;
  overflow: hidden;
}
.hero-slogans .slogan {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(12px);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: opacity 0.45s ease, transform 0.45s ease;
  text-shadow: 0 0 12px rgba(0,245,212,0.35);
}
.hero-slogans .slogan.active {
  opacity: 1;
  transform: translateY(0);
}

/* Button icons colorful */
.btn .btn-icon,
.btn-sm .btn-icon {
  display: inline-block;
  margin-right: 0.4rem;
  font-size: 1.05em;
  filter: drop-shadow(0 0 4px currentColor);
  transition: transform 0.3s ease;
}
.btn:hover .btn-icon,
.btn-sm:hover .btn-icon {
  transform: scale(1.25) rotate(-8deg);
}

/* 5. Button hover → text (menu names) vibrate */
.nav-links a {
  transition: color 0.3s ease;
}
.nav-links a:hover {
  animation: textShake 0.45s ease-in-out;
  color: #fff !important;
}
@keyframes textShake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-3px); }
  30% { transform: translateX(3px); }
  45% { transform: translateX(-2px); }
  60% { transform: translateX(2px); }
  75% { transform: translateX(-1px); }
}

.btn:hover,
.btn-sm:hover {
  animation: textShake 0.4s ease-in-out;
}
.btn:hover .btn-icon {
  animation: none;
}

/* WhatsApp style support text */
.top-info-right span,
.header-contact-item span {
  font-weight: 600;
}

/* ========== HERO FULL-WIDTH SCROLLING MARQUEE ========== */
.hero-marquee-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: heroMarquee 28s linear infinite;
}
.hero-marquee-track:hover {
  animation-play-state: paused;
}
.hero-marquee-track span {
  display: inline-block;
  padding: 0.55rem 2.5rem;
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: linear-gradient(90deg, #E30613, #FF2D55, #FF6B35, #FFD60A, #00F5D4, #7B2CBF, #E30613);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: marqueeGradient 6s ease infinite;
  text-transform: uppercase;
}
@keyframes heroMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Make hero content allow full-bleed marquee */
.hero-content {
  overflow: visible;
}

/* =====================================================
   MODERN REDESIGN LAYER — 2026 Premium Look
   ===================================================== */

:root {
  --bg-dark: #05050a;
  --bg-card: rgba(15, 15, 24, 0.72);
  --bg-elevated: rgba(22, 22, 34, 0.85);
  --radius: 22px;
  --radius-sm: 14px;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(227, 6, 19, 0.12);
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

/* Modern mesh background */
.bg-particles {
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(227, 6, 19, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(0, 245, 212, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 90%, rgba(123, 44, 191, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(255, 214, 10, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #05050a 0%, #0a0a12 50%, #05050a 100%);
}

/* Typography upgrade */
h1, h2, h3, h4, .glow-text, .hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-weight: 800;
}

/* Glass header */
.header {
  background: rgba(5, 5, 10, 0.75) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
}
.header.scrolled {
  background: rgba(5, 5, 10, 0.9) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 1px rgba(227, 6, 19, 0.3);
}

/* Modern nav pills */
.nav-bar {
  background: linear-gradient(90deg, rgba(227,6,19,0.15), rgba(123,44,191,0.12), rgba(0,245,212,0.1)) !important;
  border-bottom: 1px solid var(--glass-border);
}
.nav-links a {
  border-radius: 100px !important;
  padding: 0.55rem 1.15rem !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: -0.01em;
  margin: 0 0.15rem;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 0 20px rgba(227, 6, 19, 0.2);
}

/* Modern buttons */
.btn, .btn-sm {
  border-radius: 100px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
  font-family: var(--font-display);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #E30613 0%, #FF2D55 50%, #FF6B35 100%) !important;
  border: none !important;
  box-shadow: 0 8px 28px rgba(227, 6, 19, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(227, 6, 19, 0.5), 0 0 40px rgba(255, 45, 85, 0.2) !important;
  transform: translateY(-3px) scale(1.02);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 24px rgba(0, 245, 212, 0.15);
}

/* Glass service cards */
.service-card {
  background: var(--bg-card) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,6,19,0.06), transparent 50%, rgba(0,245,212,0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(255, 255, 255, 0.14) !important;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 40px rgba(227,6,19,0.1);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.service-num {
  font-family: var(--font-display);
  font-weight: 800;
  opacity: 0.15;
  font-size: 2.5rem;
}

/* Modern section headers */
.section-header .tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.035em;
}

/* Hero modern */
.hero {
  padding-top: 2.5rem;
  position: relative;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.04em;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-stats {
  gap: 2rem !important;
}
.stat-item strong {
  font-family: var(--font-display);
  font-size: 2rem !important;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Code card modern glass */
.hero-card, .code-block {
  border-radius: 24px !important;
  border: 1px solid var(--glass-border) !important;
  background: rgba(15, 15, 24, 0.8) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 1px rgba(255,255,255,0.1);
}

/* Vision box modern */
.vision-box-ultra {
  border-radius: 28px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(20px);
}

/* Partners modern */
.partner-item {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.partner-item:hover {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(0,245,212,0.3) !important;
}

/* Footer modern */
.footer {
  background: rgba(5, 5, 10, 0.95) !important;
  border-top: 1px solid var(--glass-border);
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 0.95rem;
}

/* Top banner refined */
.top-banner {
  height: 38px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.02em;
}

/* Top info bar */
.top-info {
  background: rgba(8, 8, 14, 0.95) !important;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.82rem;
}

/* Feature items */
.feature-item {
  border-radius: 12px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--glass-border) !important;
  font-weight: 600;
}

/* Form modern */
.contact-form {
  background: rgba(15, 15, 24, 0.7) !important;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-soft);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 12px !important;
  color: var(--text) !important;
  font-family: var(--font-main);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(0,245,212,0.15) !important;
  outline: none;
}

/* AI widget modern */
.ai-widget {
  border-radius: 20px !important;
  background: linear-gradient(135deg, #E30613, #7B2CBF) !important;
  box-shadow: 0 8px 32px rgba(227,6,19,0.4), 0 0 20px rgba(123,44,191,0.2) !important;
}
.ai-panel {
  border-radius: 24px !important;
  background: rgba(15, 15, 24, 0.92) !important;
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border) !important;
}

/* Scroll top modern */
.scroll-top {
  border-radius: 18px !important;
  background: linear-gradient(135deg, #E30613, #FF2D55) !important;
}

/* Marquee refined */
.hero-marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* Softer orbs */
.orb {
  filter: blur(40px);
  opacity: 0.25 !important;
}

/* Page hero */
.page-hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

/* About light section */
.about-light {
  background: linear-gradient(180deg, transparent, rgba(22, 18, 36, 0.6), transparent) !important;
}

/* Smooth selection */
::selection {
  background: rgba(227, 6, 19, 0.35);
  color: #fff;
}

/* Responsive polish */
@media (max-width: 768px) {
  .nav-links a {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.82rem !important;
  }
  .service-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

/* ========== CENTERED BUTTON-STYLE SCROLLING SLOGAN ========== */
.hero-slogan-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}
.hero-slogan-btn {
  display: inline-flex;
  align-items: center;
  max-width: min(920px, 94vw);
  width: 100%;
  padding: 0.7rem 1.25rem;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(227,6,19,0.18), rgba(123,44,191,0.15), rgba(0,245,212,0.12));
  border: 1.5px solid rgba(255,255,255,0.14);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    0 0 40px rgba(227,6,19,0.12),
    inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  position: relative;
}
.hero-slogan-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1.5px;
  background: linear-gradient(90deg, #E30613, #FF2D55, #FFD60A, #00F5D4, #7B2CBF, #E30613);
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderFlow 5s linear infinite;
  pointer-events: none;
}
@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.hero-slogan-track {
  display: flex;
  width: max-content;
  animation: sloganScroll 22s linear infinite;
}
.hero-slogan-btn:hover .hero-slogan-track {
  animation-play-state: paused;
}
.hero-slogan-track span {
  display: inline-block;
  padding: 0 1.5rem;
  font-family: var(--font-display), 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  background: linear-gradient(90deg, #fff, #FFD60A, #00F5D4, #FF2D55, #fff);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 4s ease infinite;
  text-transform: none;
}
@keyframes sloganScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes textShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hide old marquee if any leftover styles conflict */
.hero-marquee-wrap { display: none !important; }

/* ========== FOOTER PAYMENTS CENTERED ========== */
.footer-bottom {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 1rem !important;
}
.footer-payments-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-payments-center .payment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-payments-center .ssl {
  white-space: nowrap;
}

/* ========== HERO TITLE COLOR DOTS ========== */
.hero-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15em;
}
.title-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 0.45rem;
  vertical-align: middle;
}
.title-dots .tdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  animation: titleDotPulse 1.6s ease-in-out infinite;
}
.title-dots .t1 {
  background: #E30613;
  box-shadow: 0 0 12px #E30613;
  animation-delay: 0s;
}
.title-dots .t2 {
  background: #00F5D4;
  box-shadow: 0 0 12px #00F5D4;
  animation-delay: 0.2s;
}
.title-dots .t3 {
  background: #FFD60A;
  box-shadow: 0 0 12px #FFD60A;
  animation-delay: 0.4s;
}
@keyframes titleDotPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.35); opacity: 1; }
}

/* ========== PROMO POPUP ========== */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.promo-popup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.promo-popup {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: linear-gradient(160deg, rgba(22,22,34,0.98), rgba(12,12,20,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 2.25rem 1.85rem 1.85rem;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55), 0 0 60px rgba(227,6,19,0.15);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.promo-popup-overlay.open .promo-popup {
  transform: scale(1) translateY(0);
}
.promo-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(135deg, #E30613, #FFD60A, #00F5D4, #7B2CBF);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}
.promo-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  z-index: 2;
}
.promo-close:hover {
  background: rgba(227,6,19,0.5);
  transform: rotate(90deg);
}
.promo-icon {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
  animation: promoBounce 2s ease infinite;
}
@keyframes promoBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.promo-popup h3 {
  font-family: var(--font-display), 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.promo-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.15rem;
}
.promo-lead strong { color: #fff; }
.promo-points {
  list-style: none;
  text-align: left;
  margin: 0 auto 1.5rem;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.promo-points li {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.promo-cta {
  display: inline-flex !important;
  width: auto;
  min-width: 180px;
  justify-content: center;
}
