/* CSS para el Embudo del Quiz de Lenguajes del Amor */

.tll-funnel-container {
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Outfit', serif;
    
    /* Sleek & Vibrant Palette */
    --color-primary: #FF4B6E;
    --color-primary-hover: #E03556;
    --color-dark: #0F172A;
    --color-dark-surface: #1E293B;
    --color-lavender: #F5F3FF;
    --color-light: #F8FAFC;
    --color-gray: #64748B;
    --color-border: #E2E8F0;
    --color-success: #10B981;
    
    --radius-4xl: 32px;
    --radius-3xl: 24px;
    --radius-2xl: 16px;
    --radius-xl: 12px;
    --radius-md: 8px;
    
    --shadow-card: 0 20px 40px rgba(15, 23, 42, 0.06);
    --shadow-button: 0 4px 14px rgba(255, 75, 110, 0.3);
    
    font-family: var(--font-sans);
    color: var(--color-dark);
    background: var(--color-light);
    max-width: 900px;
    margin: 40px auto;
    padding: 0;
    box-sizing: border-box;
    border-radius: var(--radius-4xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.tll-funnel-container * {
    box-sizing: border-box;
}

/* Header */
.tll-header {
    background: var(--color-dark);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tll-logo {
    font-weight: 800;
    font-size: 22px;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.tll-logo svg {
    fill: var(--color-primary);
}

.tll-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Quiz Screen */
.tll-quiz-wrapper {
    padding: 48px 32px;
    background: var(--color-light);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tll-progress-section {
    width: 100%;
    margin-bottom: 32px;
}

.tll-progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.tll-progress-track {
    background: var(--color-border);
    height: 10px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.tll-progress-bar {
    background: linear-gradient(90deg, var(--color-primary), #FF85A1);
    height: 100%;
    border-radius: 50px;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tll-question-stem {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 24px;
    text-align: center;
    color: var(--color-dark);
}

.tll-question-text {
    font-size: 18px;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 32px;
}

.tll-options-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.tll-option-button {
    background: #FFF;
    border: 2px solid var(--color-border);
    padding: 20px 24px;
    border-radius: var(--radius-2xl);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.tll-option-button:hover {
    border-color: var(--color-primary);
    background: var(--color-lavender);
    transform: translateY(-2px);
}

.tll-option-button.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #FFF;
}

.tll-option-label {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--color-dark);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.tll-option-button.active .tll-option-label {
    background: #FFF;
    border-color: #FFF;
    color: var(--color-primary);
}

.tll-quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.tll-btn {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: var(--radius-2xl);
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.tll-btn-primary {
    background: var(--color-primary);
    color: #FFF;
    box-shadow: var(--shadow-button);
}

.tll-btn-primary:hover:not(:disabled) {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

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

.tll-btn-secondary:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.02);
    color: var(--color-dark);
}

.tll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Captura de Email (Paso 1.5) */
.tll-email-capture {
    text-align: center;
    padding: 48px 32px;
}

.tll-email-input {
    width: 100%;
    max-width: 440px;
    height: 60px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-border);
    padding: 0 20px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.2s ease;
}

.tll-email-input:focus {
    border-color: var(--color-primary);
}

/* Loader / Processing Screen */
.tll-processing-wrapper {
    padding: 64px 32px;
    text-align: center;
    background: #FFF;
}

.tll-processing-headline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--color-dark);
}

.tll-spinner-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
}

.tll-spinner-ring {
    border: 8px solid rgba(255, 75, 110, 0.1);
    border-top: 8px solid var(--color-primary);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: spin 1.2s linear infinite;
}

.tll-spinner-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    fill: var(--color-primary);
}

.tll-steps-list {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tll-step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.tll-step-item.active {
    opacity: 1;
}

.tll-step-item.completed {
    opacity: 0.8;
}

.tll-step-status {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tll-step-item.active .tll-step-status {
    background: var(--color-primary);
}

.tll-step-item.completed .tll-step-status {
    background: var(--color-success);
}

.tll-step-status svg {
    fill: #FFF;
    display: none;
}

.tll-step-item.completed .tll-step-status svg {
    display: block;
}

.tll-step-info h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
}

.tll-step-info p {
    margin: 0;
    font-size: 13px;
    color: var(--color-gray);
}

/* Landing / Checkout / Confirmation Layouts */
.tll-content-box {
    padding: 48px 32px;
    background: #FFF;
}

/* Testimonios */
.tll-testimonials-section {
    background: var(--color-dark);
    color: #FFF;
    padding: 64px 32px;
    text-align: center;
}

.tll-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

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

.tll-testimonial-card {
    background: var(--color-dark-surface);
    padding: 24px;
    border-radius: var(--radius-2xl);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* PayPal Button Wrapper */
.tll-paypal-wrapper {
    margin: 32px auto;
    max-width: 440px;
}

/* Gráficos de Resultados */
.tll-results-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.tll-chart-row {
    background: var(--color-light);
    padding: 16px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.tll-chart-label-group {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.tll-chart-fill-track {
    background: var(--color-border);
    height: 12px;
    border-radius: 50px;
    overflow: hidden;
}

.tll-chart-fill-bar {
    height: 100%;
    border-radius: 50px;
    background: var(--color-primary);
    width: 0%;
    transition: width 1s ease-out;
}

.tll-cheer-bubble {
    background: #FFF9E6;
    border: 1px solid #FFE0B2;
    color: #E65100;
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    animation: fadeIn 0.4s ease;
}

/* FAQ Accordion */
.tll-faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}
.tll-faq-question {
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tll-faq-answer {
    padding-top: 10px;
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
    display: none;
}

/* Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- NUEVOS ESTILOS DEL QUIZ (Basados en preguntas.html) --- */
.tll-quiz-page-container {
  --white-pure: #FFFFFF;
  --white: #FEFEFE;
  --lavender-50: #F5F4FA;
  --gray-250: #D9D9D9;
  --gray-600: #6A737D;
  --ink: #262626;
  --red-500: #FD4439;
  --red-700: #D42218;

  --surface-page: var(--lavender-50);
  --surface-card: var(--white-pure);
  --surface-dark: var(--ink);
  --text-primary: var(--ink);
  --text-muted: var(--gray-600);
  --text-inverse: var(--white-pure);
  --border-hairline: var(--gray-250);
  --action-primary: var(--red-500);
  --action-primary-hover: var(--red-700);

  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'DM Serif Display', ui-serif, Georgia, serif;
  --font-wordmark: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-progress: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --radius-lg: 20px;
  --radius-4xl: 42px;
  --radius-full: 9999px;
  --shadow-card: 0px 4px 12px 0px rgba(0,0,0,0.08);

  background: var(--surface-page);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.tll-quiz-page-container * {
  box-sizing: border-box;
}

.tll-new-header { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 12px; 
  padding: 20px 32px; 
  background: var(--surface-dark); 
  width: 100%;
  box-sizing: border-box;
}
.tll-new-header .tll-new-logo-mark { display: block; flex-shrink: 0; }
.tll-new-header .tll-new-wordmark { font-family: var(--font-wordmark); font-weight: 600; font-size: 13px; line-height: 1.25; color: var(--text-inverse); }

.tll-new-milestone-banner { display: flex; justify-content: center; padding: 14px 24px; background: var(--lavender-50); border-bottom: 1px solid var(--border-hairline); width: 100%; box-sizing: border-box; }
.tll-new-milestone-banner span { font-family: var(--font-sans); font-weight: 700; font-size: 15px; color: var(--action-primary-hover); text-align: center; }

.tll-new-content { 
  flex: 1; 
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  padding: 40px 20px; 
  width: 100%;
  box-sizing: border-box;
}

.tll-new-card { 
  width: 100%; 
  max-width: 640px; 
  background: var(--surface-card); 
  border-radius: var(--radius-4xl); 
  box-shadow: var(--shadow-card); 
  padding: 40px; 
  display: flex; 
  flex-direction: column; 
  gap: 28px; 
  margin: 0 auto; 
  box-sizing: border-box;
}

.tll-new-progress-row { display: flex; flex-direction: column; gap: 10px; }
.tll-new-progress-labels { display: flex; justify-content: space-between; align-items: baseline; }
.tll-new-progress-labels .tll-new-count { font-family: var(--font-progress); font-size: 15px; font-weight: 600; color: var(--text-muted); }
.tll-new-progress-labels .tll-new-pct { font-family: var(--font-progress); font-size: 15px; font-weight: 800; color: var(--action-primary); }
.tll-new-progress-track { width: 100%; height: 8px; border-radius: var(--radius-full); background: var(--border-hairline); overflow: hidden; }
.tll-new-progress-fill { height: 100%; border-radius: var(--radius-full); background: var(--action-primary); transition: width 0.25s ease; }

.tll-new-question-title { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 30px; line-height: 1.3; color: var(--text-primary); text-wrap: pretty; }

.tll-new-options { display: flex; flex-direction: column; gap: 14px; }
.tll-new-option { all: unset; box-sizing: border-box; display: flex; align-items: center; gap: 18px; width: 100%; padding: 20px 24px; border-radius: var(--radius-lg); background: var(--surface-card); box-shadow: inset 0 0 0 1px var(--border-hairline); cursor: pointer; transition: all 0.2s; }
.tll-new-option:hover { box-shadow: inset 0 0 0 1px var(--action-primary); }
.tll-new-option .tll-new-badge { flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-weight: 800; font-size: 14px; background: var(--lavender-50); color: var(--text-primary); transition: all 0.2s; }
.tll-new-option .tll-new-label { font-family: var(--font-sans); font-weight: 400; font-size: 18px; color: var(--text-primary); text-align: left; transition: all 0.2s; }

.tll-new-option.selected { background: var(--action-primary); box-shadow: none; }
.tll-new-option.selected .tll-new-badge { background: rgba(255,255,255,0.25); color: var(--text-inverse); }
.tll-new-option.selected .tll-new-label { color: var(--text-inverse); }

.tll-new-hint-row { display: flex; justify-content: center; align-items: center; margin-top: 4px; }
.tll-new-hint-row span { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); }

.tll-new-continue-btn {
  background: var(--action-primary);
  color: var(--text-inverse);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(253, 68, 57, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tll-new-continue-btn:hover {
  background: var(--action-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 68, 57, 0.4);
}

/* =========================================================================
   Processing & Landing Custom Styles (Vanilla Port)
   ========================================================================= */

@keyframes shimmerMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(220%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,152,146,0.35); }
  50% { box-shadow: 0 0 0 6px rgba(255,152,146,0); }
}
@keyframes softFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tll-new-processing { width: 100%; min-height: 100vh; background: linear-gradient(180deg, #FEFEFE 0%, #F9F9F9 100%); display: flex; justify-content: center; align-items: flex-start; padding: 48px 20px; box-sizing: border-box; }
.tll-proc-inner { width: 100%; max-width: 480px; display: flex; flex-direction: column; align-items: center; gap: 36px; margin: 0 auto; }
.tll-proc-title { font-family: var(--font-display); font-size: 30px; line-height: 1.25; text-align: center; color: #1E4635; margin: 0; font-weight: 400; letter-spacing: -0.01em; }
.tll-proc-scroll { width: 100%; max-height: 392px; overflow-y: auto; overflow-x: hidden; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; padding: 4px 2px; }
.tll-proc-scroll::-webkit-scrollbar { display: none; }
.tll-proc-steps { display: flex; flex-direction: column; gap: 28px; }
.tll-proc-step { display: flex; flex-direction: column; gap: 10px; transition: opacity 0.5s ease; }
.tll-proc-step-title { font-family: var(--font-sans); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }
.tll-proc-step-sub { font-family: var(--font-sans); font-weight: 500; font-size: 15px; color: var(--gray-600); }
.tll-proc-bar-wrap { position: relative; width: 100%; height: 32px; border-radius: var(--radius-full); background: var(--gray-150); overflow: hidden; display: none; }
.tll-proc-bar-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; border-radius: var(--radius-full); background: linear-gradient(90deg, #FFC7C2 0%, #FF9892 100%); transition: width 0.08s linear; }
.tll-proc-bar-shimmer { position: absolute; top: 0; left: 0; height: 100%; width: 40%; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%); animation: shimmerMove 1.3s ease-in-out infinite; display: none; }
.tll-proc-bar-pct { position: absolute; top: 0; right: 12px; height: 100%; display: flex; align-items: center; font-family: var(--font-sans); font-weight: 800; font-size: 14px; color: #1A1A1A; }
.tll-proc-social { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; animation: softFadeIn 0.7s ease both; }
.tll-proc-social-title { font-family: var(--font-sans); font-weight: 700; font-size: 17px; color: var(--ink); }
.tll-proc-social-stars-row { display: flex; align-items: center; gap: 8px; }
.tll-proc-stars-wrapper { position: relative; display: inline-flex; font-size: 24px; line-height: 1; }
.tll-proc-stars-bg { color: var(--gray-250); letter-spacing: 3px; }
.tll-proc-stars-fg { position: absolute; top: 0; left: 0; overflow: hidden; width: 96%; color: var(--amber-400); letter-spacing: 3px; }
.tll-proc-score { font-family: var(--font-sans); font-weight: 800; font-size: 18px; color: var(--ink); }
.tll-proc-reviews-text { font-family: var(--font-sans); font-weight: 500; font-size: 14px; color: var(--gray-600); }.tll-new-processing { 
  width: 100%; 
  min-height: 80vh; 
  background: transparent; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  padding: 48px 20px; 
  box-sizing: border-box; 
}
.tll-proc-inner { 
  width: 100%; 
  max-width: 680px; 
  background: var(--white); 
  border-radius: var(--radius-4xl); 
  box-shadow: var(--shadow-card); 
  padding: 48px 36px; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 36px; 
  margin: 0 auto; 
  box-sizing: border-box;
}

@keyframes noticeFade {
  0% { opacity: 0; transform: translateY(-6px); }
  10% { opacity: 1; transform: translateY(0); }
  88% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-6px); }
}
@keyframes barShrink {
  from { width: 100%; }
  to { width: 0%; }
}

.tll-new-landing { 
  width: 100%;
  max-width: 760px; 
  margin: 0 auto; 
  background: var(--white); 
  border-radius: var(--radius-4xl); 
  box-shadow: var(--shadow-card); 
  position: relative; 
  padding-bottom: 76px; 
  box-sizing: border-box;
  overflow: hidden;
}

.tll-land-notice-wrap { display: flex; justify-content: center; padding: 16px 20px 4px; }
.tll-land-notice { animation: noticeFade 4s ease-in-out; display: flex; align-items: center; gap: 10px; background: var(--lavender-50); border-radius: var(--radius-full); padding: 8px 16px 8px 8px; max-width: 100%; box-sizing: border-box; box-shadow: var(--shadow-card); }
.tll-land-notice-avatar { width: 32px; height: 32px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; background-color: var(--gray-200); }
.tll-land-notice-text { font-family: var(--font-sans); font-size: 13px; line-height: 1.3; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tll-land-bold { font-weight: 800; }
.tll-land-highlight { font-weight: 800; color: #049866; }
.tll-land-flag { font-size: 15px; flex-shrink: 0; }

.tll-land-header { padding: 20px 24px 8px; text-align: center; }
.tll-land-title { font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1.15; color: var(--ink); margin: 0; }
.tll-land-subtitle { font-family: var(--font-sans); font-weight: 500; font-size: 15px; color: var(--text-muted); margin: 10px 0 0; }

.tll-land-offer-card { margin: 20px 20px 0; border-radius: var(--radius-4xl); box-shadow: var(--shadow-card); padding: 26px 22px; background: var(--white); position: relative; border: 2px solid #01B67A; box-sizing: border-box; }
.tll-land-offer-header { display: flex; align-items: flex-start; gap: 14px; }
.tll-land-offer-items { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.tll-land-offer-item { display: flex; align-items: center; gap: 12px; }
.tll-land-num-badge { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-display); font-size: 19px; }
.tll-land-item-title { font-family: var(--font-sans); font-weight: 800; font-size: 16.5px; color: var(--ink); line-height: 1.25; text-align: left; }
.tll-land-item-sub { font-family: var(--font-sans); font-weight: 500; font-size: 13px; color: var(--text-muted); margin-top: 2px; text-align: left; }
.tll-land-book-mockup { width: 74px; height: 96px; flex-shrink: 0; border-radius: 16px; background: linear-gradient(155deg,#FFE3D3,#FFF1E9); border: 3px solid var(--ink); box-shadow: var(--shadow-card); box-sizing: border-box; padding: 8px 6px; display: flex; flex-direction: column; gap: 4px; }
.tll-land-book-icon { flex: 1; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.tll-land-book-line1 { width: 70%; height: 5px; border-radius: 3px; background: var(--ink); opacity: 0.35; align-self: center; }
.tll-land-book-line2 { width: 50%; height: 5px; border-radius: 3px; background: var(--ink); opacity: 0.2; align-self: center; margin-top: 3px; }

.tll-land-bullets { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; text-align: left; }
.tll-land-bullet { display: flex; align-items: center; gap: 10px; }
.tll-land-check { width: 22px; height: 22px; border-radius: 50%; background: #01B67A; color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; font-weight: bold; }
.tll-land-bullet-text { font-family: var(--font-sans); font-weight: 500; font-size: 14.5px; color: var(--text-primary); }

.tll-land-divider { height: 1px; background: var(--gray-250); margin: 22px 0 18px; }

.tll-land-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; justify-content: center; }
.tll-land-price { font-family: var(--font-display); font-weight: 400; font-size: 30px; color: var(--ink); }
.tll-land-price-terms { font-family: var(--font-sans); font-weight: 600; font-size: 13px; color: var(--text-muted); }

.tll-land-cta-btn { display: block; width: 100%; border: none; border-radius: var(--radius-3xl); background: var(--action-primary); color: var(--white-pure); font-family: var(--font-sans); font-weight: 800; font-size: 16.5px; padding: 18px 24px; cursor: pointer; box-sizing: border-box; text-decoration: none; text-align: center; }
.tll-land-cta-btn:hover { background: var(--action-primary-hover); color: var(--white-pure); }

.tll-land-trust { padding: 18px 24px 4px; }
.tll-land-trust-top { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; }
.tll-land-trust-item { display: flex; align-items: center; gap: 6px; font-family: var(--font-sans); font-weight: 600; font-size: 12.5px; color: var(--text-muted); }
.tll-land-trust-cards { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.tll-land-card-icon { display: flex; align-items: center; justify-content: center; width: 46px; height: 30px; background: var(--white); border: 1px solid var(--gray-250); border-radius: 8px; box-sizing: border-box; font-size: 10px; font-weight: bold; color: #333; }

.tll-land-timer-wrap { margin: 18px 20px 0; background: var(--lavender-50); border-radius: var(--radius-lg); padding: 14px 18px; box-sizing: border-box; }
.tll-land-timer-text { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-sans); font-weight: 700; font-size: 13px; color: var(--ink); }
.tll-land-timer { font-weight: 800; font-size: 14px; color: #D42218; font-variant-numeric: tabular-nums; }
.tll-land-timer-track { height: 5px; border-radius: 3px; background: var(--gray-200); margin-top: 10px; overflow: hidden; }
.tll-land-timer-fill { height: 100%; background: #01B67A; border-radius: 3px; animation: barShrink 900s linear forwards; }

.tll-land-section { padding: 32px 24px 8px; }
.tll-land-h2 { font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--ink); margin: 0 0 18px; text-align: center; }
.tll-land-list { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.tll-land-list-item { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-sans); font-weight: 500; font-size: 15px; line-height: 1.5; color: var(--text-primary); }

.tll-land-rating-block { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 22px 24px; flex-wrap: wrap; }
.tll-land-rating-bold { font-family: var(--font-sans); font-weight: 800; font-size: 15px; color: var(--ink); }
.tll-land-rating-stars { color: #01B67A; letter-spacing: 2px; }
.tll-land-rating-count { font-family: var(--font-sans); font-weight: 500; font-size: 13px; color: var(--text-muted); }

.tll-land-preview-box { position: relative; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-card); }
.tll-land-preview-blur { filter: blur(7px); pointer-events: none; user-select: none; background: linear-gradient(160deg,#FFF1E9,#F5F4FA); padding: 28px 20px; display: flex; flex-direction: column; gap: 16px; }
.tll-land-preview-overlay { position: absolute; inset: 0; background: rgba(38,38,38,0.55); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; padding: 24px; }

.tll-land-learn-list { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.tll-land-learn-item { display: flex; align-items: center; gap: 12px; background: var(--lavender-50); border-radius: var(--radius-lg); padding: 14px 16px; box-sizing: border-box; }
.tll-land-learn-emoji { width: 34px; height: 34px; border-radius: 50%; background: #FFF1E9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.tll-land-learn-text { font-family: var(--font-sans); font-weight: 600; font-size: 14.5px; line-height: 1.4; color: var(--text-primary); }

.tll-land-testimonials { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.tll-land-testimonial { display: flex; flex-direction: column; gap: 12px; padding: 20px; border-radius: var(--radius-2xl); background: var(--white); box-shadow: var(--shadow-card); box-sizing: border-box; }
.tll-land-testim-header { display: flex; align-items: center; gap: 12px; }
.tll-land-testim-avatar { width: 46px; height: 46px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; }
.tll-land-testim-name { font-family: var(--font-sans); font-weight: 800; font-size: 14.5px; color: var(--ink); }
.tll-land-testim-verified { display: inline-flex; align-items: center; gap: 3px; background: #E8F7F0; color: #0B6B4A; font-family: var(--font-sans); font-weight: 700; font-size: 10.5px; padding: 2px 8px; border-radius: 8px; margin-top: 2px; }
.tll-land-testim-quote { margin: 0; font-family: var(--font-sans); font-weight: 400; font-size: 14px; line-height: 1.55; color: var(--text-primary); }

.tll-land-final { padding: 8px 20px 40px; }
.tll-land-secure-text { text-align: center; font-family: var(--font-sans); font-size: 11.5px; color: var(--text-muted); margin-top: 14px; }

.tll-land-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; justify-content: center; }
.tll-land-sticky-inner { width: 100%; max-width: 480px; background: var(--white); box-shadow: 0 -6px 20px rgba(0,0,0,0.1); padding: 12px 16px; box-sizing: border-box; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
.tll-land-sticky-timer { font-family: var(--font-sans); font-weight: 700; font-size: 13px; opacity: 0.85; }

@media (max-width: 768px) {
  .tll-new-header {
    border-radius: 0 !important;
    margin-top: 0 !important;
  }
  .tll-quiz-page-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .tll-new-content {
    padding: 0 !important;
  }
  .tll-new-card {
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

@media (min-width: 769px) {
  /* Processing Desktop Adjustments */
  .tll-new-processing {
    background: transparent;
    padding: 60px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  .tll-proc-inner {
    width: 100%;
    max-width: 680px;
    background: var(--white);
    padding: 60px 48px;
    border-radius: var(--radius-4xl);
    box-shadow: var(--shadow-card);
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  /* Landing Desktop Adjustments */
  .tll-new-landing {
    width: 100%;
    max-width: 760px;
    margin: 40px auto;
    border-radius: var(--radius-4xl);
    min-height: auto;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    box-sizing: border-box;
  }
  .tll-land-sticky-inner {
    max-width: 760px;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  }
  
  .tll-land-offer-card {
    padding: 32px 40px;
  }
  .tll-land-section {
    padding: 40px 40px 20px;
  }
}

/* =========================================================================
   Partner Language Selection UI Styles
   ========================================================================= */
.tll-partner-options {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
}

.tll-partner-option {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  padding: 16px 20px !important;
  width: 100% !important;
  border-radius: var(--radius-lg) !important;
  background: var(--surface-card) !important;
  box-shadow: inset 0 0 0 1px var(--border-hairline) !important;
  cursor: pointer;
  transition: all 0.2s ease !important;
}

.tll-partner-option:hover {
  box-shadow: inset 0 0 0 1.5px var(--action-primary) !important;
  background: var(--lavender-50) !important;
}

.tll-partner-option .tll-partner-icon-wrap {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: #FFF0F2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}

.tll-partner-option .tll-partner-icon-wrap img {
  width: 26px !important;
  height: 26px !important;
  display: block !important;
  margin: 0 !important;
  transition: all 0.2s ease !important;
}

.tll-partner-option .tll-new-label {
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: var(--text-primary) !important;
  text-align: left !important;
  flex: 1 !important;
  margin: 0 !important;
}

.tll-partner-option.selected {
  background: var(--action-primary) !important;
  box-shadow: none !important;
}

.tll-partner-option.selected .tll-partner-icon-wrap {
  background: rgba(255, 255, 255, 0.25) !important;
}

.tll-partner-option.selected .tll-partner-icon-wrap img {
  filter: brightness(0) invert(1);
}

.tll-partner-option.selected .tll-new-label {
  color: var(--text-inverse) !important;
}
  .tll-land-bullets, .tll-land-learn-list, .tll-land-testimonials {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

/* Confirmation Redesign Styles */
.tll-confirmation-wrapper {
  background-color: #EAECEF !important;
}

.tll-conf-card {
  transition: all 0.3s ease;
}

.tll-conf-card button#tll-conf-continue-btn:hover,
.tll-conf-card button#tll-conf-access-app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(240, 83, 56, 0.4) !important;
}

.tll-partner-option {
  transition: all 0.2s ease;
}

.tll-partner-option:hover {
  border-color: #F05338 !important;
  background-color: #FFF5F3 !important;
}

.tll-partner-option.selected {
  border-color: #F05338 !important;
  background-color: #F05338 !important;
}

.tll-partner-option.selected .tll-new-label {
  color: #FFFFFF !important;
}

.tll-partner-option.selected .tll-partner-icon-wrap svg {
  stroke: #FFFFFF !important;
}

@media (max-width: 480px) {
  .tll-conf-card {
    padding: 28px 20px 24px 20px !important;
    border-radius: 24px !important;
  }
}


