/* ===================================
   Yatra Pricing Page - Travel Themed Colors
   =================================== */

/* Base Styles */
.pricing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #fff;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
    color: white;
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.hero-title .highlight {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #fbbf24;
    margin-top: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: #ffffff;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.problem-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.problem-column h2,
.solution-column h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e3a8a;
}

.pain-points,
.benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pain-point,
.benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pain-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
    color: #ef4444;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
    color: #10b981;
}

.pain-content h3,
.benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e3a8a;
}

.pain-content p,
.benefit-content p {
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

/* Plan Top and Bottom Buttons */
.plan-top-button,
.plan-bottom-button {
    margin: 20px 0;
    text-align: center;
}

.plan-top-button .ct-button,
.plan-bottom-button .ct-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
    background: #ffffff;
    color: #3b82f6;
    display: inline-block;
}

.plan-top-button .ct-button:hover,
.plan-bottom-button .ct-button:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.plan-top-button .ct-button.primary,
.plan-bottom-button .ct-button.primary {
    background: #3b82f6;
    color: #ffffff;
}

.plan-top-button .ct-button.primary:hover,
.plan-bottom-button .ct-button.primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Featured plan button styling */
.pricing-plan.featured .plan-top-button .ct-button,
.pricing-plan.featured .plan-bottom-button .ct-button {
    background: #ffffff;
    color: #3b82f6;
    border-color: #ffffff;
}

.pricing-plan.featured .plan-top-button .ct-button:hover,
.pricing-plan.featured .plan-bottom-button .ct-button:hover {
    background: #f8fafc;
    color: #1e40af;
    border-color: #f8fafc;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-plan {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
    border-color: #3b82f6;
}

.pricing-plan.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 60px rgba(30, 58, 138, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: inherit;
}

.plan-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 16px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 8px;
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-plan.featured .original-price {
    color: rgba(255, 255, 255, 0.7);
}

.discount-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.pricing-plan.featured .discount-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.plan-features {
    margin-bottom: 32px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    position: relative;
    padding-left: 24px;
    color: #374151;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.pricing-plan.featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.pricing-plan.featured .plan-features li::before {
    color: #fbbf24;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li strong {
    color: #3b82f6;
    font-weight: 600;
}

.pricing-plan.featured .plan-features li strong {
    color: #fbbf24;
}

/* Style for UI Customization Support with cross/checkmark */
.plan-features li:contains("UI Customization Support ✗") {
    color: #ef4444;
}

.plan-features li:contains("UI Customization Support ✓") {
    color: #10b981;
}

.pricing-plan.featured .plan-features li:contains("UI Customization Support ✗") {
    color: rgba(239, 68, 68, 0.8);
}

.pricing-plan.featured .plan-features li:contains("UI Customization Support ✓") {
    color: #fbbf24;
}

.plan-action {
    margin-top: auto;
}

.plan-note {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 12px;
}

.pricing-plan.featured .plan-note {
    color: #fbbf24;
    font-weight: 600;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #374151;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    font-size: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.author-info h4 {
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1e3a8a;
}

