/* Klavyus — paylaşılan stiller */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0B0C10;
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

.font-headline {
  font-family: 'Stack Sans Headline', sans-serif;
}

/* Marquee */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-track {
  animation: marquee-scroll 30s linear infinite;
}

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

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gallery-track {
  animation: gallery-scroll 40s linear infinite;
}

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

.portfolio-track {
  animation-duration: 90s;
}

/* Logo grid vertical scroll */
@keyframes logo-grid-scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.logo-grid-animate {
  animation: logo-grid-scroll 20s linear infinite;
}

/* Fade in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  filter: blur(5px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Counter digit roll */
.counter-roll {
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2em;
}

/* Testimonial slider */
.testimonial-slide {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Sticky header */
[data-sticky-nav] {
  transition: transform 0.35s ease;
}

[data-sticky-nav].nav-hidden {
  transform: translateY(calc(-100% - 1rem));
  pointer-events: none;
}

[data-sticky-nav].nav-over-hero.is-fixed {
  position: fixed;
}

.nav-sticky {
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.nav-sticky.nav-solid,
.nav-sticky.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Anasayfa — koyu hero üzerinde beyaz menü */
.nav-logo-img {
  transition: opacity 0.3s ease;
}

.nav-logo-img--light {
  display: none;
}

.nav-sticky.nav-light:not(.nav-solid):not(.scrolled) .nav-logo-img--dark {
  display: none;
}

.nav-sticky.nav-light:not(.nav-solid):not(.scrolled) .nav-logo-img--light {
  display: block;
}

.nav-sticky.nav-light .nav-link {
  color: #fff;
}

.nav-sticky.nav-light .menu-toggle-bar {
  background-color: #fff;
}

.nav-sticky.nav-light .nav-cta {
  background: #fff;
  color: #0a0a0a;
}

.nav-sticky:not(.nav-light) .nav-cta,
.nav-sticky.scrolled .nav-cta,
.nav-sticky.nav-solid .nav-cta {
  background: #0B0C10;
  color: #fff;
}

.nav-sticky:not(.nav-light) .nav-cta:hover,
.nav-sticky.scrolled .nav-cta:hover,
.nav-sticky.nav-solid .nav-cta:hover {
  background: #16181e;
}

.nav-sticky .nav-link,
.nav-sticky .menu-toggle-bar {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-sticky.nav-solid .nav-link,
.nav-sticky.scrolled .nav-link {
  color: #0a0a0a;
}

.nav-sticky.nav-solid .menu-toggle-bar,
.nav-sticky.scrolled .menu-toggle-bar {
  background-color: #0a0a0a;
}

/* Button hover */
.btn-primary {
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* FAQ accordion */
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  overflow: hidden;
}

.faq-content-inner p {
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {

  .faq-content,
  .faq-content-inner p,
  .faq-icon {
    transition: none;
  }

  .faq-content-inner p {
    opacity: 1;
    transform: none;
  }
}

/* Foundation tabs — misyon / vizyon / değerler */
.foundation-tabs__panels {
  display: grid;
  align-items: start;
  isolation: isolate;
}

.foundation-tabs__panel {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

.foundation-tabs__panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 1;
}

.foundation-tabs__btn {
  transition:
    background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.foundation-tabs__btn:hover:not(.is-active) {
  background-color: rgba(0, 0, 0, 0.05);
}

.foundation-tabs__btn.is-active {
  background-color: #0B0C10;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(11, 12, 16, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .foundation-tabs__panel {
    filter: none;
    transform: none;
    transition: opacity 0.2s ease;
  }

  .foundation-tabs__btn {
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .foundation-tabs__btn.is-active {
    transform: none;
  }
}

/* Service tabs */
.tab-btn.active {
  background: #fff;
  color: #0a0a0a;
}

/* Process cards sticky */
.process-card {
  transition: transform 0.3s ease;
}

/* Video overlay */
.video-poster {
  background-size: cover;
  background-position: center;
}

/* Gradient fades for marquee */
.marquee-fade-left {
  background: linear-gradient(to right, #fff, transparent);
}

.marquee-fade-right {
  background: linear-gradient(to left, #fff, transparent);
}

/* Spinner */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin 3s linear infinite;
}

/* Hero video arka plan */
.hero-video {
  pointer-events: none;
  z-index: 1;
}

.hero-fallback {
  z-index: 0;
}

.hero-fallback.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* Hero overlay */
.hero-overlay {
  z-index: 2;
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.45) 0%, rgba(11, 12, 16, 0.88) 100%);
}

/* Dropdown */
.dropdown-panel {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Mobile menu */
.mobile-menu-enter {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.menu-toggle {
  position: relative;
  z-index: 60;
}

.menu-toggle span {
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-toggle.is-open .menu-toggle-bar {
  background-color: #0a0a0a;
}

.nav-sticky.nav-light .menu-toggle.is-open .menu-toggle-bar {
  background-color: #0a0a0a;
}

/* Solutions */
.solution-card {
  background: #12141a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.solution-card:hover {
  background: #181b22;
  border-color: rgba(102, 252, 241, 0.22);
}

.solution-package-box {
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 1px 2px rgba(11, 12, 16, 0.04);
}

.solution-package-box--muted {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.06);
}

.solution-package-box--dark {
  border-color: rgba(69, 162, 158, 0.35);
  background: rgba(69, 162, 158, 0.12);
  box-shadow: none;
}

.solution-feature-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-radius: 1.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.solution-feature-card:hover {
  border-color: rgba(69, 162, 158, 0.35);
  box-shadow: 0 8px 24px rgba(11, 12, 16, 0.06);
  transform: translateY(-2px);
}

.solution-feature-card--muted {
  background: #f3f3f3;
}

.solution-feature-card--dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: #12141a;
}

.solution-feature-card--dark:hover {
  border-color: rgba(69, 162, 158, 0.4);
  background: #181b22;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.solution-feature-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(69, 162, 158, 0.15);
  color: #45a29e;
  font-size: 0.75rem;
}

.solution-feature-card--dark .solution-feature-icon {
  background: rgba(69, 162, 158, 0.2);
}

.solution-btn-outline--dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.solution-btn-outline--dark:hover {
  background: #fff;
  color: #0b0c10;
}

.solution-btn-outline--light {
  border-color: rgba(11, 12, 16, 0.18);
  color: #0b0c10;
}

.solution-btn-outline--light:hover {
  background: #0b0c10;
  color: #fff;
}

/* Tag pill */
.tag-pill {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.tag-pill--hero {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.hero-feature-pill {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-outline {
  transition: background-color 0.3s ease;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.social-icon-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #fff;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-sector-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer-sector-tag:hover {
  border-color: rgba(102, 252, 241, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Footer on dark bg */
.footer-dark a {
  color: rgba(255, 255, 255, 0.7);
}

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

/* Editor content — CKEditor ve detay sayfaları */
.editor-content-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 8px 32px rgba(11, 12, 16, 0.06);
}

.editor-content-shell::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 3.5rem;
  pointer-events: none;
  border-radius: 0 0 1.5rem 1.5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.98));
}

.editor-content-scroll {
  position: relative;
  z-index: 0;
  max-height: min(72vh, 580px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 2rem 2rem 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.editor-content-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

@media (min-width: 768px) {
  .editor-content-scroll {
    padding: 2.5rem 2.75rem 2.5rem 2.5rem;
  }
}

.editor-content-scrollbar {
  position: absolute;
  top: 1.25rem;
  right: 0.75rem;
  bottom: 1.25rem;
  z-index: 2;
  width: 6px;
  border-radius: 9999px;
  background: #f3f3f3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.editor-content-shell.is-scrollable .editor-content-scrollbar {
  opacity: 1;
  pointer-events: auto;
}

.editor-content-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 2.5rem;
  border-radius: 9999px;
  background: rgba(69, 162, 158, 0.55);
  transition: background 0.2s ease;
  cursor: grab;
  touch-action: none;
}

.editor-content-scrollbar-thumb:hover,
.editor-content-scrollbar-thumb.is-dragging {
  background: rgba(69, 162, 158, 0.8);
}

.editor-content-scrollbar-thumb.is-dragging {
  cursor: grabbing;
}

.editor-content {
  color: #0B0C10;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.editor-content>*:first-child {
  margin-top: 0;
}

.editor-content>*:last-child {
  margin-bottom: 0;
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
  font-family: 'Stack Sans Headline', sans-serif;
  font-weight: 500;
  color: #0B0C10;
  line-height: 1.25;
}

.editor-content h1 {
  margin: 2.5rem 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

.editor-content h2 {
  margin: 2.25rem 0 1rem;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  letter-spacing: -0.015em;
}

.editor-content h3 {
  margin: 2rem 0 0.875rem;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

.editor-content h4 {
  margin: 1.75rem 0 0.75rem;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

.editor-content h5 {
  margin: 1.5rem 0 0.625rem;
  font-size: 1.0625rem;
}

.editor-content h6 {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5d5d5d;
}

.editor-content p {
  margin: 0 0 1.25rem;
  color: #5d5d5d;
}

.editor-content strong,
.editor-content b {
  font-weight: 600;
  color: #0B0C10;
}

.editor-content a {
  color: #45A29E;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.editor-content a:hover {
  color: #0B0C10;
}

.editor-content ul,
.editor-content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
  color: #5d5d5d;
}

.editor-content ul {
  list-style-type: disc;
}

.editor-content ol {
  list-style-type: decimal;
}

.editor-content li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.editor-content li::marker {
  color: #45A29E;
}

.editor-content ul ul,
.editor-content ol ol,
.editor-content ul ol,
.editor-content ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.editor-content blockquote {
  margin: 1.75rem 0;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 4px solid #45A29E;
  color: #5d5d5d;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.65;
}

.editor-content blockquote p {
  margin-bottom: 0.75rem;
}

.editor-content blockquote p:last-child {
  margin-bottom: 0;
}

.editor-content blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  color: #0B0C10;
}

.editor-content table {
  width: 100%;
  margin: 1.75rem 0;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.editor-content th,
.editor-content td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  vertical-align: top;
}

.editor-content th {
  font-family: 'Stack Sans Headline', sans-serif;
  font-weight: 500;
  color: #0B0C10;
  background: #f3f3f3;
}

.editor-content td {
  color: #5d5d5d;
}

.editor-content tr:nth-child(even) td {
  background: rgba(243, 243, 243, 0.5);
}

.editor-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 1rem;
}

.editor-content hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.editor-content pre,
.editor-content code {
  font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
  font-size: 0.875rem;
}

.editor-content pre {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  border-radius: 1rem;
  background: #f3f3f3;
  color: #0B0C10;
}

.editor-content code {
  padding: 0.15em 0.4em;
  border-radius: 0.375rem;
  background: #f3f3f3;
  color: #0B0C10;
}

.editor-content pre code {
  padding: 0;
  background: transparent;
}

/* twbsPagination — pill style (blog, product, project, gallery lists) */
.pagination-pills .pagination-pills__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-pills .pagination-pills__list > li {
  margin: 0;
  padding: 0;
}

.pagination-pills .d-none {
  display: none !important;
}

.pagination-pills .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  color: #5d5d5d;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.pagination-pills .page-item:not(.active):not(.disabled) .page-link:hover {
  border-color: #0B0C10;
  color: #0B0C10;
}

.pagination-pills .page-item.active .page-link,
.pagination-pills .page-item.active .page-link:hover {
  background-color: #0B0C10;
  color: #fff;
  border-color: #0B0C10;
  cursor: default;
}

.pagination-pills .page-item.disabled .page-link {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

.pagination-pills .page-link:focus {
  outline: none;
}

.pagination-pills .page-link:focus-visible {
  outline: 2px solid #0B0C10;
  outline-offset: 2px;
}

/* SweetAlert — zorunlu alan listesi */
.zorunlu-alanlar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  padding: 0;
  text-align: left;
}

.zorunlu-alanlar span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #f3f3f3;
  color: #5d5d5d;
  font-size: 0.875rem;
  line-height: 1.4;
}

.zorunlu-alanlar span::before {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #45A29E;
}


/* Spinner Stili */

.custom-spinner {
  display: inline-block;

  width: 16px;

  height: 16px;

  border: 2px solid #fff;

  border-top: 2px solid transparent;

  border-radius: 50%;

  animation: spin 0.8s linear infinite;

  margin-left: 8px;

  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 55;
  padding: 0.75rem 1rem 1rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.25rem);
  pointer-events: none;
  transition-duration: 0.65s;
}

.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.875rem;
  max-width: 1328px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 8px 32px rgba(11, 12, 16, 0.1);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(0.75rem) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
    filter 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

.cookie-consent.is-visible .cookie-consent__inner {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.cookie-consent.is-hidden .cookie-consent__inner {
  opacity: 0;
  transform: translateY(0.5rem) scale(0.99);
  filter: blur(3px);
  transition-delay: 0s;
  transition-duration: 0.5s;
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #5d5d5d;
}

.cookie-consent__link {
  font-weight: 500;
  color: #0B0C10;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.cookie-consent__link:hover {
  opacity: 0.7;
}

.cookie-consent__btn {
  flex-shrink: 0;
  align-self: flex-end;
  border: 0;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  background: #0B0C10;
  cursor: pointer;
}

.cookie-consent__btn:hover {
  background: #16181e;
}

@media (min-width: 640px) {
  .cookie-consent {
    padding: 1rem 1.5rem 1.5rem;
  }

  .cookie-consent__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    border-radius: 1.5rem;
  }

  .cookie-consent__text {
    flex: 1;
    font-size: 0.875rem;
  }

  .cookie-consent__btn {
    align-self: center;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent {
    transition: opacity 0.25s ease, visibility 0.25s ease;
    transform: none;
  }

  .cookie-consent.is-visible,
  .cookie-consent.is-hidden {
    transform: none;
  }

  .cookie-consent__inner {
    filter: none;
    transform: none;
    transition: opacity 0.25s ease;
  }

  .cookie-consent.is-visible .cookie-consent__inner,
  .cookie-consent.is-hidden .cookie-consent__inner {
    filter: none;
    transform: none;
  }
}