/* ===== XentoraGFX — Koyu Premium Tema ===== */
:root {
  --bg:        #06080f;
  --bg-2:      #0a0e1a;
  --surface:   #0f1524;
  --surface-2: #141b2e;
  --border:    rgba(120, 160, 220, 0.12);
  --border-hl: rgba(60, 200, 255, 0.4);
  --text:      #e8eefc;
  --text-dim:  #8b98b8;
  --accent:    #23c8ff;
  --accent-2:  #4a7dff;
  --accent-glow: rgba(35, 200, 255, 0.35);
  --silver:    #cfd8ea;
  --radius:    16px;
  --maxw:      1200px;
  --shadow:    0 20px 60px rgba(0, 0, 0, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name { font-family: 'Sora', sans-serif; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(120deg, var(--accent), var(--accent-2) 45%, #a78bfa 70%, var(--accent) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
  filter: drop-shadow(0 0 22px rgba(35,200,255,.25));
}
@keyframes shine { to { background-position: 220% center; } }

/* ===== Background FX ===== */
/* İnce film grain dokusu (premium his) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.bg-gradient {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 78% -5%, rgba(35, 200, 255, 0.14), transparent 60%),
    radial-gradient(800px 600px at 10% 10%, rgba(74, 125, 255, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; opacity: 0.35;
  background-image:
    linear-gradient(rgba(120,160,220,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,160,220,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
}

/* Fareyi takip eden yumuşak ışık */
.cursor-glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 20%), rgba(35,200,255,0.10), transparent 65%);
  transition: opacity .4s;
}
@media (max-width: 760px), (hover: none) { .cursor-glow { display: none; } }

/* Yüzen parıltı noktaları */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.orb-1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(35,200,255,.28), transparent 70%); top: -80px; right: 8%; animation: drift1 18s ease-in-out infinite; }
.orb-2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(74,125,255,.22), transparent 70%); top: 40%; left: -60px; animation: drift2 22s ease-in-out infinite; }
.orb-3 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(167,139,250,.18), transparent 70%); bottom: 6%; right: 20%; animation: drift1 26s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 50px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px, -40px); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* Scroll ilerleme çubuğu */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #a78bfa);
  box-shadow: 0 0 10px var(--accent-glow);
  transition: width .12s linear;
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: padding .3s, background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(8, 11, 20, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 0 10px var(--accent-glow)); transition: filter .3s, transform .3s; }
.brand:hover .brand-logo { filter: drop-shadow(0 0 18px var(--accent-glow)); transform: rotate(-8deg) scale(1.06); }
.brand-name { font-weight: 800; letter-spacing: 1.5px; font-size: 18px; }
.brand-accent { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
  position: relative;
  padding: 9px 16px; border-radius: 10px; font-size: 15px; font-weight: 500;
  color: var(--text-dim); transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-link:not(.nav-cta)::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 5px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.nav-link:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  color: var(--text); border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(35,200,255,0.14), rgba(74,125,255,0.10));
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.nav-cta:hover { border-color: var(--border-hl); box-shadow: 0 0 18px var(--accent-glow); transform: translateY(-2px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 12px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent; transition: transform .18s, box-shadow .25s, background .25s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04121e; box-shadow: 0 8px 26px var(--accent-glow);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .6s;
}
.btn-primary:hover::after { left: 140%; }
.btn-primary:hover { box-shadow: 0 12px 34px var(--accent-glow); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.03); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--border-hl); background: rgba(35,200,255,0.06); transform: translateY(-2px); }

/* ===== Hero ===== */
.hero { padding: 190px 0 90px; text-align: center; position: relative; }
.hero-badge {
  display: inline-block; padding: 7px 16px; border-radius: 999px; font-size: 13px;
  font-weight: 600; letter-spacing: .5px; color: var(--accent);
  background: rgba(35,200,255,0.08); border: 1px solid var(--border-hl);
  margin-bottom: 26px;
}
.hero .hero-badge { animation: heroIn .8s both cubic-bezier(.2,.8,.2,1), badgePulse 3.2s ease-in-out 1.2s infinite; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 rgba(35,200,255,0); } 50% { box-shadow: 0 0 18px rgba(35,200,255,.3); } }
.hero-title { font-size: clamp(38px, 6vw, 68px); font-weight: 800; line-height: 1.08; letter-spacing: -1px; }
.hero-sub { max-width: 620px; margin: 24px auto 0; color: var(--text-dim); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }

