@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff6b6b;
  --primary-hover: #ff5252;
  --bg: #1a1a1a;
  --bg-alt: #212121;
  --surface: #2a2a2a;
  --surface-light: #333333;
  --surface-border: #3d3d3d;
  --text: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #6b6b6b;
  --shadow: rgba(0, 0, 0, 0.25);
  --glow-primary: rgba(255, 107, 107, 0.15);
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f5;
  background-color: #1a1a1a;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: #ff6b6b;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #ff5252;
}

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

::selection {
  background: rgba(255, 107, 107, 0.3);
  color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6b6b6b;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #f5f5f5;
}

.logo-text {
  font-family: "Pacifico", cursive;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.header--scrolled {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
@media (max-width: 768px) {
  .header__inner {
    height: 60px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header__logo img {
  height: 36px;
  width: auto;
}
.header__logo span {
  font-family: "Pacifico", cursive;
  font-size: 24px;
  color: #ff6b6b;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__link {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b6b;
  border-radius: 1px;
  transition: width 0.3s ease;
}
.header__link:hover, .header__link.active {
  color: #f5f5f5;
}
.header__link:hover::after, .header__link.active::after {
  width: 100%;
}

.header__cta {
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  color: white;
  padding: 14px 32px;
  padding: 10px 24px;
  font-size: 14px;
}
.header__cta:hover {
  background: linear-gradient(135deg, #ff5252 0%, #d94545 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.3), 0 8px 32px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
  .header__cta {
    display: none;
  }
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 901;
}
@media (max-width: 1024px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5f5f5;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 900;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header__mobile-menu.open {
  display: flex;
  opacity: 1;
}
.header__mobile-menu a {
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header__mobile-menu a:hover {
  color: #ff6b6b;
}
.header__mobile-menu .header__mobile-cta {
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  color: white;
  padding: 14px 32px;
  padding: 14px 40px;
  font-size: 16px;
  margin-top: 16px;
}
.header__mobile-menu .header__mobile-cta:hover {
  background: linear-gradient(135deg, #ff5252 0%, #d94545 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.3), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero {
  position: relative;
  padding: 128px 0 96px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 64px;
    min-height: auto;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.6);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0.3) 30%, rgba(26, 26, 26, 0.5) 70%, #1a1a1a 100%);
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .hero__inner {
    text-align: center;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .hero__content {
    align-items: center;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 9999px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ff6b6b;
  width: fit-content;
}

.hero__title {
  font-family: "Nunito", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #f5f5f5;
}
.hero__title .hero__title-accent {
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
  }
}

.hero__subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  color: #a0a0a0;
  line-height: 1.7;
  max-width: 520px;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 16px;
    max-width: 100%;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero__actions {
    align-items: center;
    width: 100%;
  }
}

.hero__cta {
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  color: white;
  padding: 14px 32px;
  padding: 16px 36px;
  font-size: 16px;
  width: fit-content;
}
.hero__cta:hover {
  background: linear-gradient(135deg, #ff5252 0%, #d94545 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.3), 0 8px 32px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .hero__cta {
    width: 100%;
    max-width: 300px;
  }
}

.hero__stores {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__stores {
    justify-content: center;
  }
}
.hero__stores a {
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.hero__stores a:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.hero__stores a img {
  height: 44px;
  width: auto;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .hero__visual {
    margin-top: 40px;
  }
}

.hero__carousel {
  position: relative;
}

.hero__device {
  position: relative;
  width: 280px;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 0 0 2px #333, 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 107, 107, 0.15);
}
@media (max-width: 768px) {
  .hero__device {
    width: 220px;
    border-radius: 28px;
    padding: 10px;
  }
}

.hero__device-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9/19.5;
  border-radius: 24px;
  overflow: hidden;
  background: #1a1a1a;
}
@media (max-width: 768px) {
  .hero__device-screen {
    border-radius: 18px;
  }
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__slide.active {
  opacity: 1;
}

.hero__carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero__dot.active {
  background: #ff6b6b;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.3);
}
.hero__dot:hover:not(.active) {
  background: #6b6b6b;
}

.features {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .features {
    padding: 64px 0;
  }
}

.features__header {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .features__header {
    margin-bottom: 40px;
  }
}

.features__title {
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .features__title {
    font-size: 28px;
  }
}

.features__subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .features__subtitle {
    font-size: 16px;
  }
}

.feature {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .feature {
    padding: 64px 0;
  }
}
.feature:nth-child(even) {
  background: #212121;
}

.feature__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .feature__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.feature__inner.feature__inner--reverse {
  direction: rtl;
}
.feature__inner.feature__inner--reverse > * {
  direction: ltr;
}
@media (max-width: 768px) {
  .feature__inner.feature__inner--reverse {
    direction: ltr;
  }
}
@media (max-width: 768px) {
  .feature__inner {
    gap: 40px;
  }
}

.feature__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 4px;
}

.feature__title {
  font-family: "Nunito", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .feature__title {
    font-size: 24px;
  }
}

.feature__description {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  color: #a0a0a0;
  line-height: 1.7;
}

.feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.feature__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: #a0a0a0;
}
.feature__list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center/contain;
}

.feature__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature__image {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.feature__image:hover {
  transform: scale(1.02);
}

.feature__placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 5/4;
  background: #2a2a2a;
  border: 1.5px dashed #3d3d3d;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.feature__placeholder .feature__placeholder-icon {
  font-size: 48px;
  opacity: 0.5;
}
.feature__placeholder .feature__placeholder-text {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #6b6b6b;
}

.screenshots {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .screenshots {
    padding: 64px 0;
  }
}

.screenshots__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.screenshots__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.screenshots__title {
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .screenshots__title {
    font-size: 28px;
  }
}

.screenshots__subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .screenshots__subtitle {
    font-size: 16px;
  }
}

.screenshots__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .screenshots__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .screenshots__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.screenshots__item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.screenshots__item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.screenshots__item img {
  width: 100%;
  height: auto;
  display: block;
}

.pricing {
  padding: 96px 0;
  background: #212121;
}
@media (max-width: 768px) {
  .pricing {
    padding: 64px 0;
  }
}

.pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing__title {
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .pricing__title {
    font-size: 28px;
  }
}

.pricing__subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing__subtitle {
    font-size: 16px;
  }
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.pricing__toggle-label {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: #a0a0a0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.pricing__toggle-label.active {
  color: #f5f5f5;
  font-weight: 600;
}

.pricing__toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: #333333;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}
.pricing__toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #f5f5f5;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.pricing__toggle-switch.annual::after {
  transform: translateX(24px);
}
.pricing__toggle-switch.annual {
  background: #ff6b6b;
}
.pricing__toggle-switch.annual::after {
  background: white;
}

.pricing__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
}
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.pricing__card {
  background: #2a2a2a;
  border: 1px solid #3d3d3d;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing__card.pricing__card--featured {
  border-color: #ff6b6b;
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.15), 0 8px 32px rgba(0, 0, 0, 0.25);
}
.pricing__card.pricing__card--featured .pricing__card-badge {
  display: block;
}

