/* ==========================================================================
   Design System - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  --fx-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.34' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.4'%3E%3C/rect%3E%3C/svg%3E");
  --pricing-bg-color: oklch(0.92 0.12 128.26);
  --pricing-glow-color: oklch(0.32 0.1 244.08 / 0.62);
  --why-section-start-color: oklch(0.78 0.22 327.48);
  --why-section-end-color: oklch(0.61 0.23 274.14 / 0.62);
  /* Base colors */
  --color-base-100: oklch(98% 0.005 85);
  --color-base-200: oklch(96% 0.01 85);
  --color-base-300: oklch(92% 0.02 85);
  --color-base-content: oklch(30% 0.02 85);

  /* Primary */
  --color-primary: oklch(55% 0.1 180);
  --color-primary-content: oklch(100% 0 0);

  /* Secondary */
  --color-secondary: oklch(60% 0.1 60);
  --color-secondary-content: oklch(100% 0 0);

  /* Accent */
  --color-accent: oklch(55% 0.1 180);
  --color-accent-content: oklch(100% 0 0);

  /* Neutral */
  --color-neutral: oklch(15% 0.01 85);
  --color-neutral-content: oklch(95% 0.01 85);

  /* State colors */
  --color-info: oklch(80% 0.15 240);
  --color-info-content: oklch(25% 0.06 240);
  --color-success: oklch(55% 0.1 180);
  --color-success-content: oklch(100% 0 0);
  --color-warning: oklch(80% 0.15 80);
  --color-warning-content: oklch(25% 0.15 80);
  --color-error: oklch(80% 0.15 25);
  --color-error-content: oklch(25% 0.15 25);

  /* Border radius */
  --radius-selector: 0.5rem;
  --radius-field: 0.25rem;
  --radius-box: 0.5rem;

  /* Sizing */
  --size-selector: 0.21875rem;
  --size-field: 0.21875rem;
  --border: 1px;
  --depth: 1;
  --noise: 1;

  /* Custom shadows and gradients */
  --shadow-color: oklch(0.67 0.16 172.29 / 0.5);
  --header-gradient: linear-gradient(
    65deg,
    oklch(0.79 0.18 218.18 / 0.43),
    oklch(0.93 0.19 101.74 / 0.46)
  );
  --logo-shadow-color: oklch(100% 0 0 / 0.5);
  --logo-text-color: oklch(28% 0.17 300);

  /* Layout */
  --content-max-width: 72rem;
  --content-padding: 1.5rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-base-content);
  background-color: var(--color-base-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: var(--color-neutral);
}

p {
  margin: 0 0 1.25rem;
}

ul,
ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: oklch(45% 0.1 180);
  text-decoration: underline;
}

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

/* --------------------------------------------------------------------------
   Navigation Bar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-gradient);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: var(--border) solid var(--color-base-300);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
  min-width: 0;
}

.nav-logo {
  flex-shrink: 0;
  min-width: 0;
}

.nav-logo a {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.8rem;
  font-weight: 900;
  font-style: italic;
  color: var(--color-neutral);
  text-decoration: none;
  transition: color 0.3s ease;
  text-shadow: 0 2px 4px var(--logo-shadow-color);
  white-space: nowrap;
}

.nav-logo a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--color-neutral);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
  z-index: 1001;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-neutral);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
  }

  .nav-logo a {
    font-size: 1.5rem;
  }

  .nav-toggle-label {
    display: flex;
    padding: 0.5rem 0.25rem;
    margin-left: 0.25rem;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background: var(--header-gradient);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: var(--border) solid var(--color-base-300);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .nav-toggle:checked ~ .nav-menu {
    max-height: 500px;
    opacity: 1;
    padding: 1rem 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 2rem;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    border-bottom: var(--border) solid var(--color-base-300);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
  }
}

/* Main element - offset fixed navbar */
.main {
  padding-top: 70px;
}

/* --------------------------------------------------------------------------
   Background Effects
   -------------------------------------------------------------------------- */
