/* ================================================
   FLUENCY ENGLISH SCHOOL — Coaching Premium 1:1
   Solo estilos específicos. Base viene de /css/main.css
   ================================================ */

/* === HERO === */
.cp-hero {
  position: relative;
  background: linear-gradient(160deg, #0F0720 0%, #1A0B3E 40%, #2D1460 100%);
  color: #fff;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  text-align: center;
}

.cp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 70, 193, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 70, 193, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.cp-hero-glow {
  position: absolute;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.3), transparent 60%);
  top: -150px; right: -150px;
  border-radius: 50%; filter: blur(80px);
  animation: cp-float 10s ease-in-out infinite;
}

.cp-hero-glow--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 60%);
  bottom: -100px; left: -80px;
  top: auto; right: auto;
  animation-delay: -5s;
}

@keyframes cp-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.05); }
}

.cp-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

/* Badge */
.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.cp-badge-icon { font-size: 1rem; }

/* Title */
.cp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.025em;
}

.cp-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.cp-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cp-hero-sub strong {
  color: var(--gold);
}

/* Use cases */
.cp-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: left;
}

.cp-case {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  transition: all 0.3s var(--ease);
}

.cp-case:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.cp-case-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.cp-case-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.cp-case-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Price pill */
.cp-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.cp-price-pill strong {
  color: var(--gold);
  font-weight: 800;
}

/* === ALERT === */
.cp-alert-section {
  padding: 1.5rem 0;
  background: var(--bg);
}

.cp-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--gold-soft);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 1rem 1.3rem;
  max-width: 700px;
  margin: 0 auto;
}

.cp-alert-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}

.cp-alert-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}

.cp-alert-body p {
  font-size: 0.85rem;
  color: #92400E;
  line-height: 1.5;
  margin: 0;
}

.cp-alert-body a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cp-alert-body a:hover {
  color: var(--purple-dark);
}

/* === SECTION TITLES === */
.cp-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  text-align: center;
  color: var(--ink);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* === PATHS (Two columns) === */
.cp-paths-section {
  padding: 3.5rem 0;
  background: var(--bg);
}

.cp-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.cp-path-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
}

.cp-path-card--premium {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.cp-premium-badge {
  position: absolute;
  top: -0.7rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cp-path-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.cp-path-num {
  width: 36px; height: 36px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.cp-path-num--gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.cp-path-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.cp-path-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* === FORM === */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cp-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cp-form-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.cp-form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  border: 2px solid var(--stroke);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
  outline: none;
}

.cp-form-input::placeholder { color: var(--subtle); }

.cp-form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.1);
}

.cp-form-input.error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
}

.cp-form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox */
.cp-checkbox-group { margin-top: 0.2rem; }

.cp-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.cp-checkbox-input {
  margin-top: 0.2rem;
  width: 18px; height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--purple);
}

.cp-checkbox-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.cp-checkbox-text a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit button */
.cp-submit-btn {
  width: 100%;
  padding: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-purple);
}

.cp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(107, 70, 193, 0.35);
}

.cp-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.cp-btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cp-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cp-spin 0.6s linear infinite;
}

@keyframes cp-spin { to { transform: rotate(360deg); } }

.cp-form-status {
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
}

.cp-form-status:empty { display: none; }

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Calendly */
.cp-calendly-container {
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cp-price-note {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

.cp-price-note strong {
  color: var(--gold-dark);
  font-weight: 800;
}

/* === HOW IT WORKS (Steps) === */
.cp-how-section {
  padding: 4rem 0;
  background: var(--surface-alt);
}

.cp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.cp-step {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.cp-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-muted);
}

.cp-step-num {
  width: 40px; height: 40px;
  background: var(--purple-soft);
  color: var(--purple);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 0.8rem;
}

.cp-step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.cp-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* === FAQ === */
.cp-faq-section {
  padding: 4rem 0;
  background: var(--bg);
}

.cp-faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cp-faq-item {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.cp-faq-item:has(.cp-faq-q[aria-expanded="true"]) {
  border-color: var(--purple-muted);
}

.cp-faq-q {
  width: 100%;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.cp-faq-q:hover {
  color: var(--purple);
}

.cp-faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--purple);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.cp-faq-q[aria-expanded="true"] .cp-faq-icon {
  transform: rotate(45deg);
}

.cp-faq-a {
  padding: 0 1.3rem 1.1rem;
}

.cp-faq-a p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.cp-faq-a a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* === FINAL CTA === */
.cp-final-cta {
  padding: 3rem 0 4rem;
  background: var(--bg);
}

.cp-cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(160deg, #0F0720, #1A0B3E, #2D1460);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cp-cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.3), transparent 60%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.cp-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
}

.cp-cta-box p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  position: relative;
}

.cp-cta-box .btn {
  position: relative;
}

/* === FOOTER (minimal) === */
.cp-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--stroke);
  background: var(--bg);
  text-align: center;
}

.cp-footer-text {
  font-size: 0.82rem;
  color: var(--subtle);
  margin-bottom: 0.3rem;
}

.cp-footer-links {
  font-size: 0.82rem;
  color: var(--subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.cp-footer-links a {
  color: var(--muted);
  transition: color 0.2s;
}

.cp-footer-links a:hover {
  color: var(--purple);
}

.cp-footer-links span {
  color: var(--stroke);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .cp-paths-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .cp-hero {
    padding: 2.5rem 0 3rem;
  }

  .cp-hero-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .cp-cases {
    grid-template-columns: 1fr;
  }

  .cp-path-card {
    padding: 1.5rem;
  }

  .cp-steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .cp-cta-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .cp-hero-sub {
    font-size: 1rem;
  }

  .cp-badge {
    font-size: 0.78rem;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .cp-hero-glow,
  .cp-hero-glow--2 {
    animation: none;
  }
}