.pricing__card-badge {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  color: white;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing__card-name {
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #f5f5f5;
  margin-top: 8px;
}

.pricing__card-emoji {
  font-size: 40px;
  margin-bottom: -8px;
}

.pricing__card-price {
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #f5f5f5;
}
.pricing__card-price small {
  font-size: 16px;
  font-weight: 400;
  color: #a0a0a0;
}

.pricing__card-note {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #6b6b6b;
  margin-top: -8px;
}

.pricing__card-divider {
  width: 100%;
  height: 1px;
  background: #3d3d3d;
}

.pricing__card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.pricing__card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: #a0a0a0;
  line-height: 1.5;
}
.pricing__card-features li::before {
  content: "✓";
  color: #ff6b6b;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing__card-features li.disabled {
  color: #6b6b6b;
}
.pricing__card-features li.disabled::before {
  content: "—";
  color: #6b6b6b;
}

.pricing__card-cta {
  margin-top: auto;
}
.pricing__card-cta .btn-primary,
.pricing__card-cta .btn-outline {
  width: 100%;
}

.pricing__note {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .faq {
    padding: 64px 0;
  }
}

.faq__header {
  text-align: center;
  margin-bottom: 64px;
}

.faq__title {
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 28px;
  }
}

.faq__subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq__subtitle {
    font-size: 16px;
  }
}

.faq__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid #3d3d3d;
}
.faq__item:first-child {
  border-top: 1px solid #3d3d3d;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #f5f5f5;
  transition: color 0.2s ease;
}
.faq__question:hover {
  color: #ff6b6b;
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #2a2a2a;
  border: 1px solid #3d3d3d;
  font-size: 18px;
  color: #a0a0a0;
  transition: all 0.3s ease;
  line-height: 1;
}
.faq__item.open .faq__icon {
  background: #ff6b6b;
  border-color: #ff6b6b;
  color: white;
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.open .faq__answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq__answer-text {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: #a0a0a0;
  line-height: 1.7;
  padding-right: 44px;
}

.newsletter {
  padding: 96px 0;
  background: #212121;
  text-align: center;
}
@media (max-width: 768px) {
  .newsletter {
    padding: 64px 0;
  }
}

.newsletter__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 640px;
}

.newsletter__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.newsletter__title {
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1.2;
  margin-bottom: 16px;
  font-size: 32px;
}
@media (max-width: 768px) {
  .newsletter__title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .newsletter__title {
    font-size: 24px;
  }
}