.waves-bg {
  position: relative;
  z-index: 2;
  background-image: url("/img/bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 600px;
  padding-top: 6rem;
  animation: waves-bg-animation linear;
  animation-timeline: scroll();
}

.bg-noise {
  background-image: var(--fx-noise);
}

/* Animations */
@layer animations {
  @keyframes glow-animation {
    50% {
      box-shadow: 0px 0px 35px 5px var(--pricing-glow-color);
    }
    75% {
      box-shadow: 0px 0px 35px 5px red;
    }
  }

  @keyframes why-section-border-animation {
    0% {
      background-position-x: 0;
    }
    35% {
      background-position-x: 30%;
    }
    50% {
      background-position-x: 60%;
    }
    100% {
      background-position-x: 0;
    }
  }

  @keyframes waves-bg-animation {
    0% {
      background-position-x: 50%;
    }
    10% {
      background-position-x: 100%;
    }
    20% {
      background-position-x: 0;
    }
    30% {
      background-position-x: 100%;
    }
    40% {
      background-position-x: 0;
    }
    50% {
      background-position-x: 100%;
    }
    60% {
      background-position-x: 0;
    }
    70% {
      background-position-x: 100%;
    }
    80% {
      background-position-x: 0;
    }
    90% {
      background-position-x: 100%;
    }
    100% {
      background-position-x: 0;
    }
  }
}

/* --------------------------------------------------------------------------
   Layout: Layer System
   -------------------------------------------------------------------------- */
.layer {
  width: 100%;
  padding: 4rem 0;
}

.layer--hero {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: var(--color-base-100);
}

.layer--alt {
  background-color: var(--color-base-200);
}

.layer--accent {
  background-color: var(--color-primary);
  color: var(--color-primary-content);
}

.layer--accent .heading--2,
.layer--accent .heading--3 {
  color: var(--color-primary-content);
}

.layer__content {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.heading--1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.heading--2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.heading--3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
}

.text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-base-content);
}

.text--lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: oklch(40% 0.02 85);
  margin-bottom: 2rem;
}

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

.list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.5rem;
}

.list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Components: Buttons
   -------------------------------------------------------------------------- */
.button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: var(--border) solid transparent;
  border-radius: var(--radius-box);
  cursor: pointer;
  transition: all 0.2s ease;
}

.button--primary {
  background-color: var(--color-primary);
  color: var(--color-primary-content);
  border-color: var(--color-primary);
}

.button--primary:hover {
  background-color: oklch(50% 0.1 180);
  border-color: oklch(50% 0.1 180);
  color: var(--color-primary-content);
  text-decoration: none;
}

.button--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.button--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-primary-content);
  text-decoration: none;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Components: Cards
   -------------------------------------------------------------------------- */
.card {
  background-color: var(--color-base-100);
  border: var(--border) solid var(--color-base-300);
  border-radius: var(--radius-box);
  padding: 1.5rem;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-neutral);
}

.card--highlight {
  border-color: var(--color-primary);
  border-width: 2px;
}

/* --------------------------------------------------------------------------
   Components: Grid Layouts
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 64rem) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 48rem) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Components: Steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step-counter;
}

.step {
  position: relative;
  padding: 1.5rem;
  background-color: var(--color-base-100);
  border: var(--border) solid var(--color-base-300);
  border-radius: var(--radius-box);
  counter-increment: step-counter;
}

.step::before {
  content: counter(step-counter);
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary-content);
  background-color: var(--color-primary);
  border-radius: 50%;
}

.step__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-neutral);
}

.step__text {
  font-size: 0.9375rem;
  color: var(--color-base-content);
  margin: 0;
}

@media (max-width: 48rem) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Components: FAQ Accordion
   -------------------------------------------------------------------------- */
.faq {
  margin-bottom: 0.75rem;
  border: var(--border) solid var(--color-base-300);
  border-radius: var(--radius-box);
  overflow: hidden;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-neutral);
  background-color: var(--color-base-100);
  border: none;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.2s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}

