/* =============================================
   toki - Main Stylesheet
   Converted from Tailwind CSS
   ============================================= */

/* ----- CSS Variables ----- */
:root {
  --toki-blue: #4a9eff;
  --toki-green: #22c55e;
  --toki-yellow: #eab308;
  --toki-pink: #ec4899;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

::selection {
  background-color: var(--toki-pink);
  color: white;
}

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

/* ----- Typography ----- */
.font-teko {
  font-family: "Teko", sans-serif;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

/* ----- Loading Screen ----- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-screen.transitioning .logo-clock-face {
  animation: expandToFullscreen 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.loading-screen.transitioning .logo-hand {
  display: none;
}

.loading-screen.hidden {
  visibility: hidden;
}

@keyframes expandToFullscreen {
  0% {
    transform: translateX(-50%) scale(1);
    border-radius: 50%;
  }
  100% {
    transform: translateX(-50%) scale(20);
    border-radius: 50%;
  }
}

.logo-physics {
  position: relative;
  width: 280px;
  height: 280px;
}

.logo-clock-face {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background-color: #000000;
  border-radius: 50%;
}

.logo-hand {
  position: absolute;
  background-color: #ffffff;
  transform-origin: bottom center;
  left: 50%;
}

.logo-hand-minute {
  width: 3px;
  height: 70px;
  top: 30px;
  margin-left: -1.5px;
  animation: spin-fast 1s linear infinite;
}

.logo-hand-hour {
  width: 3px;
  height: 50px;
  top: 50px;
  margin-left: -1.5px;
  transform-origin: center bottom;
  animation: spin-slow 4s linear infinite;
}

@keyframes spin-fast {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.logo-letters {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.logo-letter {
  position: absolute;
  font-family: "Teko", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  user-select: none;
}

/* ----- Layout Utilities ----- */
.container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.flex {
  display: flex;
}

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

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

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

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

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

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

/* ----- Header ----- */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Teko", sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: white;
  cursor: pointer;
}

/* ----- Hamburger Menu ----- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: white;
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-physics-container {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-physics-container.interactive {
  pointer-events: auto;
}

.hero-clock-wrapper {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.hero-clock-text {
  font-family: "Teko", sans-serif;
  font-size: clamp(60px, 15vw, 200px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
}

.hero-clock-text span {
  display: inline-block;
}

.hero-clock-hint {
  margin-top: 2rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-clock-wrapper:hover .hero-clock-hint {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-main-content {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(40px);
}

.hero-main-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-main-content .hero-ctas {
  pointer-events: auto;
}

.physics-item {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  user-select: none;
}

.physics-ball {
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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


.hero-title {
  font-family: "Teko", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.hero-title .highlight {
  color: var(--toki-blue);
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 42rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: auto;
}

.scroll-hint {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ----- Store Badges ----- */
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.store-badge:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.store-badge .icon {
  width: 2rem;
  height: 2rem;
  margin-right: 0.75rem;
  transition: transform 0.2s ease;
}

.store-badge:hover .icon {
  transform: scale(1.1);
}

.store-badge .label-small {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.store-badge .label-main {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
}

/* Primary store badge (white background) */
.store-badge-primary {
  background-color: white;
  color: black;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.store-badge-primary:hover {
  background-color: #e5e5e5;
}

.store-badge-primary .label-small {
  color: rgba(0, 0, 0, 0.8);
}

.store-badge-primary .label-main {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.coming-soon-text {
  font-family: "Teko", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1;
}

.coming-soon-stores {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.coming-soon-badge-primary {
  background-color: white;
  border-color: white;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.coming-soon-badge-primary .coming-soon-text {
  color: black;
}

.coming-soon-badge-primary .coming-soon-stores {
  color: rgba(0, 0, 0, 0.6);
}

/* ----- Sections ----- */
.section {
  padding: 6rem 1.5rem;
}

.section-alt {
  background-color: rgba(255, 255, 255, 0.05);
}

.section-content {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.section-half {
  width: 100%;
}

.section-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title {
  font-family: "Teko", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

.section-title .highlight-green {
  color: var(--toki-green);
}

.section-title .highlight-yellow {
  color: var(--toki-yellow);
}

.section-title .highlight-pink {
  color: var(--toki-pink);
}

.section-description {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

/* ----- Mockup Containers ----- */
.mockup-container {
  position: relative;
  width: 100%;
  background-color: #111827;
  border-radius: 1.5rem;
  border: 1px solid #1f2937;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-landscape {
  aspect-ratio: 16 / 9;
}

.mockup-portrait {
  aspect-ratio: 4 / 5;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
}

.mockup-square {
  aspect-ratio: 1 / 1;
}

.mockup-gradient {
  position: absolute;
  inset: 0;
}

.mockup-gradient-blue {
  background: linear-gradient(
    to bottom right,
    rgba(74, 158, 255, 0.1),
    transparent
  );
}

.mockup-gradient-yellow {
  background: linear-gradient(to top, rgba(234, 179, 8, 0.1), transparent);
}

.mockup-gradient-pink {
  background: linear-gradient(
    to bottom left,
    rgba(236, 72, 153, 0.1),
    transparent
  );
}

.mockup-placeholder {
  color: #4b5563;
  font-family: "Teko", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

/* Decorative circles */
.circle {
  position: absolute;
  border-radius: 9999px;
}

.circle-blue {
  background-color: var(--toki-blue);
  box-shadow: 0 0 15px rgba(74, 158, 255, 0.5);
}

.circle-green {
  background-color: var(--toki-green);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.circle-yellow {
  background-color: var(--toki-yellow);
  box-shadow: 0 0 15px rgba(234, 179, 8, 0.5);
}

.circle-pink {
  background-color: var(--toki-pink);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

/* Bouncing circles in timer section */
.bounce-container {
  position: relative;
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem;
  overflow: hidden;
  padding: 0 2rem;
}

.bounce-circle {
  border-radius: 9999px;
  animation: bounce 1s infinite;
}

.bounce-circle-1 {
  width: 4rem;
  height: 4rem;
  background-color: rgba(234, 179, 8, 0.8);
  animation-delay: 0.1s;
}

.bounce-circle-2 {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(236, 72, 153, 0.8);
  animation-delay: 0.3s;
}

.bounce-circle-3 {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(74, 158, 255, 0.8);
  animation-delay: 0.2s;
}

.bounce-circle-4 {
  width: 2rem;
  height: 2rem;
  background-color: rgba(34, 197, 94, 0.8);
  animation-delay: 0.4s;
}

.bounce-circle-5 {
  width: 3rem;
  height: 3rem;
  background-color: rgba(236, 72, 153, 0.8);
  animation-delay: 0.5s;
}

/* Shattered numbers in playful section */
.shattered-number {
  position: absolute;
  font-family: "Teko", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 3rem;
  font-weight: 700;
}

/* ----- CTA Section ----- */
.cta-section {
  position: relative;
  padding: 8rem 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.cta-teaser {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%) rotate(12deg);
  width: 50%;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cta-teaser-text {
  color: #1f2937;
  font-family: "Teko", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

.cta-teaser-circle {
  position: absolute;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Teko", sans-serif;
  font-size: 1.875rem;
  color: rgba(255, 255, 255, 0.3);
}

.cta-teaser-circle-1 {
  width: 5rem;
  height: 5rem;
  background-color: rgba(99, 102, 241, 0.2);
  top: 25%;
  right: 25%;
}

.cta-teaser-circle-2 {
  width: 4rem;
  height: 4rem;
  background-color: rgba(244, 63, 94, 0.2);
  bottom: 33%;
  left: 25%;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-title {
  font-family: "Teko", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  pointer-events: auto;
}

/* ----- Footer ----- */
.footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-physics .physics-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-physics .cta-teaser,
.cta-physics .cta-content {
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.footer-logo {
  font-family: "Teko", sans-serif;
  font-size: 1.5rem;
  color: white;
}

.footer-instagram {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.footer-instagram:hover {
  opacity: 0.7;
}

.footer-instagram img {
  width: 24px;
  height: 24px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

/* ----- Physics Elements ----- */
.physics-word {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  user-select: none;
  cursor: grab;
}

.physics-word:active {
  cursor: grabbing;
}

/* ----- Gradient Text ----- */
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----- Color Classes ----- */
.text-toki-blue {
  color: var(--toki-blue);
}

.text-toki-green {
  color: var(--toki-green);
}

.text-toki-yellow {
  color: var(--toki-yellow);
}

.text-toki-pink {
  color: var(--toki-pink);
}

.text-white {
  color: #ffffff;
}

/* ----- Animations ----- */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ----- Responsive: md (768px+) ----- */
@media (min-width: 768px) {
  .hero-title {
    font-size: 8rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

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

  .section {
    padding: 8rem 1.5rem;
  }

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

  .section-content.reverse {
    flex-direction: row-reverse;
  }

  .section-half {
    width: 50%;
  }

  .section-title {
    font-size: 4.5rem;
  }

  .cta-title {
    font-size: 6rem;
  }

  .cta-teaser {
    transform: translateY(-50%) rotate(12deg) scale(1);
  }

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

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .mockup-portrait {
    aspect-ratio: 4 / 5;
  }
}

/* ----- Responsive: lg (1024px+) ----- */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 9rem;
  }

  .section-title {
    font-size: 4.5rem;
  }
}

/* ----- Responsive: Mobile (max 768px) ----- */
@media (max-width: 767px) {
  .cta-teaser {
    transform: translateY(-50%) rotate(12deg) scale(1.5);
  }
}

/* ----- Legal Pages (Privacy, Terms) ----- */
.legal-page {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-page h1 {
  font-family: "Teko", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.legal-page .last-updated {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-family: "Teko", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.legal-page p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page ul {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--toki-blue);
  transition: opacity 0.2s ease;
}

.legal-page a:hover {
  opacity: 0.8;
}

/* ----- Support Page ----- */
.support-page {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.support-page .container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.support-page h1 {
  font-family: "Teko", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.support-page h2 {
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.support-page p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
}

.support-page a {
  color: var(--toki-blue);
  transition: opacity 0.2s ease;
}

.support-page a:hover {
  opacity: 0.8;
}

/* FAQ Accordion */
.faq {
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--toki-blue);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.contact-section {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
