/* Liondemy — site styles (liondemy.com.tr) */

@property --orbit-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --bg-dark: #060607;
  --bg-elevated: #0c0c0f;
  --bg-light: #f3efe8;
  --bg-muted: #e8e2d9;
  --text-dark: #0a0a0b;
  --text-light: #eceae6;
  --muted: #9c9893;
  --accent: #ff2a1a;
  --accent-2: #ff6b4a;
  --accent-soft: rgba(255, 42, 26, 0.38);
  --glass: rgba(12, 12, 14, 0.72);
  --glass-border: rgba(255, 255, 255, 0.09);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 96px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

::selection {
  background: rgba(255, 42, 26, 0.28);
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 450;
  color: var(--text-light);
  background: var(--bg-dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nav-link:focus-visible,
.btn:focus-visible {
  outline-offset: 4px;
}

/* Cursor glow (desktop) */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  left: 0;
  top: 0;
  translate: -50% -50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 55%);
  opacity: 0.55;
  mix-blend-mode: screen;
  transition: opacity 0.35s var(--ease-out);
}

@media (hover: none), (max-width: 900px) {
  .cursor-glow {
    display: none;
  }
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10001;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #ffc4b8);
  box-shadow: 0 0 24px var(--accent-soft);
  transition: width 0.12s linear;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-out), border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--glass-border);
}

.header-inner {
  width: min(1240px, 100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Marka: büyük görsel kilit + tipografik eşlik */
.brand {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-visual {
  position: relative;
  padding: 3px;
  border-radius: 18px;
  background: conic-gradient(
    from var(--orbit-angle),
    var(--accent),
    transparent 28%,
    var(--accent-2) 52%,
    transparent 72%,
    var(--accent) 100%
  );
  animation: orbit-spin 5s linear infinite;
  box-shadow:
    0 0 0 1px rgba(255, 42, 26, 0.25),
    0 16px 48px rgba(255, 42, 26, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@keyframes orbit-spin {
  to {
    --orbit-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-visual {
    animation: none;
    background: linear-gradient(135deg, rgba(255, 42, 26, 0.5), rgba(255, 107, 74, 0.35));
  }
}

.brand-orbit {
  display: none;
}

.brand-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 15px;
  background: linear-gradient(165deg, rgba(8, 8, 10, 0.94), rgba(18, 16, 16, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-img {
  height: clamp(48px, 5.5vw, 62px);
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(255, 42, 26, 0.2));
  transition: transform 0.45s var(--ease-spring), filter 0.35s;
}

.brand:hover .brand-img {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 28px rgba(255, 42, 26, 0.35));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
  padding-right: 8px;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 200, 190, 0.75);
}

@media (max-width: 720px) {
  .brand-copy {
    display: none;
  }
  .brand-inner {
    padding: 8px 12px;
  }
  .brand-img {
    height: 46px;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-light);
  opacity: 0.88;
  transition: background 0.25s, opacity 0.25s, transform 0.25s var(--ease-out);
}

.nav-link:hover {
  opacity: 1;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  opacity: 1;
  margin-left: 4px;
}

.nav-cta:hover {
  background: #ff4d3d;
  text-decoration: none;
}

.site-nav .nav-link.is-active:not(.nav-cta) {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.site-nav .nav-cta.is-active {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.35),
    0 12px 36px rgba(255, 42, 26, 0.4);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 12px;
    right: 12px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 10, 12, 0.94);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s var(--ease-out);
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }
  .nav-cta {
    margin-left: 0;
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 24px 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 30% 20%, rgba(255, 42, 26, 0.35), transparent),
    radial-gradient(ellipse 40% 35% at 75% 60%, rgba(255, 80, 60, 0.18), transparent),
    radial-gradient(ellipse 45% 50% at 50% 100%, rgba(120, 40, 255, 0.08), transparent);
  filter: blur(40px);
  animation: aurora 14s ease-in-out infinite alternate;
}

@keyframes aurora {
  0% {
    transform: translate(-3%, -2%) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(4%, 3%) rotate(8deg) scale(1.06);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.35;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: overlay;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%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");
}

.spark-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 14px;
  height: 14px;
  left: 22%;
  top: 38%;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.65;
  animation: twinkle 3.2s ease-in-out infinite;
  filter: drop-shadow(0 0 12px var(--accent));
}

.spark.s2 {
  left: 68%;
  top: 52%;
  animation-delay: 0.9s;
  transform: scale(0.85);
}

.spark.s3 {
  left: 48%;
  top: 22%;
  animation-delay: 1.6s;
  transform: scale(0.65);
}

.spark.s4 {
  left: 85%;
  top: 28%;
  animation-delay: 0.4s;
  transform: scale(0.55);
  opacity: 0.45;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.9) rotate(0deg);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.15) rotate(18deg);
  }
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
  text-align: center;
}