.faq[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__question:hover {
  background-color: var(--color-base-200);
}

.faq__answer {
  padding: 1.25rem 1.5rem;
  background-color: var(--color-base-100);
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Components: Metrics
   -------------------------------------------------------------------------- */
.metric {
  text-align: center;
  padding: 1.5rem;
}

.metric__value {
  font-size: 1.5rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.metric__label {
  font-size: 0.9375rem;
  color: var(--color-base-content);
}

/* --------------------------------------------------------------------------
   Layout: Hero
   -------------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  max-width: 40rem;
}

.hero__video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__video video {
  max-height: 460px;
  width: auto;
  max-width: 100%;
  border-radius: var(--radius-box);
  box-shadow: 0 8px 32px oklch(0% 0 0 / 0.12);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hero__metrics .metric {
  background-color: var(--color-base-200);
  border-radius: var(--radius-box);
}

@media (max-width: 64rem) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__content {
    max-width: none;
  }

  .hero__video video {
    max-height: 510px;
  }

  .hero__metrics {
    max-width: 32rem;
    margin: 0 auto;
  }

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

/* --------------------------------------------------------------------------
   Hero Simple (for SEO pages)
   -------------------------------------------------------------------------- */
.hero-simple {
  padding-top: 6rem;
  padding-bottom: 4rem;
  text-align: center;
}

.hero-simple .layer__content {
  max-width: 56rem;
}

.hero-simple .heading--1 {
  margin-bottom: 1.5rem;
}

.hero-simple .text--lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-simple .button-group {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Section: Problem Grid
   -------------------------------------------------------------------------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 48rem) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: 3rem 0 2rem;
  border-top: var(--border) solid var(--color-base-300);
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 48rem) {
  .footer__columns {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}

.footer__column {
  text-align: left;
}

@media (max-width: 48rem) {
  .footer__column {
    text-align: center;
  }
}

.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-neutral);
  margin-bottom: 0.75rem;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__list a {
  font-size: 0.9375rem;
  color: var(--color-base-content);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__list a:hover {
  color: var(--color-primary);
}

.footer__copyright {
  text-align: center;
  font-size: 0.875rem;
  color: oklch(50% 0.02 85);
  margin: 0;
  padding-top: 2rem;
  border-top: var(--border) solid var(--color-base-300);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.section-header {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

/* --------------------------------------------------------------------------
   Components: Pricing Table
   -------------------------------------------------------------------------- */
.pricing {
  margin-top: 3rem;
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pricing__toggle-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-base-content);
  position: relative;
}

.pricing__badge {
  position: absolute;
  top: -1.25rem;
  left: 0;
  background-color: var(--color-primary);
  color: var(--color-primary-content);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  white-space: nowrap;
  transform: rotate(5deg);
}

.pricing__switch {
  position: relative;
  display: inline-block;
  width: 3.5rem;
  height: 2rem;
  flex-shrink: 0;
}

.pricing__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-base-300);
  border-radius: 2rem;
  transition: background-color 0.3s ease;
}

.pricing__slider::before {
  content: "";
  position: absolute;
  height: 1.5rem;
  width: 1.5rem;
  left: 0.25rem;
  bottom: 0.25rem;
  background-color: var(--color-base-100);
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px oklch(0% 0 0 / 0.1);
}

.pricing__switch input:checked + .pricing__slider {
  background-color: var(--color-primary);
}

.pricing__switch input:checked + .pricing__slider::before {
  transform: translateX(1.5rem);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 64rem) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin: 0 auto;
  }
}

.pricing__card {
  background-color: var(--color-base-100);
  border: var(--border) solid var(--color-base-300);
  border-radius: var(--radius-box);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px oklch(0% 0 0 / 0.08);
}

.pricing__card--featured {
  border-color: var(--color-primary);
  border-width: 2px;
  transform: scale(1.02);
}

.pricing__card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing__featured-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: var(--color-primary-content);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 1rem;
  white-space: nowrap;
}

.pricing__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-neutral);
  margin-bottom: 1rem;
}