/* Hero giriş animasyonu */
.hero-badge, .hero-title, .hero-sub, .hero-actions, .hero-stats { animation: heroIn .8s both cubic-bezier(.2,.8,.2,1); }
.hero-title { animation-delay: .1s; }
.hero-sub { animation-delay: .22s; }
.hero-actions { animation-delay: .34s; }
.hero-stats { animation-delay: .46s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 64px; }
.stat { display: flex; flex-direction: column; align-items: center; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.stat:hover { transform: translateY(-4px); }
.stat-num { font-family: 'Sora'; font-size: 30px; font-weight: 800; color: var(--text); transition: color .3s, text-shadow .3s; }
.stat:hover .stat-num { color: var(--accent); text-shadow: 0 0 18px var(--accent-glow); }
.stat-label { font-size: 13px; color: var(--text-dim); letter-spacing: .5px; }
.stat-divider { width: 1px; height: 38px; background: var(--border); }

/* Aşağı kaydır ipucu */
.scroll-cue {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--border); border-radius: 20px;
  display: flex; justify-content: center; padding-top: 8px;
  opacity: .65; transition: opacity .25s, border-color .25s;
  animation: heroIn .8s .6s both cubic-bezier(.2,.8,.2,1);
}
.scroll-cue:hover { opacity: 1; border-color: var(--border-hl); }
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--accent); animation: cueMove 1.8s ease-in-out infinite; }
@keyframes cueMove { 0% { transform: translateY(0); opacity: 1; } 70% { opacity: 0; } 100% { transform: translateY(14px); opacity: 0; } }
@media (max-width: 560px) { .scroll-cue { display: none; } }

/* ===== Sections ===== */
.section-head { text-align: center; margin-bottom: 40px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.5px; }
/* Ortalı başlıkların altına açılan gradient çizgi (galeri, iletişim) */
.section-head .section-title,
.contact-card .section-title { position: relative; display: inline-block; }
.section-head .section-title::after,
.contact-card .section-title::after {
  content: ""; position: absolute; left: 50%; bottom: -14px; width: 64px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateX(-50%) scaleX(0); transform-origin: center;
  transition: transform .7s .1s cubic-bezier(.2,.8,.2,1);
}
.reveal.in .section-title::after { transform: translateX(-50%) scaleX(1); }
.section-desc { color: var(--text-dim); margin-top: 10px; font-size: 17px; }

.gallery-section { padding: 70px 0 90px; }

/* ===== Filters ===== */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: var(--surface); color: var(--text-dim);
  border: 1px solid var(--border); cursor: pointer; transition: all .25s cubic-bezier(.2,.8,.2,1);
}
.filter-btn:hover { color: var(--text); border-color: var(--border-hl); transform: translateY(-2px); }
.filter-btn:active { transform: translateY(0) scale(.95); }
.filter-btn.active {
  color: #04121e; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent; box-shadow: 0 6px 20px var(--accent-glow);
}

/* ===== Masonry (resim oranı korunur, kırpılmaz) ===== */
.masonry { column-count: 3; column-gap: 20px; perspective: 1000px; }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

.card {
  break-inside: avoid; margin-bottom: 20px; position: relative;
  border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .15s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  --tilt-x: 0deg; --tilt-y: 0deg;
}
.card.in { opacity: 1; transform: translateY(0); }
.card:hover { transform: translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); border-color: var(--border-hl); box-shadow: 0 20px 48px rgba(0,0,0,.55), 0 0 28px var(--accent-glow); }
@media (prefers-reduced-motion: reduce) { .card { opacity: 1 !important; transform: none !important; transition: box-shadow .3s, border-color .3s !important; } }