.hero-kicker {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(200, 196, 190, 0.85);
  margin: 0 0 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.kicker-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: kicker-pulse 3s ease-in-out infinite;
}

@keyframes kicker-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-optical-sizing: auto;
  line-height: 1.08;
  font-size: clamp(2.35rem, 5.8vw, 4.1rem);
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.shimmer-text {
  background: linear-gradient(
    105deg,
    #fff 0%,
    #fff 35%,
    #ffd4cc 45%,
    #fff 55%,
    #fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.shimmer-text-inline {
  background: linear-gradient(90deg, var(--accent), #ff8a76, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 10s linear infinite;
}

.title-em {
  font-style: italic;
  font-weight: 600;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 42, 26, 0.45);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.section-light .title-em {
  text-decoration-color: rgba(255, 42, 26, 0.35);
}

.word.italic {
  font-style: italic;
}

.title-line {
  display: block;
}

.word {
  display: inline-block;
}

.word.muted {
  color: #b8b4ae;
}

.word.accent {
  background: linear-gradient(100deg, #fff 10%, #ffc9be 45%, #ff7a62 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 620px;
  margin: 0 auto 26px;
  color: #c4c0ba;
  font-size: 1.125rem;
  font-weight: 450;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.pill {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(240, 236, 232, 0.9);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}

.pill:hover {
  border-color: rgba(255, 42, 26, 0.45);
  background: rgba(255, 42, 26, 0.08);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.btn {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 40px rgba(255, 42, 26, 0.35);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 90%
  );
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease-out);
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-primary:hover {
  background: #ff4d3d;
}

.btn-lg {
  padding: 17px 32px;
  font-size: 1.06rem;
}

.btn-glow {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 18px 56px rgba(255, 42, 26, 0.45);
}

.btn-glow:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 22px 64px rgba(255, 42, 26, 0.55);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #eceae6;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s var(--ease-out);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--glass-border);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.hero-mark {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

/* Üstteki marka ile aynı: dönen conic çerçeve + cam iç panel */
.hero-brand-visual {
  position: relative;
  padding: 4px;
  border-radius: 26px;
  background: conic-gradient(
    from var(--orbit-angle),
    var(--accent),
    transparent 28%,
    var(--accent-2) 52%,
    transparent 72%,
    var(--accent) 100%
  );
  animation: orbit-spin 5s linear infinite;
  box-shadow:
    0 0 0 1px rgba(255, 42, 26, 0.28),
    0 20px 64px rgba(255, 42, 26, 0.18),
    0 40px 100px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-spring);
}

.hero-mark:hover .hero-brand-visual {
  box-shadow:
    0 0 0 1px rgba(255, 42, 26, 0.4),
    0 24px 72px rgba(255, 42, 26, 0.28),
    0 48px 120px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand-visual {
    animation: none;
    background: linear-gradient(135deg, rgba(255, 42, 26, 0.55), rgba(255, 107, 74, 0.38));
  }
  .hero-mark:hover .hero-brand-visual {
    transform: none;
  }
}

.hero-brand-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3.5vw, 28px) clamp(22px, 4vw, 36px);
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(8, 8, 10, 0.96), rgba(16, 14, 14, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-logo {
  position: relative;
  width: min(400px, calc(90vw - 48px));
  height: auto;
  opacity: 0.97;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(255, 42, 26, 0.12)) drop-shadow(0 28px 70px rgba(0, 0, 0, 0.45));
  animation: heroLogoIn 1.2s var(--ease-out) 0.25s both;
  transition: transform 0.45s var(--ease-spring), filter 0.35s;
}

.hero-mark:hover .hero-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 16px 48px rgba(255, 42, 26, 0.2)) drop-shadow(0 32px 80px rgba(0, 0, 0, 0.5));
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.94);
    filter: drop-shadow(0 12px 40px rgba(255, 42, 26, 0.08)) drop-shadow(0 28px 70px rgba(0, 0, 0, 0.45)) blur(8px);
  }
  to {
    opacity: 0.97;
    transform: none;
    filter: drop-shadow(0 12px 40px rgba(255, 42, 26, 0.12)) drop-shadow(0 28px 70px rgba(0, 0, 0, 0.45));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo {
    animation: none;
  }
  .hero-mark:hover .hero-logo {
    transform: none;
  }
  .btn-primary::after {
    display: none;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 12vw, 120px) 24px;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-elevated));
  color: var(--text-light);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, 100%);
}