.newsletter__subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .newsletter__subtitle {
    font-size: 16px;
  }
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .newsletter__form {
    flex-direction: column;
  }
}

.newsletter__input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #3d3d3d;
  border-radius: 12px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  background: #2a2a2a;
  color: #f5f5f5;
  transition: border-color 0.3s ease;
  flex: 1;
  border-radius: 9999px;
  padding: 14px 24px;
}
.newsletter__input::placeholder {
  color: #6b6b6b;
}
.newsletter__input:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.newsletter__btn {
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  color: white;
  padding: 14px 32px;
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter__btn:hover {
  background: linear-gradient(135deg, #ff5252 0%, #d94545 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.3), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.newsletter__disclaimer {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  margin-top: 16px;
}
.newsletter__disclaimer a {
  color: #ff6b6b;
  text-decoration: underline;
}

.newsletter__status {
  margin-top: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  min-height: 20px;
}
.newsletter__status.success {
  color: #4cd964;
}
.newsletter__status.error {
  color: #ff453a;
}

.footer-newsletter {
  display: flex;
  gap: 8px;
}
@media (max-width: 768px) {
  .footer-newsletter {
    flex-direction: column;
  }
}
.footer-newsletter .footer-newsletter__input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #3d3d3d;
  border-radius: 12px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  background: #2a2a2a;
  color: #f5f5f5;
  transition: border-color 0.3s ease;
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 9999px;
  background: #333333;
}
.footer-newsletter .footer-newsletter__input::placeholder {
  color: #6b6b6b;
}
.footer-newsletter .footer-newsletter__input:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}
.footer-newsletter .footer-newsletter__btn {
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  color: white;
  padding: 14px 32px;
  padding: 10px 20px;
  font-size: 14px;
  flex-shrink: 0;
}
.footer-newsletter .footer-newsletter__btn:hover {
  background: linear-gradient(135deg, #ff5252 0%, #d94545 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.3), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.footer-newsletter__status {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
}
.footer-newsletter__status.success {
  color: #4cd964;
}
.footer-newsletter__status.error {
  color: #ff453a;
}

.contact {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 64px 0;
  }
}

.contact__header {
  text-align: center;
  margin-bottom: 64px;
}

.contact__title {
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 28px;
  }
}

.contact__subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact__subtitle {
    font-size: 16px;
  }
}

.contact__form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 640px;
  background: #2a2a2a;
  border: 1px solid #3d3d3d;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  border: 1px solid #3d3d3d;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #f5f5f5;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #3d3d3d;
  border-radius: 12px;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  background: #2a2a2a;
  color: #f5f5f5;
  transition: border-color 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #6b6b6b;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b6b6b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  cursor: pointer;
}
.form-group select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23FF6B6B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}
.form-group select option {
  color: #f5f5f5;
  background: #2a2a2a;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-group.form-group--checkbox input[type=checkbox] {
  width: auto;
  margin-top: 3px;
  accent-color: #ff6b6b;
}
.form-group.form-group--checkbox label {
  margin-bottom: 0;
  font-size: 13px;
  color: #a0a0a0;
  line-height: 1.5;
}
.form-group.form-group--checkbox label a {
  color: #ff6b6b;
  text-decoration: underline;
}

