/* Variables: Neo-Humanism Theme */
:root {
  --bg: #fdfbf7; /* Cream/Warm White */
  --bg-soft: #f0efe9;
  --text: #1a1a1a;
  --text-light: #555555;
  --coral: #ff6b6b; /* Vibrant Coral */
  --coral-hover: #e85a5a;
  --indigo: #2d3436; /* Soft Black/Indigo */
  --indigo-light: #4a5557;
  --white: #ffffff;
  --border: #e5e5e5;
  --radius: 16px;
  --font: "Plus Jakarta Sans", sans-serif;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 400;
}

.highlight {
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(255, 107, 107, 0.2);
  z-index: -1;
  transform: skewX(-10deg);
}

.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Buttons */
.btn-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: #fff;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid var(--coral);
  cursor: pointer;
  transition: 0.3s;
}

.btn-coral:hover {
  background: transparent;
  color: var(--coral);
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.btn-indigo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo);
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-indigo:hover {
  background: var(--indigo-light);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--coral);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
}

.btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.play-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}

.play-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  color: var(--coral);
  transition: 0.3s;
}

.play-btn:hover .play-icon {
  transform: scale(1.1);
}

.link-nav {
  font-weight: 600;
  font-size: 15px;
}
.link-coral {
  color: var(--coral);
  font-weight: 700;
}
.full {
  width: 100%;
}
.sm {
  padding: 8px 20px;
  font-size: 14px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: 0.3s;
}

.header.sticky {
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.h-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-text {
  font-weight: 800;
  font-size: 20px;
  color: var(--indigo);
  letter-spacing: -0.5px;
}

.d-nav {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

.d-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-light);
}

.d-nav a:hover,
.d-nav a.active {
  color: var(--coral);
}

.h-act {
  display: flex;
  align-items: center;
  gap: 20px;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--indigo);
}

/* Mobile Menu */
.mob-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.mob-layer.active {
  transform: translateY(0);
}

.mob-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mob-logo {
  font-weight: 800;
  font-size: 24px;
  color: var(--coral);
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--indigo);
}

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.mob-nav a {
  font-size: 22px;
  font-weight: 700;
  color: var(--indigo);
}

.mob-foot {
  margin-top: auto;
}

/* HERO: Orbital */
.hero-orbit {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.orbit-container {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-center {
  text-align: center;
  z-index: 10;
  max-width: 700px;
}

.tag-pill {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.hero-note {
  font-size: 12px;
  margin-top: 24px;
  opacity: 0.7;
}

/* Orbits */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.ring-1 {
  width: 120%;
  height: 120%;
  animation: rotate 40s linear infinite;
}
.ring-2 {
  width: 150%;
  height: 150%;
  animation: rotate 60s linear infinite reverse;
}
.ring-3 {
  width: 180%;
  height: 180%;
  animation: rotate 80s linear infinite;
}

.orbit-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  color: var(--indigo);
}

.orbit-card i {
  color: var(--coral);
  width: 18px;
}

/* Positioning cards on orbits */
.c-1 {
  top: 10%;
  left: 50%;
}
.c-2 {
  top: 50%;
  right: 0%;
}
.c-3 {
  bottom: 20%;
  left: 10%;
}
.c-4 {
  top: 0;
  left: 20%;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Scenarios Bento */
.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 24px;
}

.bento-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.bc-content {
  flex: 1;
}
.bc-img {
  flex: 1;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.bc-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.bc-tag {
  display: inline-block;
  background: var(--bg-soft);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 20px;
}

/* Library */
.bg-soft {
  background: var(--bg-soft);
}

.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-img {
  position: relative;
}
.floating-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.floating-badge span {
  display: block;
  font-size: 12px;
  color: #888;
}
.floating-badge strong {
  font-size: 20px;
  color: var(--coral);
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 2px;
  background: var(--coral);
}

/* Quiz */
.quiz-banner {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  border-radius: 32px;
  padding: 60px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qb-left p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 600px;
}
.qb-left h3 {
  color: #fff;
}

/* Community */
.bg-dark {
  background: var(--indigo);
  color: #fff;
}
.bg-dark h2,
.bg-dark p {
  color: #fff;
}
.bg-dark p {
  opacity: 0.8;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.rc-head {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

/* Global Info */
.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 30px;
}
.ib-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-soft);
  color: var(--indigo);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.step-num {
  font-size: 80px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}
.step-col h4 {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
.step-col p {
  font-size: 15px;
}

/* FAQ */
.narrow {
  max-width: 800px;
  margin: 0 auto;
}
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--indigo);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.faq-content p {
  padding: 0 24px 24px;
}

/* Contact Form */
.bg-indigo {
  background: var(--indigo);
  color: #fff;
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fl-left h2 {
  color: #fff;
}
.fl-left p {
  color: rgba(255, 255, 255, 0.7);
}
.contacts-area {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ca-item {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 18px;
}
.ca-item i {
  color: var(--coral);
}
.ca-item a {
  color: #fff;
}

.fl-form {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  color: var(--text);
}
.inp-group {
  margin-bottom: 20px;
}
.inp-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-light);
}
.inp-group input {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-family: var(--font);
}
.inp-group input:focus {
  outline: none;
  border-color: var(--coral);
}

.check-group {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 12px;
}
.check-group a {
  color: var(--coral);
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 80px 0 20px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.f-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.f-logo {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--coral);
}
.ph {
  font-weight: 700;
  color: var(--indigo);
  display: block;
  margin-top: 10px;
}
.f-col h5 {
  margin-bottom: 20px;
  font-size: 16px;
}
.f-col a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-light);
}
.f-col a:hover {
  color: var(--coral);
}
.f-btm {
  text-align: center;
  font-size: 12px;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* Cookie */
.cookie-bar {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  display: none;
}
.cb-wrap {
  background: var(--indigo);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.cb-wrap p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}
.cb-wrap .btn-indigo {
  background: #fff;
  color: var(--indigo);
  padding: 8px 20px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .d-nav,
  .h-act {
    display: none;
  }
  .burger {
    display: block;
    margin-left: auto;
  }
  .orbit-ring {
    display: none;
  } /* Simplify hero on tablet/mobile */
  .hero-orbit {
    height: auto;
    min-height: auto;
    padding: 120px 0 80px;
  }
  .orbit-container {
    height: auto;
    display: block;
  }
  .orbit-center {
    margin: 0 auto;
  }
  .bento-grid {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .large {
    flex-direction: column;
  }
  .bc-img {
    height: 200px;
    width: 100%;
    margin-top: 20px;
  }
  .split-wrap,
  .review-grid,
  .steps-row,
  .form-layout,
  .f-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quiz-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--ink);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px !important;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