.align-center {
  text-align: center;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 14px;
}

.section-light .section-eyebrow {
  color: #6f6a63;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -0.025em;
}

.section-lead {
  margin: 0;
  font-size: 1.12rem;
  color: #b5b0a8;
}

.section-light .section-lead {
  color: #3d3a36;
}

.section-note {
  margin-top: 28px;
  font-size: 1.05rem;
  color: #5c574f;
}

.section-muted {
  background: var(--bg-muted);
  color: var(--text-dark);
  position: relative;
}

.section-muted::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 50%, rgba(255, 42, 26, 0.06), transparent);
  pointer-events: none;
}

.section-diagonal {
  position: relative;
  overflow: hidden;
}

.section-diagonal::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -40%;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    155deg,
    rgba(255, 42, 26, 0.07),
    transparent 55%
  );
  pointer-events: none;
  transform: rotate(-8deg);
}

/* İstatistik şeridi */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
}

.stat-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(10, 10, 12, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.65rem);
  letter-spacing: -0.03em;
  color: var(--text-dark);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-static {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.65rem);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--accent), #1a1a1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-suffix {
  font-size: 0.65em;
  opacity: 0.85;
}

.stat-label {
  font-size: 0.92rem;
  color: #5a554e;
  line-height: 1.4;
}

/* Bento */
.section-bento-wrap {
  position: relative;
  overflow: hidden;
}

.bento-glow {
  position: absolute;
  width: 80%;
  height: 60%;
  left: 10%;
  top: 15%;
  background: radial-gradient(ellipse at center, rgba(255, 42, 26, 0.14), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.section-head-wide {
  max-width: 820px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.bento {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.bento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(255, 42, 26, 0.12),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.bento:hover::before {
  opacity: 1;
}

.bento h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  margin: 0 0 12px;
  position: relative;
}

.bento p {
  margin: 0 0 14px;
  color: #b0aba5;
  font-size: 0.98rem;
  position: relative;
}

.bento-lg {
  grid-column: span 12;
}

.bento-md {
  grid-column: span 12;
}

.bento-sm {
  grid-column: span 12;
}

@media (min-width: 900px) {
  .bento-lg {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 280px;
  }
  .bento-sm {
    grid-column: span 5;
  }
  .bento-md {
    grid-column: span 6;
  }
}

.bento-icon {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.5;
  animation: icon-spin 12s linear infinite;
}

@keyframes icon-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bento-icon {
    animation: none;
  }
}

.bento-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: #9c9791;
  font-size: 0.92rem;
  display: grid;
  gap: 8px;
  position: relative;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 42, 26, 0.12);
  border: 1px solid rgba(255, 42, 26, 0.25);
  color: #ffc9c0;
}

/* Süreç */
.section-flow {
  position: relative;
}

.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

@media (min-width: 800px) {
  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.flow-step {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  position: relative;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.flow-step:hover {
  border-color: rgba(255, 42, 26, 0.35);
  transform: translateY(-3px);
}

.flow-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 10px;
}

.flow-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.flow-step p {
  margin: 0;
  font-size: 0.92rem;
  color: #a8a39d;
}

/* Sektör bulutu */
.sectors {
  margin-top: 32px;
}

.sectors-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f6a63;
  margin: 0 0 12px;
}

.sectors-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sectors-cloud span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(10, 10, 12, 0.08);
  font-size: 0.88rem;
  font-weight: 500;
  color: #3d3a36;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out);
}

.sectors-cloud span:hover {
  border-color: rgba(255, 42, 26, 0.35);
  box-shadow: 0 8px 24px rgba(255, 42, 26, 0.1);
  transform: translateY(-2px);
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s, transform 0.25s var(--ease-out), background 0.25s;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: #fff;
}