.contact__submit {
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  color: white;
  padding: 14px 32px;
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
}
.contact__submit:hover {
  background: linear-gradient(135deg, #ff5252 0%, #d94545 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.3), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.contact__status {
  text-align: center;
  margin-top: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
}
.contact__status.success {
  color: #4cd964;
}
.contact__status.error {
  color: #ff453a;
}

.footer {
  background: #2a2a2a;
  padding: 64px 0 40px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer__logo img {
  height: 32px;
  width: auto;
}
.footer__logo span {
  font-family: "Pacifico", cursive;
  font-size: 22px;
  color: #ff6b6b;
}

.footer__tagline {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #333333;
  border-radius: 50%;
  color: #a0a0a0;
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer__social a:hover {
  background: #ff6b6b;
  color: white;
}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__section h4 {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 4px;
}
.footer__section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__section a {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__section a:hover {
  color: #ff6b6b;
}

.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__newsletter h4 {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 4px;
}
.footer__newsletter p {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.5;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #3d3d3d;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.footer__copy {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: #6b6b6b;
}

.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legal a:hover {
  color: #a0a0a0;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.show {
  display: flex;
  opacity: 1;
}

.modal__content {
  background: #2a2a2a;
  border: 1px solid #3d3d3d;
  padding: 40px;
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal.show .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #6b6b6b;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}
.modal__close:hover {
  color: #ff6b6b;
}

.modal__title {
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 24px;
}

.modal__text {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* =================================================================
   COOKIES — OISHII LANDING PAGE (Dark Only)
   ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  border-top: 2px solid #ff6b6b;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 80vh;
  overflow-y: auto;
}
.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-banner__icon {
  font-size: 24px;
  color: #ff6b6b;
}

.cookie-banner__title {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0;
}

.cookie-banner__description {
  font-family: "Outfit", sans-serif;
  color: #a0a0a0;
  line-height: 1.6;
  margin: 0;
}
.cookie-banner__description a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 500;
}
.cookie-banner__description a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-banner__btn {
  font-family: "Outfit", sans-serif;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
}
.cookie-banner__btn--primary {
  background: #ff6b6b;
  color: white;
}
.cookie-banner__btn--primary:hover {
  background: #ff5252;
  transform: translateY(-1px);
}
.cookie-banner__btn--secondary {
  background: transparent;
  color: #f5f5f5;
  border: 1.5px solid #3d3d3d;
}
.cookie-banner__btn--secondary:hover {
  background: #333333;
  border-color: #ff6b6b;
}
.cookie-banner__btn--minimal {
  background: transparent;
  color: #6b6b6b;
  padding: 8px 16px;
  font-size: 13px;
  min-width: auto;
}
.cookie-banner__btn--minimal:hover {
  color: #ff6b6b;
}
.cookie-banner__btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}
.cookie-banner__btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
}

/* Cookie config modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}
.cookie-modal.show .cookie-modal__content {
  transform: translateY(0);
}

.cookie-modal__content {
  background: #2a2a2a;
  border: 1px solid #3d3d3d;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(50px);
  transition: transform 0.3s ease;
}

.cookie-modal__header {
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal__title {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0;
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6b6b6b;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.cookie-modal__close:hover {
  background: #333333;
  color: #f5f5f5;
}

.cookie-modal__body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  border: 1px solid #3d3d3d;
  border-radius: 12px;
  overflow: hidden;
}

.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #333333;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cookie-category__header:hover {
  background: rgb(58.65, 58.65, 58.65);
}

.cookie-category__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-category__icon {
  font-size: 18px;
}

.cookie-category__title {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #f5f5f5;
  margin: 0;
}

.cookie-category__status {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  color: #6b6b6b;
  margin: 0;
}

.cookie-category__toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: #3d3d3d;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cookie-category__toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #f5f5f5;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cookie-category__toggle.active {
  background: #ff6b6b;
}
.cookie-category__toggle.active::after {
  transform: translateX(24px);
  background: white;
}
.cookie-category__toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category__content {
  padding: 0 20px 20px;
  font-family: "Outfit", sans-serif;
  color: #a0a0a0;
  line-height: 1.5;
  font-size: 14px;
}

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 0 24px 24px;
  border-top: 1px solid #3d3d3d;
  margin-top: 16px;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-banner__container {
    padding: 20px;
  }
  .cookie-banner__actions {
    justify-content: stretch;
    flex-direction: column;
  }
  .cookie-banner__btn {
    width: 100%;
  }
  .cookie-modal {
    padding: 10px;
  }
  .cookie-modal__content {
    max-height: 90vh;
  }
  .cookie-modal__header,
  .cookie-modal__body,
  .cookie-modal__actions {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cookie-category__header {
    padding: 12px 16px;
  }
}
/* Accessibility */
.cookie-banner:focus-within {
  outline: 2px solid #ff6b6b;
  outline-offset: -2px;
}

.cookie-banner__btn:focus,
.cookie-category__toggle:focus,
.cookie-modal__close:focus {
  outline: 2px solid #ff6b6b;
  outline-offset: 2px;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.btn-primary {
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  color: white;
  padding: 14px 32px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff5252 0%, #d94545 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 107, 107, 0.3), 0 8px 32px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  background: transparent;
  border: 1.5px solid #ff6b6b;
  color: #ff6b6b;
  padding: 12px 28px;
}
.btn-outline:hover {
  background: rgba(255, 107, 107, 0.1);
  transform: translateY(-1px);
}

.btn-ghost {
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f5;
  padding: 12px 24px;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.text-gradient {
  background: linear-gradient(135deg, #ff6b6b 0%, #e55f5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 24px;
}

.mb-lg {
  margin-bottom: 40px;
}

.mb-xl {
  margin-bottom: 64px;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 40px;
}

.mt-xl {
  margin-top: 64px;
}

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

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

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

.text--primary {
  color: #f5f5f5;
}

.text--secondary {
  color: #a0a0a0;
}

.text--accent {
  color: #ff6b6b;
}

.text--muted {
  color: #6b6b6b;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.d-none {
  display: none;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.rounded-sm {
  border-radius: 8px;
}

.rounded-md {
  border-radius: 12px;
}

.rounded-lg {
  border-radius: 16px;
}

.rounded-xl {
  border-radius: 20px;
}

/*# sourceMappingURL=main.css.map */