/* Karta hover'da geçen ışık parıltısı */
.card::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.14) 48%, transparent 62%);
  transform: translateX(-120%); transition: transform .8s cubic-bezier(.2,.8,.2,1); opacity: 0;
}
.card:hover::before { transform: translateX(120%); opacity: 1; }

.card-media { width: 100%; display: block; overflow: hidden; }
.card-media img, .card-media video {
  width: 100%; height: auto; display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.card:hover .card-media img,
.card:hover .card-media video { transform: scale(1.07); }
.card-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; opacity: 0; transition: opacity .25s;
  background: linear-gradient(to top, rgba(4,8,16,0.92) 0%, rgba(4,8,16,0.2) 55%, transparent 100%);
}
.card:hover .card-overlay { opacity: 1; }
.card-title { font-family: 'Sora'; font-weight: 700; font-size: 17px; }
.card-cat {
  align-self: flex-start; margin-top: 8px; font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 999px; color: var(--accent);
  background: rgba(35,200,255,0.12); border: 1px solid var(--border-hl);
}
.card-badge-gif {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: .5px; padding: 4px 9px; border-radius: 8px;
  background: rgba(4,8,16,0.7); color: var(--accent); border: 1px solid var(--border-hl);
}

.skeleton-card {
  opacity: 1; transform: none; cursor: default;
  background: linear-gradient(100deg, var(--surface) 30%, var(--border-hl) 50%, var(--surface) 70%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
@keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .skeleton-card { animation: none; } }

/* ===== Empty state ===== */
.empty-state { text-align: center; padding: 70px 20px; color: var(--text-dim); }
.empty-icon { font-size: 46px; color: var(--accent); margin-bottom: 14px; filter: drop-shadow(0 0 14px var(--accent-glow)); }
.empty-state h3 { color: var(--text); font-size: 22px; margin-bottom: 8px; }
.empty-state p { margin-bottom: 22px; }

/* ===== About ===== */
.about-section { padding: 80px 0; }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.about-logo { width: 230px; height: auto; position: relative; z-index: 2; filter: drop-shadow(0 0 34px var(--accent-glow)); animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(3deg); } }
.about-content p { color: var(--text-dim); margin-top: 16px; font-size: 16px; }
.about-content .hero-badge { margin-bottom: 16px; }
.about-list { list-style: none; margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-list li {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border-radius: 12px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-weight: 500; font-size: 14.5px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s, background .25s;
}
.about-list li:hover { transform: translateY(-3px); border-color: var(--border-hl); background: var(--surface-2); }
.about-list-icon {
  flex: none; display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px; font-size: 12px; color: var(--accent);
  background: rgba(35,200,255,0.1); border: 1px solid var(--border-hl);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.about-list li:hover .about-list-icon { transform: rotate(90deg) scale(1.1); }
@media (max-width: 820px) { .about-inner { grid-template-columns: 1fr; text-align: center; } .about-list { max-width: 380px; margin-inline: auto; } }

/* ===== Process ===== */
.process-section { padding: 40px 0 90px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-card {
  position: relative; padding: 32px 26px; border-radius: 18px;
  background: linear-gradient(150deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s;
}
.process-card:hover { transform: translateY(-6px); border-color: var(--border-hl); box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 24px var(--accent-glow); }
.process-num {
  display: block; font-family: 'Sora'; font-size: 38px; font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: .55; margin-bottom: 10px;
}
.process-card h3 { font-family: 'Sora'; font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.process-card p { color: var(--text-dim); font-size: 14.5px; }
.process-card::after {
  content: ""; position: absolute; top: -30%; right: -20%; width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%); opacity: 0; transition: opacity .3s;
}
.process-card:hover::after { opacity: .5; }
@media (max-width: 820px) { .process-grid { grid-template-columns: 1fr; } }

/* ===== Marquee şerit ===== */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(35,200,255,0.04), transparent);
  padding: 16px 0;
}
.marquee-track { display: inline-flex; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: 'Sora'; font-weight: 800; font-size: 17px; letter-spacing: 2px;
  color: var(--text-dim); padding-right: 8px;
}
.marquee-track b { color: var(--accent); margin: 0 6px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ===== Reviews ===== */
.reviews-section { padding: 40px 0 90px; }
.reviews-stats {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin: 0 auto 44px; max-width: 720px;
}
.rstat {
  flex: 1; min-width: 160px; text-align: center; padding: 24px 18px;
  border-radius: 18px; background: linear-gradient(150deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s;
}
.rstat:hover { transform: translateY(-5px); border-color: var(--border-hl); box-shadow: 0 14px 34px rgba(0,0,0,.4), 0 0 22px var(--accent-glow); }
.rstat-num {
  display: block; font-family: 'Sora'; font-size: 34px; font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.rstat-label { display: block; margin-top: 6px; font-size: 13.5px; color: var(--text-dim); letter-spacing: .3px; }

.reviews-marquee {
  position: relative; display: flex; flex-direction: column; gap: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-row { display: flex; gap: 20px; width: max-content; animation: reviewScroll 46s linear infinite; }
.reviews-row-rev { animation-direction: reverse; animation-duration: 54s; }
.reviews-marquee:hover .reviews-row { animation-play-state: paused; }
@keyframes reviewScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .reviews-row { animation: none; flex-wrap: wrap; width: auto; } }

.review-card {
  flex: none; width: 340px;
  padding: 22px 22px 20px; border-radius: 16px;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
}
.review-card:hover { transform: translateY(-6px) scale(1.02); border-color: var(--border-hl); box-shadow: 0 18px 40px rgba(0,0,0,.5), 0 0 26px var(--accent-glow); }
@media (max-width: 560px) { .review-card { width: 280px; } }
.review-top { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora'; font-weight: 800; font-size: 18px; color: #04121e;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 14px var(--accent-glow);
}
.review-meta { display: flex; flex-direction: column; line-height: 1.3; }
.review-name { font-family: 'Sora'; font-weight: 700; font-size: 15px; color: var(--text); }
.review-date { font-size: 12.5px; color: var(--text-dim); }
.review-score {
  margin-left: auto; font-family: 'Sora'; font-weight: 800; font-size: 15px; color: var(--accent);
  padding: 4px 12px; border-radius: 999px;
  background: rgba(35,200,255,0.1); border: 1px solid var(--border-hl);
}
.review-text { color: var(--text-dim); font-size: 14.5px; margin: 14px 0 14px; min-height: 42px; }
.review-verified {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
  color: #34d399; padding: 4px 12px; border-radius: 999px;
  background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.3);
}

/* ===== Contact ===== */
.contact-section { padding: 40px 0 90px; }
.contact-card {
  text-align: center; padding: 60px 30px; border-radius: 24px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.contact-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -20%, var(--accent-glow), transparent 65%);
  opacity: .5; animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow { 0%, 100% { opacity: .35; } 50% { opacity: .6; } }
.contact-card > * { position: relative; }
.contact-actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-logo { width: 30px; height: 30px; }
.footer-brand .brand-name { font-size: 15px; }
.footer-copy { color: var(--text-dim); font-size: 14px; }
.footer-admin { color: var(--text-dim); font-size: 13px; padding: 6px 14px; border: 1px solid var(--border); border-radius: 8px; transition: all .2s; }
.footer-admin:hover { color: var(--accent); border-color: var(--border-hl); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  background: rgba(3, 6, 12, 0.92); backdrop-filter: blur(8px); padding: 40px;
  animation: fadeIn .25s;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content { max-width: 90vw; max-height: 82vh; display: flex; }
.lightbox-content img, .lightbox-content video { max-width: 90vw; max-height: 82vh; width: auto; height: auto; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 22px; right: 30px; font-size: 40px; color: var(--text); background: none; border: none; cursor: pointer; line-height: 1; opacity: .8; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 44px; color: var(--text); background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); width: 56px; height: 56px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.lightbox-nav:hover { background: rgba(35,200,255,0.15); border-color: var(--border-hl); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--text-dim); font-size: 15px; text-align: center; }
@media (max-width: 560px) { .lightbox-nav { width: 44px; height: 44px; font-size: 32px; } .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; } }
