@font-face {
  font-family: "Aoboshi One";
  src: url(../fonts/AoboshiOne-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url(../fonts/Jost-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #9b72cf;
  --primary-dark: #7a4bab;
  --primary-light: #e9dff5;
  --accent: #f4ebfc;
  --text: #2e2b35;
  --text-light: #5c5765;
  --bg: #fcf9ff;
  --white: #ffffff;
  --border: #ddd6e8;
  --shadow: 0 8px 30px rgba(155, 114, 207, 0.12);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

[data-aos] {
  visibility: hidden;
}

[data-aos].aos-animate {
  visibility: visible;
}

[data-aos^=fade][data-aos^=fade] {
  transform: translate3d(0, 0, 0);
}

[data-aos=fade-right] {
  transform: translate3d(0, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(0, 0, 0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 24px, 0);
}

h1,
h2,
h3,
h4,
.logo span,
.eyebrow {
  font-family: 'Aoboshi One', serif;
  font-weight: 400;
}

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

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

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

.header-notice {
  background-color: var(--primary-light);
  text-align: center;
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}

.logo-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.logo-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-line1 {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.trending-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
}

main {
  flex-grow: 1;
}

section {
  padding: clamp(40px, 8vw, 80px) 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--text);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.3;
  margin-bottom: 16px;
}

p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(155, 114, 207, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155, 114, 207, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-intro {
  margin-bottom: 40px;
}

.centered {
  text-align: center;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 60px);
  align-items: center;
}

.text-stack p {
  margin-bottom: 1.5rem;
}

.image-stack img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-breakdown {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.comparison-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-4px);
}

.comparison-card.negative {
  border-left: 4px solid #d1d5db;
}

.comparison-card.positive {
  border-left: 4px solid var(--primary);
  background: var(--accent);
}

.card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.comparison-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.comparison-card p {
  font-size: 0.9rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}

.bento-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s;
  height: 100%;
}

.bento-item:hover {
  box-shadow: var(--shadow);
}

.bento-item.large {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-item.tall {
  grid-row: span 2;
}

.bento-item p {
  flex-grow: 1;
  line-height: 1.65;
}

.user-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

.user-card h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.user-card span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.mini-gallery {
  margin-top: 16px;
  flex-shrink: 0;
}

.mini-gallery img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.large,
  .bento-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.policy-accordion {
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  background: var(--bg);
  transition: all 0.3s;
}

.contact-form textarea {
  border-radius: 24px;
  min-height: 100px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(155, 114, 207, 0.15);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.info-wrapper {
  height: 100%;
}

.info-card {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 100%;
}

.info-accordion .info-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.info-accordion .info-item:last-child {
  border-bottom: none;
}

.info-header {
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-header::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
}

.info-body {
  font-size: 0.95rem;
  color: var(--text-light);
  padding-top: 12px;
}

footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 3fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.thanks-page {
  background: var(--bg);
}

.thanks-main {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.thanks-card {
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid var(--primary-light);
}

.thanks-card img {
  margin: 0 auto 24px;
}

.thanks-card h1 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.thanks-card p {
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero .container,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.large,
  .bento-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .thanks-card {
    padding: 32px;
  }
    .trending-badge {
      display: none;
    }
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2d2435;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  color: #2d2435;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2d2435;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #7b5ea7;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #a78fc4;
}