.service-card p {
  margin: 0;
  color: #b0aba5;
  font-size: 0.98rem;
}

.service-bullets {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-bullets li {
  font-size: 0.86rem;
  color: #928d87;
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.75;
}

.service-card:hover {
  border-color: rgba(255, 42, 26, 0.45);
  background: rgba(255, 42, 26, 0.06);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 42, 26, 0.12),
    0 0 48px rgba(255, 42, 26, 0.08);
}

/* More expandable */
.more-block {
  margin-top: 40px;
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
}

.more-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s, background 0.25s;
}

.more-toggle:hover {
  border-color: rgba(255, 42, 26, 0.4);
}

.more-label {
  font-weight: 700;
  font-family: var(--font-display);
}

.more-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  opacity: 0.8;
}

.more-toggle[aria-expanded="true"] .more-icon {
  transform: rotate(225deg);
}

.more-panel {
  margin-top: 16px;
  padding: 8px 4px 0;
}

.more-panel[hidden] {
  display: none;
}

.more-list {
  margin: 0;
  padding: 0 0 0 20px;
  color: #b0aba5;
  display: grid;
  gap: 10px;
}

@media (min-width: 700px) {
  .more-list-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.more-foot {
  margin: 20px 0 0;
  color: #8a8580;
  font-size: 0.95rem;
}

/* Wordmark strip */
.section-logo {
  padding-block: clamp(56px, 10vw, 96px);
}

.wordmark {
  margin: 0 auto;
  max-width: 480px;
  opacity: 0.92;
}

.wordmark-caption {
  margin: 20px 0 0;
  color: #6f6a63;
  font-size: 1rem;
}

/* Split + glass */
.split {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  color: #c9c5c0;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.glass-panel {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.panel-title {
  font-family: var(--font-display);
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.glass-panel p {
  margin: 0 0 22px;
  color: #b0aba5;
}

.mini-grid {
  display: grid;
  gap: 14px;
}

.mini-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-card h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.mini-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #a8a39d;
}

/* Marquee */
.marquee-section {
  padding: 0;
  background: #0a0a0c;
  border-block: 1px solid var(--glass-border);
}

.marquee {
  overflow: hidden;
  padding: 22px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.marquee-track span {
  white-space: nowrap;
}

.marquee-fast {
  animation-duration: 16s;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* Contact */
.contact-form {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field span {
  font-weight: 600;
  font-size: 0.9rem;
  color: #4a4640;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #d6d0c8;
  background: #fff;
  font: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 42, 26, 0.2);
}

.form-success {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #e2dcd4;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-success h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
}

.form-success p {
  margin: 0 0 8px;
  color: #3d3a36;
}

.alt-contact a {
  color: var(--accent);
  font-weight: 600;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Bölüm dalgası (metrik → taahhüt geçişi) */
.section-ribbon {
  line-height: 0;
  color: var(--bg-light);
  background: var(--bg-muted);
}

.ribbon-svg {
  width: 100%;
  height: clamp(40px, 7vw, 72px);
  display: block;
}

/* Pazaryeri / kanal logoları */
.section-channels {
  padding-top: clamp(48px, 8vw, 72px);
  padding-bottom: clamp(40px, 7vw, 64px);
  border-top: 1px solid rgba(10, 10, 12, 0.06);
}

.channels-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.logo-strip-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f6a63;
  margin: 32px 0 14px;
}

.logo-strip-heading:first-of-type {
  margin-top: 8px;
}

.logo-strip {
  position: relative;
  overflow: hidden;
  margin: 0 -12px;
  padding: 8px 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.logo-strip-track {
  display: flex;
  width: max-content;
  animation: logo-strip-marquee 55s linear infinite;
}

.logo-strip--market .logo-strip-track {
  animation-duration: 70s;
}

.logo-strip--cargo .logo-strip-track {
  animation-duration: 58s;
}

.logo-strip--erp .logo-strip-track {
  animation-duration: 62s;
}

.logo-strip--reverse .logo-strip-track {
  animation-direction: reverse;
}

.logo-strip:hover .logo-strip-track {
  animation-play-state: paused;
}

@keyframes logo-strip-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-strip-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .logo-strip-group[aria-hidden="true"] {
    display: none;
  }

  .logo-strip {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-strip:hover .logo-strip-track {
    animation-play-state: running;
  }
}

.logo-strip-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  flex-shrink: 0;
}

.logo-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 12, 0.09);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.logo-strip-item:hover {
  text-decoration: none;
  transform: translateY(-3px);
  border-color: rgba(255, 42, 26, 0.25);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.logo-strip-item--static {
  cursor: default;
  border-style: dashed;
  border-color: rgba(255, 42, 26, 0.28);
  background: rgba(255, 42, 26, 0.04);
}

.logo-strip-item--static:hover {
  transform: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.logo-strip-ico {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #f4f1ec, #fff);
  border: 1px solid rgba(10, 10, 12, 0.06);
  flex-shrink: 0;
}

.logo-strip-ico img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.9;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s var(--ease-out);
}

.logo-strip-item:hover .logo-strip-ico img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.06);
}

.logo-strip-ico-more {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  background: rgba(255, 42, 26, 0.1);
  border: 1px dashed rgba(255, 42, 26, 0.35);
}

.logo-strip-label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #3d3a36;
}