.pricing__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing__period {
  font-size: 0.9375rem;
  color: var(--color-base-content);
  margin-bottom: 0.5rem;
}

.pricing__yearly {
  font-size: 0.875rem;
  color: oklch(50% 0.02 85);
  margin-bottom: 1.5rem;
}

.pricing__card .list {
  text-align: left;
  margin-bottom: 1rem;
}

.pricing__coming-soon {
  font-size: 0.875rem;
  font-style: italic;
  color: oklch(60% 0.02 85);
  margin-bottom: 1.5rem;
}

.pricing__coming-soon::before {
  content: "💡 ";
}

.pricing__button {
  width: 100%;
}

/* Triangular see-saw border effect */
.triangular-borders-container {
  position: relative;
  padding: 0;

  .glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    height: 100%;
    z-index: 9;
    border-radius: 21%;
    box-shadow: 0px 0px 35px 5px var(--pricing-glow-color);
    animation: glow-animation linear;
    animation-timeline: scroll();
  }
}

.triangular-borders {
  background-color: var(--pricing-bg-color);
  position: relative;
  padding: 4rem 2rem;
  z-index: 10;
}

.triangular-borders::before,
.triangular-borders::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(
      45deg,
      transparent 33.333%,
      var(--pricing-bg-color) 33.333%,
      var(--pricing-bg-color) 66.667%,
      transparent 66.667%
    ),
    linear-gradient(
      -45deg,
      transparent 33.333%,
      var(--pricing-bg-color) 33.333%,
      var(--pricing-bg-color) 66.667%,
      transparent 66.667%
    );
  background-size: 12px 40px;
  background-repeat: repeat-x;
}

.triangular-borders::before {
  top: -20px;
}

.triangular-borders::after {
  bottom: -20px;
  transform: rotate(180deg);
}

.why-section {
  position: relative;
  background-color: var(--why-section-start-color);
}

.why-section::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 0;
  width: 100%;
  height: 35px;
  background-image: url("/img/wave-top.svg");
  background-position: left bottom;
  animation: why-section-border-animation linear;
  animation-timeline: scroll();
}

.why-section::before svg,
.why-section::after svg {
  fill: var(--why-section-start-color);
}

.why-section::after {
  content: "";
  position: absolute;
  bottom: -71px;
  left: 0;
  width: 100%;
  height: 73px;
  background-image: url("/img/wave-bottom.svg");
  background-position: left top;
  animation: why-section-border-animation linear;
  animation-timeline: scroll();
}

/* --------------------------------------------------------------------------
   Legal Page Styles
   -------------------------------------------------------------------------- */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 6rem;
}

.legal-container header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--color-base-300);
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: left;
}

.legal-container header p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-base-content);
  text-align: left;
}

.legal-container header p strong {
  color: var(--color-neutral);
  font-weight: 600;
}

.legal-container section {
  margin-bottom: 2.5rem;
}

.legal-container h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
}

.legal-container h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-neutral);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.legal-container p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-align: left;
}

.legal-container ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-container ul li::marker {
  color: var(--color-primary);
}

.legal-container a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.legal-container a:hover {
  border-bottom-color: var(--color-primary);
}

.legal-container address {
  font-style: normal;
  background-color: var(--color-base-200);
  padding: 1.5rem;
  border-radius: var(--radius-box);
  border-left: 4px solid var(--color-accent);
  margin: 1.5rem 0;
}

.legal-container time {
  color: var(--color-base-content);
  font-weight: 500;
}

@media (max-width: 768px) {
  .legal-container {
    padding: 1.5rem;
    padding-top: 5rem;
  }

  .legal-container h1 {
    font-size: 2rem;
  }

  .legal-container h2 {
    font-size: 1.3rem;
  }

  .legal-container h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .legal-container {
    padding: 1rem;
    padding-top: 4.5rem;
  }

  .legal-container h1 {
    font-size: 1.75rem;
  }

  .legal-container h2 {
    font-size: 1.2rem;
    padding-left: 0.75rem;
  }
}
