/* =============================================
   OUT OF THE BOX — SECTIONS & COMPONENTS CSS
   ============================================= */

/* NAV */
.otb-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--otb-border);
}
.otb-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  max-width: 1400px; margin: 0 auto;
}
.otb-logo {
  font-family: var(--otb-serif);
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--otb-ink);
}
.otb-logo span { color: var(--otb-teal); }
.otb-nav-links { display: flex; gap: 2rem; list-style: none; }
.otb-nav-links li a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--otb-muted); text-decoration: none;
  letter-spacing: 0.02em; text-transform: uppercase;
  transition: color 0.2s;
}
.otb-nav-links li a:hover { color: var(--otb-teal); }
.otb-nav-actions { display: flex; align-items: center; gap: 1rem; }
.otb-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.otb-hamburger span { display: block; width: 24px; height: 2px; background: var(--otb-ink); transition: 0.3s; }
.otb-mobile-menu { display: none; background: var(--otb-cream); padding: 1.5rem 5vw; border-top: 1px solid var(--otb-border); }
.otb-mobile-menu.open { display: block; }
.otb-mobile-links { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.otb-mobile-links li a { font-size: 1rem; font-weight: 500; color: var(--otb-ink); text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em; }

/* HERO */
.otb-hero {
  min-height: 100vh; padding: 120px 5vw 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  max-width: 1400px; margin: 0 auto;
  position: relative;
}
.otb-hero::after {
  content: '';
  position: fixed; top: 0; right: -10%; width: 55%; height: 100vh;
  background: var(--otb-teal-light);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
  pointer-events: none;
}
.otb-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--otb-gold-light); color: #7A5A10;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: var(--otb-radius); margin-bottom: 1.5rem;
}
.otb-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.05; margin-bottom: 1.5rem;
}
.otb-hero h1 em { font-style: italic; color: var(--otb-teal); }
.otb-hero-desc { font-size: 1.1rem; color: var(--otb-muted); max-width: 440px; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.8; }
.otb-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero card */
.otb-hero-card {
  background: white; border-radius: var(--otb-radius); padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12); max-width: 400px; margin: 0 auto;
}
.otb-hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.otb-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--otb-teal); display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-family: var(--otb-serif); font-size: 1.2rem; flex-shrink: 0;
}
.otb-card-name { font-weight: 600; font-size: 0.95rem; }
.otb-card-sub  { font-size: 0.82rem; color: var(--otb-muted); }
.otb-quiz-q    { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.6rem; }
.otb-quiz-sentence { font-family: var(--otb-serif); font-size: 1.1rem; margin-bottom: 1rem; }
.otb-quiz-opts { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.otb-quiz-opt {
  background: var(--otb-warm); border: 1.5px solid var(--otb-border);
  border-radius: var(--otb-radius); padding: 0.65rem 1rem;
  font-size: 0.85rem; cursor: pointer; transition: all 0.2s;
  font-family: var(--otb-sans); text-align: left;
}
.otb-quiz-opt:hover  { background: var(--otb-teal-light); border-color: var(--otb-teal); color: var(--otb-teal); font-weight: 600; }
.otb-quiz-opt.correct { background: #E8F5E9; border-color: #4CAF50; color: #2E7D32; }
.otb-quiz-opt.wrong   { background: #FFEBEE; border-color: #F44336; color: #C62828; }
.otb-quiz-feedback { font-size: 0.85rem; padding: 0.75rem 1rem; border-radius: var(--otb-radius); margin-bottom: 1rem; display: none; }
.otb-hero-stats { display: flex; gap: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--otb-border); }
.otb-hero-stats div { text-align: center; flex: 1; }
.otb-hero-stats strong { display: block; font-family: var(--otb-serif); font-size: 1.3rem; font-weight: 700; color: var(--otb-teal); }
.otb-hero-stats span  { font-size: 0.75rem; color: var(--otb-muted); }

/* STATS BAR */
.otb-stats-bar {
  background: var(--otb-teal); padding: 40px 5vw;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem;
}
.otb-stat-item { text-align: center; color: white; }
.otb-stat-item strong { display: block; font-family: var(--otb-serif); font-size: 2.5rem; font-weight: 900; }
.otb-stat-item span   { font-size: 0.85rem; opacity: 0.8; letter-spacing: 0.04em; }

/* SECTIONS */
.otb-section      { padding: 80px 0; }
.otb-section-warm { background: var(--otb-warm); }
.otb-section-dark { background: var(--otb-ink); }
.otb-label-light  { color: var(--otb-gold-light) !important; }
.otb-title-light  { color: white; }
.otb-sub-light    { color: rgba(255,255,255,0.6); }

/* LEVELS */
.otb-levels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.otb-level-card {
  background: white; border: 1px solid var(--otb-border);
  border-radius: var(--otb-radius); padding: 1.8rem 1.5rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.otb-level-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.otb-accent-gold::before   { background: var(--otb-gold); }
.otb-accent-green::before  { background: #7BC67E; }
.otb-accent-teal::before   { background: var(--otb-teal); }
.otb-accent-coral::before  { background: var(--otb-coral); }
.otb-accent-purple::before { background: #9C6ADE; }
.otb-level-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.otb-level-badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; background: var(--otb-warm);
  padding: 4px 10px; border-radius: var(--otb-radius);
  color: var(--otb-muted); margin-bottom: 1rem; display: inline-block;
}
.otb-level-card h3 { font-family: var(--otb-serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.otb-level-card p  { font-size: 0.85rem; color: var(--otb-muted); line-height: 1.7; margin-bottom: 1rem; }
.otb-level-detail  { font-size: 0.8rem; color: var(--otb-teal); font-weight: 600; }

/* FEATURES */
.otb-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.otb-feature { display: flex; gap: 1.2rem; }
.otb-feature-icon {
  width: 48px; height: 48px; background: var(--otb-teal-light);
  border-radius: var(--otb-radius); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1.4rem;
}
.otb-feature h4 { font-weight: 600; font-size: 1rem; margin-bottom: 0.4rem; font-family: var(--otb-sans); }
.otb-feature p  { font-size: 0.88rem; color: var(--otb-muted); line-height: 1.7; }

/* TEST */
.otb-test-container { background: #1A1A1A; border-radius: var(--otb-radius); padding: 2rem; border: 1px solid rgba(255,255,255,0.1); }
.otb-progress-bar   { background: rgba(255,255,255,0.1); border-radius: 2px; height: 4px; margin-bottom: 2rem; }
.otb-progress-fill  { background: var(--otb-gold); height: 4px; border-radius: 2px; transition: width 0.5s; width: 0%; }
.otb-q-counter { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.otb-q-text { font-family: var(--otb-serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 1.8rem; line-height: 1.4; color: white; }
.otb-q-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.otb-q-opt {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--otb-radius); padding: 0.9rem 1.2rem;
  font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
  color: white; font-family: var(--otb-sans); text-align: left;
}
.otb-q-opt:hover  { background: rgba(200,151,58,0.15); border-color: var(--otb-gold); color: var(--otb-gold-light); }
.otb-q-opt.correct { background: rgba(76,175,80,0.2); border-color: #4CAF50; color: #A5D6A7; }
.otb-q-opt.wrong   { background: rgba(244,67,54,0.2); border-color: #F44336; color: #EF9A9A; }
.otb-q-opt.disabled { pointer-events: none; opacity: 0.5; }
.otb-test-result { text-align: center; padding: 2rem 0; }
.otb-result-score { font-family: var(--otb-serif); font-size: 4rem; font-weight: 900; color: var(--otb-gold); }
.otb-result-level { font-size: 1.2rem; margin: 0.5rem 0 1rem; color: rgba(255,255,255,0.85); }
.otb-result-desc  { font-size: 0.9rem; color: rgba(255,255,255,0.5); max-width: 400px; margin: 0 auto 1.5rem; }
.otb-result-capture { display: flex; gap: 0.75rem; max-width: 420px; margin: 0 auto 1.5rem; flex-wrap: wrap; justify-content: center; }
.otb-input-light {
  flex: 1; min-width: 200px; padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--otb-radius); color: white; font-family: var(--otb-sans); font-size: 0.88rem;
}
.otb-input-light::placeholder { color: rgba(255,255,255,0.4); }
.otb-result-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }

/* SURVEY */
.otb-survey-card {
  background: white; border-radius: var(--otb-radius);
  border: 1px solid var(--otb-border); padding: 2.5rem;
  max-width: 640px; margin: 0 auto;
}
.otb-survey-step { display: none; }
.otb-survey-step.active { display: block; }
.otb-survey-q { font-family: var(--otb-serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--otb-ink); }
.otb-survey-opts { display: flex; flex-direction: column; gap: 0.6rem; }
.otb-s-opt {
  background: var(--otb-warm); border: 1.5px solid var(--otb-border);
  border-radius: var(--otb-radius); padding: 0.9rem 1.2rem;
  font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
  text-align: left; font-family: var(--otb-sans); color: var(--otb-ink);
  display: flex; align-items: center; gap: 10px;
}
.otb-s-opt::before { content: '○'; color: var(--otb-muted); font-size: 0.8rem; flex-shrink: 0; }
.otb-s-opt:hover, .otb-s-opt.sel { background: var(--otb-teal-light); border-color: var(--otb-teal); color: var(--otb-teal); font-weight: 500; }
.otb-s-opt.sel::before { content: '●'; color: var(--otb-teal); }
.otb-survey-result { text-align: center; padding: 1.5rem 0; }
.otb-survey-result h3 { font-family: var(--otb-serif); font-size: 1.8rem; font-weight: 700; margin-bottom: 0.75rem; }
.otb-survey-result p { color: var(--otb-muted); font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 400px; margin-left: auto; margin-right: auto; }

/* PRICING */
.otb-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.otb-price-card {
  background: white; border: 1px solid var(--otb-border);
  border-radius: var(--otb-radius); padding: 2rem;
  transition: transform 0.3s; position: relative;
}
.otb-price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.otb-price-featured { border: 2px solid var(--otb-teal); }
.otb-price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--otb-teal); color: white; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 14px;
  border-radius: var(--otb-radius); white-space: nowrap;
}
.otb-price-name   { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--otb-teal); margin-bottom: 0.5rem; }
.otb-price-amount { font-family: var(--otb-serif); font-size: 2.8rem; font-weight: 900; color: var(--otb-ink); line-height: 1; }
.otb-price-amount sup { font-size: 1rem; font-weight: 400; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.otb-price-period { font-size: 0.82rem; color: var(--otb-muted); margin-bottom: 1.5rem; }
.otb-price-desc   { font-size: 0.85rem; color: var(--otb-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.otb-price-features { list-style: none; margin-bottom: 2rem; }
.otb-price-features li {
  font-size: 0.88rem; padding: 0.4rem 0;
  border-bottom: 1px solid var(--otb-border);
  display: flex; align-items: center; gap: 8px;
}
.otb-price-features li::before { content: '✓'; color: var(--otb-teal); font-weight: 700; }

/* TESTIMONIALS */
.otb-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.otb-testimonial {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--otb-radius); padding: 1.8rem;
}
.otb-t-stars  { color: var(--otb-gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.otb-t-text   { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.8; font-style: italic; margin-bottom: 1.2rem; }
.otb-t-author { display: flex; align-items: center; gap: 10px; }
.otb-t-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--otb-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: white; font-family: var(--otb-serif); flex-shrink: 0;
}
.otb-t-name { font-size: 0.88rem; font-weight: 600; color: white; }
.otb-t-role { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* CTA / CONTACT */
.otb-cta-section { background: var(--otb-teal); padding: 80px 5vw; }
.otb-cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.otb-cta-section h2 {
  font-family: var(--otb-serif); font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 900; color: white; margin-bottom: 1rem; line-height: 1.15;
}
.otb-cta-section h2 em { font-style: italic; }
.otb-cta-section > .otb-cta-inner > p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 2.5rem; font-weight: 300; }

.otb-contact-form { max-width: 560px; margin: 0 auto 2rem; }
.otb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.otb-input {
  width: 100%; padding: 0.9rem 1.1rem; border: none;
  border-radius: var(--otb-radius); background: rgba(255,255,255,0.15);
  color: white; font-family: var(--otb-sans); font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.25); outline: none; transition: border-color 0.2s;
}
.otb-input::placeholder { color: rgba(255,255,255,0.5); }
.otb-input:focus { border-color: var(--otb-gold-light); }
.otb-input option { background: var(--otb-teal-dark); color: white; }
.otb-textarea { resize: vertical; margin-bottom: 1rem; display: block; }
.otb-form-msg { margin-top: 1rem; font-size: 0.9rem; color: var(--otb-gold-light); min-height: 1.5rem; }

.otb-contact-extras { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.otb-contact-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem;
  transition: color 0.2s;
}
.otb-contact-link:hover { color: white; }

/* FOOTER */
.otb-footer { background: #080808; color: rgba(255,255,255,0.5); padding: 50px 5vw 30px; }
.otb-footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.otb-footer-logo { font-family: var(--otb-serif); font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 0.75rem; display: block; }
.otb-footer-logo span { color: var(--otb-gold); }
.otb-footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 280px; }
.otb-social-links { display: flex; gap: 1rem; margin-top: 1.2rem; }
.otb-social-links a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.otb-social-links a:hover { color: var(--otb-gold); }
.otb-footer-col h5 { color: white; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; font-family: var(--otb-sans); }
.otb-footer-links { list-style: none; }
.otb-footer-links li { margin-bottom: 0.5rem; }
.otb-footer-links li a, .otb-footer-links li span { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.otb-footer-links li a:hover { color: var(--otb-gold); }
.otb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem;
  max-width: 1200px; margin: 0 auto;
}
.otb-footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .otb-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .otb-hero { grid-template-columns: 1fr; padding-top: 100px; }
  .otb-hero::after { display: none; }
  .otb-nav-links, .otb-nav-cta { display: none; }
  .otb-hamburger { display: flex; }
  .otb-q-opts { grid-template-columns: 1fr; }
  .otb-form-row { grid-template-columns: 1fr; }
  .otb-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