.author-info p {
    font-size: 0.875rem;
    color: #475569;
    margin: 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    padding: 8px 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.badge-icon {
    font-size: 1.25rem;
}

/* Feature Comparison Section */
.feature-comparison-section {
    padding: 80px 0;
    background: white;
}

/* Feature Table Buy Buttons */
.buy-buttons-top,
.buy-buttons-bottom {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.buy-buttons-top .feature-name,
.buy-buttons-bottom .feature-name {
    background: #f1f5f9;
    color: #1e3a8a;
    font-weight: 700;
    text-align: center;
}

.buy-buttons-top .ct-button,
.buy-buttons-bottom .ct-button {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
    background: #ffffff;
    color: #3b82f6;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.buy-buttons-top .ct-button:hover,
.buy-buttons-bottom .ct-button:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.buy-buttons-top .ct-button.primary,
.buy-buttons-bottom .ct-button.primary {
    background: #3b82f6;
    color: #ffffff;
}

.buy-buttons-top .ct-button.primary:hover,
.buy-buttons-bottom .ct-button.primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.buy-buttons-top .feature-essential,
.buy-buttons-top .feature-growth,
.buy-buttons-top .feature-master,
.buy-buttons-bottom .feature-essential,
.buy-buttons-bottom .feature-growth,
.buy-buttons-bottom .feature-master {
    background: #ffffff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row.header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    font-weight: 600;
}

.feature-name,
.feature-essential,
.feature-growth,
.feature-master {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
}

/* Header row column styling - white text on blue background */
.feature-row.header .feature-essential,
.feature-row.header .feature-growth,
.feature-row.header .feature-master {
    color: #ffffff;
    font-weight: 600;
}

/* Regular feature rows - green for checkmarks */
.feature-essential,
.feature-growth,
.feature-master {
    color: #10b981;
    font-weight: 600;
}

.feature-essential:contains("✗"),
.feature-growth:contains("✗") {
    color: #ef4444;
}

/* Style for UI Customization row specifically */
.feature-row:has(.feature-name:contains("UI Customization")) .feature-essential,
.feature-row:has(.feature-name:contains("UI Customization")) .feature-growth {
    color: #ef4444;
}

.feature-row:has(.feature-name:contains("UI Customization")) .feature-master {
    color: #10b981;
}

.feature-name {
    justify-content: flex-start;
    font-weight: 600;
    background: #f8fafc;
    color: #1e3a8a;
}

.feature-growth {
    background: rgba(59, 130, 246, 0.05);
    font-weight: 600;
    color: #1e40af;
}

/* Risk Reversal Section */
.risk-reversal-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.risk-reversal-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="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    pointer-events: none;
}

.risk-reversal-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.guarantee {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.guarantee h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.guarantee p {
    opacity: 0.9;
    margin: 0;
}

/* Lifetime Section */
.lifetime-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.lifetime-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e3a8a;
}

.lifetime-content > p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.roi-calculator {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.roi-calculator p {
    margin: 0;
    font-weight: 600;
}

.lifetime-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.lifetime-plan {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.lifetime-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.lifetime-plan.featured {
    border: 2px solid #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.lifetime-plan.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.lifetime-plan h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e3a8a;
}

.lifetime-price {
    margin-bottom: 16px;
}

.lifetime-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.lifetime-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.lifetime-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.lifetime-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.lifetime-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.875rem;
    position: relative;
    padding-left: 24px;
    color: #374151;
}

.lifetime-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

.lifetime-features li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.faq-item:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: block;
    margin-bottom: 0;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #1e3a8a;
    transition: color 0.3s ease;
}

.faq-toggle {
    display: none;
}

.faq-answer {
    padding: 20px 0 0 0;
    overflow: visible;
}

.faq-answer p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e3a8a;
}

.faq-item p {
    color: #475569;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-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="grain3" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain3)"/></svg>');
    pointer-events: none;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.final-cta-content > p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.25rem;
}

/* Button Styles */
.ct-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.ct-button:hover::before {
    left: 100%;
}

.ct-button.primary {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    border-color: #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.ct-button.primary:hover {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.ct-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.ct-button.secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.ct-button.large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .highlight {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .problem-solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    
    .pricing-plan.featured {
        transform: none;
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-8px);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-row.header {
        display: none;
    }
    
    .feature-name {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        color: white;
        font-weight: 600;
        justify-content: center;
    }
    
    .guarantees {
        grid-template-columns: 1fr;
    }
    
    .lifetime-plans {
        grid-template-columns: 1fr;
    }
    
    .lifetime-plan.featured {
        transform: none;
    }
    
    .lifetime-plan.featured:hover {
        transform: translateY(-8px);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-title .highlight {
        font-size: 1.6rem;
        margin-top: 8px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .ct-button.large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .pricing-plan,
    .lifetime-plan {
        padding: 30px 20px;
    }
    
    .plan-price .amount {
        font-size: 3rem;
    }
    
    .lifetime-price .amount {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .final-cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .final-cta-content > p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}
