/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

:root {
    --primary-soft: #6366f1;
    --primary-light: #8b5cf6;
    --accent-warm: #f59e0b;
    --accent-heart: #ef4444;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-cream: #fefdf8;
    --bg-soft: #f8fafc;
    --bg-warm: #fef3e2;
    --border-light: #e5e7eb;
    --success: #10b981;
    --gradient-magic: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-sunrise: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-warm: 0 8px 30px rgba(245, 158, 11, 0.15);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   FLOATING DECORATIVE ELEMENTS
   ======================================== */

.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.heart {
    position: absolute;
    font-size: 20px;
    color: var(--accent-heart);
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.1; 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.3; 
    }
}

/* ========================================
   COMMON COMPONENTS
   ======================================== */

.soft-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.soft-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-magic);
    border-radius: 24px 24px 0 0;
}

.soft-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-magic {
    background: var(--gradient-magic);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-magic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-magic:hover::before {
    left: 100%;
}

.btn-magic:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
}

.btn-warm {
    background: var(--gradient-warm);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-warm);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-warm:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(245, 87, 108, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(10px) translateY(10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: heroFadeIn 1.2s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-bubble:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-warm);
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

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

/* ========================================
   AUTHOR SECTION
   ======================================== */

.author-section {
    padding: 8rem 0;
    background: var(--bg-soft);
    position: relative;
}

.author-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--gradient-dark), transparent);
    opacity: 0.1;
}

.author-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.author-image-container {
    text-align: center;
    position: relative;
}

.author-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--gradient-magic);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    margin: 0 auto;
    box-shadow: var(--shadow-glow);
    position: relative;
    animation: authorPulse 3s ease-in-out infinite;
}

@keyframes authorPulse {
    0%, 100% { 
        box-shadow: var(--shadow-glow); 
    }
    50% { 
        box-shadow: 0 0 60px rgba(99, 102, 241, 0.3); 
    }
}

.author-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-warm);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.author-content {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.author-title {
    font-size: 2.5rem;
    color: var(--primary-soft);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.author-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    font-style: italic;
}

.author-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--accent-warm);
    opacity: 0.6;
}

.author-points {
    list-style: none;
}

.author-point {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.author-point::before {
    content: '✨';
    margin-right: 1rem;
    font-size: 1.5rem;
}

.author-conclusion {
    margin-top: 2rem;
    font-weight: 600;
    color: var(--primary-soft);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="15" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="15" cy="5" r="0.2" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: twinkle 10s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.problem-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--accent-warm);
    position: relative;
    z-index: 2;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.timeline-clock {
    background: var(--accent-heart);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.3rem;
    min-width: 100px;
    text-align: center;
    margin-right: 2rem;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.timeline-text {
    flex: 1;
    font-size: 1.2rem;
    line-height: 1.6;
}

.timeline-emoji {
    font-size: 2rem;
    margin-left: 1.5rem;
}

.problem-conclusion {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 30px;
    border: 2px solid var(--success);
    position: relative;
    z-index: 2;
}

.problem-conclusion h3 {
    font-size: 2rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.problem-conclusion p {
    font-size: 1.3rem;
    line-height: 1.6;
}

/* ========================================
   MECHANICS SECTION
   ======================================== */

.mechanics-section {
    padding: 8rem 0;
    background: var(--bg-warm);
    position: relative;
}

.mechanics-title {
    text-align: center;
    font-size: 3.5rem;
    color: var(--primary-soft);
    margin-bottom: 4rem;
    font-weight: 600;
}

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

.step-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 3px solid transparent;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-warm);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-magic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--accent-warm);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover .step-number::before {
    opacity: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */

.partners-section {
    padding: 8rem 0;
    background: var(--bg-soft);
    position: relative;
}

.partners-title {
    text-align: center;
    font-size: 3.5rem;
    color: var(--primary-soft);
    margin-bottom: 4rem;
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.partner-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-warm);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.partner-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-soft);
}

.partner-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.partner-company {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.partner-amount {
    background: var(--gradient-magic);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.partner-quote {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.6;
    border-left: 3px solid var(--accent-warm);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

/* ========================================
   STORIES SECTION
   ======================================== */

.stories-section {
    padding: 8rem 0;
    background: white;
}

.stories-title {
    text-align: center;
    font-size: 3.5rem;
    color: var(--primary-soft);
    margin-bottom: 4rem;
    font-weight: 600;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-glow);
    overflow: hidden;
    border: 3px solid var(--accent-warm);
}

.story-header {
    background: var(--gradient-magic);
    color: white;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.story-header::before {
    content: '💝';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
}

.story-family {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.story-info {
    opacity: 0.9;
    font-size: 1.1rem;
}

.story-content {
    padding: 3rem;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.period-card {
    padding: 2.5rem;
    border-radius: 25px;
    position: relative;
}

.before-card {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-left: 5px solid var(--accent-heart);
}

.after-card {
    background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
    border-left: 5px solid var(--success);
}

.period-label {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-card .period-label {
    color: var(--accent-heart);
}

.after-card .period-label {
    color: var(--success);
}

.period-text {
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 8rem 0;
    background: var(--bg-warm);
}

.faq-title {
    text-align: center;
    font-size: 3.5rem;
    color: var(--primary-soft);
    margin-bottom: 4rem;
    font-weight: 600;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border-left: 5px solid var(--accent-warm);
}

.faq-question {
    padding: 2rem;
    background: var(--gradient-magic);
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gradient-warm);
}

.faq-answer {
    padding: 2rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.1rem;
    display: none;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ========================================
   URGENCY SECTION
   ======================================== */

.urgency-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.urgency-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.counter-bubble {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.counter-bubble:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.counter-label {
    margin-top: 0.5rem;
    opacity: 0.9;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.urgency-call {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.urgency-call h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.urgency-call p {
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 8rem 0;
    background: white;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--primary-soft);
    margin-bottom: 4rem;
    font-weight: 600;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-magic);
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-warm);
}

.plan-card.featured {
    border-color: var(--accent-warm);
    transform: scale(1.05);
    background: linear-gradient(135deg, #fefdf8, #fef3e2);
}

.plan-card.featured::before {
    background: var(--gradient-warm);
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.plan-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-soft);
    margin-bottom: 0.5rem;
}

.plan-period {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.plan-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1rem;
}

.plan-feature::before {
    content: '✅';
    margin-right: 1rem;
    font-size: 1.2rem;
}

.main-cta {
    font-size: 1.5rem;
    padding: 2rem 4rem;
    margin-top: 3rem;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-guarantee {
    margin-top: 2rem;
    color: var(--text-gray);
    font-size: 1rem;
    font-style: italic;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */

.guarantee-section {
    padding: 6rem 0;
    background: var(--bg-soft);
}

.guarantee-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--shadow-glow);
    text-align: center;
    border: 3px solid var(--success);
}

.guarantee-title {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 2rem;
    font-weight: 600;
}

.guarantee-avatar {
    width: 150px;
    height: 150px;
    background: var(--gradient-magic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-soft);
}

.guarantee-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.guarantee-signature {
    font-size: 2rem;
    color: var(--success);
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-warm);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .author-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .plans-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: 1fr;
    }

    .author-content {
        padding: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-clock {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .timeline-emoji {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.bounce-in {
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}