/* ============================================
   YA DESPERTÉ - LANDING PAGE STYLES
   ============================================ */

/* CSS Variables */
:root {
    --yad-primary: #b85c4f;
    --yad-primary-dark: #a34d41;
    --yad-secondary: #c9b99a;
    --yad-accent: #c9a959;
    --yad-dark: #3d3d3d;
    --yad-mid: #5a5a5a;
    --yad-light: #8b8680;
    --yad-cream: #fdfcfa;
    --yad-cream-dark: #f5f0e8;
    --yad-border: #e8e4dc;
    
    --yad-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --yad-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --yad-container: 1200px;
    --yad-radius: 12px;
    --yad-radius-lg: 24px;
    --yad-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --yad-shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    --yad-shadow-primary: 0 20px 40px -10px rgba(184, 92, 79, 0.25);
}

/* Reset & Base */
.yad-landing {
    font-family: var(--yad-font-sans);
    color: var(--yad-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.yad-landing * {
    box-sizing: border-box;
}

.yad-landing h1,
.yad-landing h2,
.yad-landing h3,
.yad-landing h4,
.yad-landing h5,
.yad-landing h6 {
    font-family: var(--yad-font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.yad-landing p {
    margin: 0 0 1rem;
}

.yad-landing a {
    color: inherit;
    text-decoration: none;
}

.yad-landing img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.yad-container {
    max-width: var(--yad-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.yad-text-primary {
    color: var(--yad-primary);
}

/* Buttons */
.yad-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--yad-font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--yad-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yad-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.yad-btn-primary {
    background: var(--yad-primary);
    color: white;
    box-shadow: var(--yad-shadow-primary);
}

.yad-btn-primary:hover {
    background: var(--yad-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(184, 92, 79, 0.35);
}

.yad-btn-outline {
    background: transparent;
    color: var(--yad-mid);
    border: 1px solid var(--yad-secondary);
}

.yad-btn-outline:hover {
    background: rgba(201, 185, 154, 0.1);
    border-color: var(--yad-primary);
    color: var(--yad-primary);
}

.yad-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.yad-btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Navigation */
.yad-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.yad-nav.scrolled {
    border-bottom-color: var(--yad-border);
    box-shadow: var(--yad-shadow);
}

.yad-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.yad-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--yad-font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--yad-dark);
}

.yad-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--yad-primary);
}

.yad-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.yad-nav-links a {
    color: var(--yad-mid);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.yad-nav-links a:hover {
    color: var(--yad-primary);
}

.yad-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.yad-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    overflow: hidden;
}

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

.yad-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.yad-blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(184, 92, 79, 0.3), transparent);
    top: -10%;
    right: -5%;
}

.yad-blob-2 {
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, rgba(201, 185, 154, 0.4), transparent);
    bottom: -15%;
    left: -10%;
}

.yad-blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(201, 169, 89, 0.2), transparent);
    top: 30%;
    right: 25%;
}

.yad-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.yad-hero-content {
    max-width: 600px;
}

.yad-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(184, 92, 79, 0.1);
    color: var(--yad-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.yad-badge-icon {
    width: 1rem;
    height: 1rem;
}

.yad-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.yad-hero-title span {
    display: block;
}

.yad-hero-quote {
    font-family: var(--yad-font-serif);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--yad-mid);
    margin-bottom: 1.5rem;
}

.yad-hero-desc {
    font-size: 1.125rem;
    color: var(--yad-mid);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.yad-hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.yad-hero-checks span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yad-mid);
    font-size: 0.9375rem;
}

.yad-hero-checks svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--yad-primary);
}

.yad-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.yad-hero-social {
    font-size: 0.875rem;
    color: var(--yad-light);
}

/* Hero Book */
.yad-hero-book {
    position: relative;
    display: flex;
    justify-content: center;
}

.yad-book-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(184, 92, 79, 0.2), rgba(201, 169, 89, 0.2));
    border-radius: 24px;
    filter: blur(30px);
}