.channels-foot {
  margin: 28px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #8a8580;
  max-width: 640px;
}

/* Üç taahhüt */
.section-pillars {
  position: relative;
}

.pillar-intro {
  max-width: 680px;
  margin-bottom: 44px;
}

.pillar-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pillar-card {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(10, 10, 12, 0.07);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.3s;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0.65;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.11);
  border-color: rgba(255, 42, 26, 0.18);
}

.pillar-card-accent {
  border-color: rgba(255, 42, 26, 0.18);
  background: linear-gradient(168deg, #fff 0%, #fff6f4 55%, #fff 100%);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.pillar-text {
  margin: 0 0 16px;
  color: #524e47;
  font-size: 0.98rem;
  line-height: 1.55;
}

.pillar-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #6a655d;
}

.pillar-points li {
  padding-left: 18px;
  position: relative;
}

.pillar-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0.75;
}

/* SSS */
.section-faq .section-lead {
  color: #a8a39d;
}

.faq-list {
  margin-top: 32px;
  display: grid;
  gap: 0;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, background 0.3s;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item[open] {
  border-color: rgba(255, 42, 26, 0.35);
  background: rgba(255, 42, 26, 0.05);
}

.faq-item summary {
  padding: 18px 52px 18px 20px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: #f0ece8;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 42, 26, 0.15);
  color: var(--accent-2);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.35s var(--ease-out), background 0.25s;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: rgba(255, 42, 26, 0.28);
}

.faq-body {
  padding: 0 20px 20px;
  color: #b0aba5;
  font-size: 0.96rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0 12px;
  padding-top: 16px;
  padding-bottom: 20px;
}

.faq-body p {
  margin: 0;
}

/* Footer öncesi CTA */
.cta-finale {
  position: relative;
  padding: clamp(72px, 14vw, 120px) 24px;
  overflow: hidden;
  background: #070708;
  border-top: 1px solid var(--glass-border);
}

.cta-finale-aurora {
  position: absolute;
  inset: -45%;
  background:
    radial-gradient(ellipse 55% 42% at 50% -10%, rgba(255, 42, 26, 0.32), transparent),
    radial-gradient(ellipse 40% 35% at 85% 75%, rgba(90, 50, 200, 0.09), transparent);
  filter: blur(48px);
  animation: aurora 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta-finale-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 15%, transparent 70%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 15%, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
}

.cta-finale-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.cta-finale-copy {
  flex: 1;
  min-width: min(100%, 320px);
}

.cta-finale-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 200, 190, 0.88);
  margin: 0 0 14px;
}

.cta-finale-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 2.9rem);
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 560px;
  color: #fff;
  letter-spacing: -0.03em;
}

.cta-finale-lead {
  margin: 0;
  color: #a8a39d;
  max-width: 460px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-finale-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* Footer */
.site-footer {
  padding: 40px 24px 48px;
  background: #050506;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-logo {
  height: 48px;
  width: auto;
  opacity: 0.96;
  filter: drop-shadow(0 6px 20px rgba(255, 42, 26, 0.15));
}

.footer-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(200, 196, 190, 0.7);
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-meta a {
  color: #fff;
  font-weight: 600;
}

.footer-meta a:hover {
  color: var(--accent);
}

.dot {
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.footer-links a {
  color: #c9c5c0;
}

.footer-links a:hover {
  color: #fff;
}