.yad-book {
    position: relative;
    width: 320px;
    height: 460px;
    background: linear-gradient(135deg, #f5f0e8, #ede8e0);
    border-radius: 4px 16px 16px 4px;
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 10px 20px -5px rgba(0, 0, 0, 0.1),
        inset -2px 0 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.yad-book-spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 12px;
    background: linear-gradient(90deg, #d4cfc7, #c9b99a);
    border-radius: 4px 0 0 4px;
}

.yad-book-content {
    padding: 2.5rem 1.5rem 2rem 2rem;
}

.yad-book-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--yad-primary), var(--yad-accent));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.yad-book-title {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.yad-book-title span {
    display: block;
    margin-top: 0.25rem;
}

.yad-book-quote {
    font-family: var(--yad-font-serif);
    font-style: italic;
    font-size: 0.875rem;
    color: var(--yad-mid);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.yad-book-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.yad-book-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.yad-book-dots span:nth-child(1) { background: var(--yad-accent); }
.yad-book-dots span:nth-child(2) { background: rgba(184, 92, 79, 0.6); }
.yad-book-dots span:nth-child(3) { background: var(--yad-secondary); }

.yad-book-footer {
    font-size: 0.75rem;
    color: var(--yad-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.yad-book-circle {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(184, 92, 79, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yad-book-circle-inner {
    width: 28px;
    height: 28px;
    background: rgba(184, 92, 79, 0.2);
    border-radius: 50%;
}

.yad-book-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: var(--yad-shadow-lg);
}

.yad-book-badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(184, 92, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--yad-primary);
}

.yad-book-badge-label {
    font-size: 0.75rem;
    color: var(--yad-light);
}

.yad-book-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--yad-dark);
}

/* Section Base */
.yad-section {
    padding: 5rem 0;
    position: relative;
}

.yad-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.yad-section-label {
    display: inline-block;
    color: var(--yad-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.yad-section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.yad-section-desc {
    font-size: 1.125rem;
    color: var(--yad-mid);
    line-height: 1.7;
}

/* Problem Section */
.yad-problem {
    background: white;
}

.yad-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.yad-problem-card {
    background: var(--yad-cream);
    border: 1px solid var(--yad-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.yad-problem-card:hover {
    border-color: rgba(184, 92, 79, 0.3);
    box-shadow: var(--yad-shadow-lg);
}

.yad-problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(184, 92, 79, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.yad-problem-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yad-primary);
}

.yad-problem-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.yad-problem-card p {
    font-size: 0.9375rem;
    color: var(--yad-mid);
    line-height: 1.6;
    margin: 0;
}

.yad-problem-quote {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(184, 92, 79, 0.05), rgba(201, 185, 154, 0.05));
    border: 1px solid rgba(184, 92, 79, 0.1);
    border-radius: 16px;
}

.yad-problem-quote p {
    font-family: var(--yad-font-serif);
    font-size: 1.375rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.yad-problem-quote-sub {
    font-size: 1rem;
    color: var(--yad-mid);
}

/* Solution Section */
.yad-solution {
    background: var(--yad-cream);
    overflow: hidden;
}

.yad-solution-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.yad-blob-s1 {
    width: 400px;
    height: 400px;
    background: rgba(201, 185, 154, 0.2);
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.yad-blob-s2 {
    width: 300px;
    height: 300px;
    background: rgba(184, 92, 79, 0.1);
    bottom: 0;
    right: 0;
    transform: translate(30%, 30%);
}

.yad-promise-box {
    background: linear-gradient(135deg, var(--yad-primary), var(--yad-primary-dark));
    border-radius: var(--yad-radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--yad-shadow-primary);
    color: white;
}

.yad-promise-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.yad-promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.yad-promise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.yad-promise-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.yad-promise-item span {
    font-size: 0.9375rem;
    opacity: 0.95;
}

.yad-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.yad-benefit-card {
    background: white;
    border: 1px solid var(--yad-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.yad-benefit-card:hover {
    border-color: rgba(184, 92, 79, 0.3);
    box-shadow: var(--yad-shadow-lg);
}

.yad-benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(184, 92, 79, 0.1), rgba(201, 169, 89, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.yad-benefit-card:hover .yad-benefit-icon {
    transform: scale(1.1);
}

.yad-benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yad-primary);
}

.yad-benefit-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.yad-benefit-card p {
    font-size: 0.875rem;
    color: var(--yad-mid);
    line-height: 1.6;
    margin: 0;
}

.yad-solution-quote {
    font-family: var(--yad-font-serif);
    font-size: 1.75rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Modules Section */
.yad-modules {
    background: white;
}

.yad-modules-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.yad-module-card {
    position: relative;
    background: var(--yad-cream);
    border: 1px solid var(--yad-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.yad-module-card:hover {
    border-color: rgba(184, 92, 79, 0.3);
}

.yad-module-gradient {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yad-module-card:hover .yad-module-gradient {
    opacity: 1;
}

.yad-module-gradient-1 { background: linear-gradient(90deg, rgba(184, 92, 79, 0.15), rgba(184, 92, 79, 0.05)); }
.yad-module-gradient-2 { background: linear-gradient(90deg, rgba(201, 169, 89, 0.15), rgba(201, 169, 89, 0.05)); }
.yad-module-gradient-3 { background: linear-gradient(90deg, rgba(201, 185, 154, 0.2), rgba(201, 185, 154, 0.1)); }
.yad-module-gradient-4 { background: linear-gradient(90deg, rgba(184, 92, 79, 0.12), rgba(201, 169, 89, 0.08)); }
.yad-module-gradient-5 { background: linear-gradient(90deg, rgba(201, 169, 89, 0.15), rgba(184, 92, 79, 0.08)); }

.yad-module-inner {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
}

.yad-module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.yad-module-number {
    font-family: var(--yad-font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(184, 92, 79, 0.2);
    line-height: 1;
}

.yad-module-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--yad-shadow);
}

.yad-module-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yad-primary);
}

.yad-module-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.yad-module-subtitle {
    font-size: 0.875rem;
    color: var(--yad-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.yad-module-desc {
    font-size: 0.9375rem;
    color: var(--yad-mid);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.yad-module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.yad-module-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--yad-mid);
    background: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    border: 1px solid var(--yad-border);
}

.yad-module-tags svg {
    width: 14px;
    height: 14px;
    color: var(--yad-primary);
}

.yad-bonus {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(184, 92, 79, 0.05), rgba(201, 169, 89, 0.05));
    border: 1px solid rgba(184, 92, 79, 0.1);
    border-radius: 16px;
}

.yad-bonus-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--yad-shadow);
}

.yad-bonus-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.yad-bonus-content p {
    font-size: 0.9375rem;
    color: var(--yad-mid);
    margin: 0;
}

/* Testimonials Section */
.yad-testimonials {
    background: var(--yad-cream);
    overflow: hidden;
}

.yad-testimonials-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 185, 154, 0.15), transparent 60%);
    pointer-events: none;
}

.yad-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.yad-testimonial-card {
    background: white;
    border: 1px solid var(--yad-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.yad-testimonial-card:hover {
    border-color: rgba(184, 92, 79, 0.3);
    box-shadow: var(--yad-shadow-lg);
}

.yad-testimonial-quote-icon {
    width: 40px;
    height: 40px;
    background: rgba(184, 92, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.yad-testimonial-quote-icon svg {
    width: 20px;
    height: 20px;
    color: var(--yad-primary);
}

.yad-testimonial-stars {
    color: var(--yad-accent);
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.yad-testimonial-card blockquote {
    font-size: 0.9375rem;
    color: var(--yad-dark);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.yad-testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid var(--yad-border);
}

.yad-testimonial-name {
    font-weight: 600;
    color: var(--yad-dark);
    margin: 0;
}

.yad-testimonial-detail {
    font-size: 0.8125rem;
    color: var(--yad-light);
    margin: 0;
}

.yad-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.yad-stat-number {
    display: block;
    font-family: var(--yad-font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yad-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.yad-stat-label {
    font-size: 0.875rem;
    color: var(--yad-mid);
}

/* Pricing Section */
.yad-pricing {
    background: white;
    overflow: hidden;
}

.yad-pricing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.yad-blob-p1 {
    width: 500px;
    height: 500px;
    background: rgba(184, 92, 79, 0.1);
    top: -20%;
    right: -10%;
}

.yad-blob-p2 {
    width: 400px;
    height: 400px;
    background: rgba(201, 169, 89, 0.1);
    bottom: -20%;
    left: -10%;
}

.yad-pricing-card {
    background: linear-gradient(135deg, var(--yad-cream), white);
    border: 2px solid rgba(184, 92, 79, 0.2);
    border-radius: var(--yad-radius-lg);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--yad-shadow-primary);
}

.yad-pricing-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.yad-pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(184, 92, 79, 0.1);
    color: var(--yad-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.yad-pricing-badge svg {
    width: 1rem;
    height: 1rem;
}

.yad-pricing-original {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.yad-pricing-old {
    font-size: 1.5rem;
    color: var(--yad-light);
    text-decoration: line-through;
}

.yad-pricing-discount {
    background: var(--yad-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.yad-pricing-current {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.yad-pricing-amount {
    font-family: var(--yad-font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--yad-dark);
    line-height: 1;
}

.yad-pricing-currency {
    font-size: 1.25rem;
    color: var(--yad-mid);
}

.yad-pricing-note {
    font-size: 0.875rem;
    color: var(--yad-light);
    margin-bottom: 1.5rem;
}

.yad-pricing-payment {
    font-size: 0.8125rem;
    color: var(--yad-light);
    margin-top: 1rem;
}

.yad-pricing-guarantee-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--yad-mid);
    margin-top: 1rem;
}

.yad-pricing-guarantee-mini svg {
    width: 1rem;
    height: 1rem;
    color: var(--yad-primary);
}

.yad-pricing-right h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.yad-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yad-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--yad-mid);
}

.yad-pricing-features svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--yad-primary);
}

.yad-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.yad-guarantee {
    text-align: center;
    padding: 1.5rem;
    background: var(--yad-cream);
    border: 1px solid var(--yad-border);
    border-radius: 16px;
}

.yad-guarantee-icon {
    width: 48px;
    height: 48px;
    background: rgba(184, 92, 79, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.yad-guarantee-icon svg {
    width: 24px;
    height: 24px;
    color: var(--yad-primary);
}

.yad-guarantee h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.yad-guarantee p {
    font-size: 0.875rem;
    color: var(--yad-mid);
    margin: 0;
}

.yad-pricing-urgency {
    text-align: center;
    color: var(--yad-mid);
}

.yad-pricing-urgency strong {
    color: var(--yad-primary);
}

/* FAQ Section */
.yad-faq {
    background: var(--yad-cream);
}

.yad-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.yad-faq-item {
    background: white;
    border: 1px solid var(--yad-border);
    border-radius: var(--yad-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.yad-faq-item:hover {
    border-color: rgba(184, 92, 79, 0.3);
}

.yad-faq-item[open] {
    border-color: rgba(184, 92, 79, 0.3);
}

.yad-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    font-weight: 600;
    color: var(--yad-dark);
    cursor: pointer;
    list-style: none;
}

.yad-faq-item summary::-webkit-details-marker {
    display: none;
}

.yad-faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--yad-primary);
    transition: transform 0.3s ease;
}

.yad-faq-item[open] summary::after {
    content: '−';
}

.yad-faq-content {
    padding: 0 1.25rem 1.25rem;
}

.yad-faq-content p {
    font-size: 0.9375rem;
    color: var(--yad-mid);
    line-height: 1.7;
    margin: 0;
}

.yad-faq-contact {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--yad-border);
    border-radius: 16px;
}

.yad-faq-contact p {
    color: var(--yad-mid);
    margin-bottom: 0.5rem;
}

.yad-faq-contact a {
    color: var(--yad-primary);
    font-weight: 600;
}

.yad-faq-contact a:hover {
    text-decoration: underline;
}

/* Footer */
.yad-footer {
    background: var(--yad-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.yad-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.yad-footer-brand .yad-logo {
    color: white;
    margin-bottom: 1rem;
}

.yad-footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.yad-footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.yad-footer-links h4,
.yad-footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.yad-footer-links ul,
.yad-footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yad-footer-links li,
.yad-footer-contact li {
    margin-bottom: 0.5rem;
}

.yad-footer-links a,
.yad-footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.yad-footer-links a:hover,
.yad-footer-contact a:hover {
    color: var(--yad-primary);
}

.yad-footer-contact svg {
    width: 1rem;
    height: 1rem;
}

.yad-footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.yad-footer-disclaimer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.yad-footer-made {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.yad-footer-made svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--yad-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .yad-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .yad-hero-content {
        max-width: 100%;
    }
    
    .yad-hero-checks,
    .yad-hero-buttons {
        justify-content: center;
    }
    
    .yad-hero-book {
        order: -1;
    }
    
    .yad-book {
        width: 260px;
        height: 380px;
    }
    
    .yad-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yad-pricing-inner {
        grid-template-columns: 1fr;
    }
    
    .yad-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .yad-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-top: 1px solid var(--yad-border);
        box-shadow: var(--yad-shadow-lg);
    }
    
    .yad-nav-links.active {
        display: flex;
    }
    
    .yad-nav-toggle {
        display: block;
    }
    
    .yad-problem-grid,
    .yad-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .yad-promise-grid {
        grid-template-columns: 1fr;
    }
    
    .yad-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .yad-module-inner {
        flex-direction: column;
    }
    
    .yad-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yad-guarantees {
        grid-template-columns: 1fr;
    }
    
    .yad-pricing-card {
        padding: 1.5rem;
    }
    
    .yad-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .yad-footer-disclaimer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .yad-hero-title {
        font-size: 2rem;
    }
    
    .yad-book {
        width: 220px;
        height: 320px;
    }
    
    .yad-book-content {
        padding: 1.5rem 1rem 1rem 1.25rem;
    }
    
    .yad-book-title {
        font-size: 1.5rem;
    }
    
    .yad-pricing-amount {
        font-size: 3rem;
    }
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 5rem;
}
