
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f7f6f6;
    color: #2b2b2b;
}


.top-header {
    position: sticky;       /* Makes header stick */
    top: 0;                 /* Stick to top */
    z-index: 999;           /* Always above other content */
    background: #ffffff;    /* Background required for sticky */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Optional slight shadow */
}


.logo {
    width: 140px;
    margin-left: 100px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 70px;
}

.view-plans-btn {
    background: #ffffff;
    color: #b30000;
    border: 2px solid #b30000;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.view-plans-btn:hover {
    background: #b30000;
    color: #fff;
}

.dashboard-btn {
    background: #b30000;
    color: #ffffff;
    border: 2px solid #b30000;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
}

.dashboard-btn:hover {
    background: #8b0000;
    border-color: #8b0000;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(179, 0, 0, 0.2);
}

.login-btn {
    background: #ffffff;
    color: #b30000;
    border: 2px solid #b30000;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
}

.login-btn:hover {
    background: #b30000;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(179, 0, 0, 0.2);
}

.hero {
    text-align: center;
    padding: 60px 40px;
}

.ai-tag {
    background: #b30000;
    padding: 10px 22px;
    border-radius: 25px;
    color: white;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: #b30000;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

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

.subtitle {
    font-size: 20px;
    color: #444;
    margin-bottom: 50px;
}

.feature {
    display: flex;
    justify-content: center;   /* Centers all cards */
    align-items: flex-start;
    gap: 25px;                 /* Space between cards */
    flex-wrap: nowrap;         /* Keep all cards in one line */
}

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

.features li {
    display: flex;
    align-items: center;
    gap: 10px;                /* Space between icon and text */
    margin-bottom: 12px;      /* Vertical spacing like screenshot */
    font-size: 16px;
    color: #333;
}

.features i {
    font-size: 16px;
    color: #b30000;           /* Same red color as image */
}


.feature-card {
    width: 260px;
    padding: 35px 20px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.35s ease;   /* Smooth transition */
    cursor: pointer;
   border: 2px solid rgb(189, 189, 189);  
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);   /* Lift & slight zoom */
    box-shadow: 0 12px 30px rgba(179, 0, 0, 0.2); /* Stronger shadow with red tint */
    border-color: #b30000;
}

.icon-box {
    width: 65px;
    height: 65px;
    background: #b30000;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
}

.icon-box i {
    color: #fff;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #111;
}

.feature-card p {
    color: #666;
    font-size: 15px;
}

/* Section Background */
.how-it-works {
    background: #f7f6f6; 
    padding: 60px 0;
}

/* White Round Box */
.how-box {
    width: 83%;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    padding: 50px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    text-align: center;
      border: 2px solid rgb(189, 189, 189);
}

/* Title */
.how-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

/* Steps Row */
.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

/* Step Circle */
.step-circle {
    width: 80px;
    height: 80px;
    background: #b30000;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

/* Step Headings */
.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

/* Step Description */
.step p {
    font-size: 15px;
    color: #666;
}

/* Arrow */
.arrow {
    font-size: 28px;
    color: #cfcfcf;
    user-select: none;
    margin-bottom: 93px;
}

/* Responsive */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .arrow {
        transform: rotate(90deg);
    }
}


/* Section Wrapper */
.builder-section {
    padding: 50px 0;
    background: #f7f7f7;
    font-family: "Poppins", sans-serif;
}

/* Two-column container */
.builder-container {
    width: 85%;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* White card box */
.builder-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
       border: 2px solid rgb(189, 189, 189);
}


/* Title with icon */
.builder-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.builder-title h2 {
    font-size: 26px;
    font-weight: 700;
}

/* Red icon style */
.red-icon {
    width: 45px;
    height: 45px;
    background: #b30000;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-icon i {
    color: #fff;
    font-size: 20px;
}

/* Textarea */
.input-box {
    width: 94%;
    height: 230px;
    padding: 15px;
    border-radius: 16px;
    font-size: 16px;
    border: 2px solid #d62828;
    outline: none;
    resize: none;
}

/* Button */
.generate-btn {
    margin-top: 20px;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #b30000 0%, #8b0000 100%);
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(179, 0, 0, 0.3);
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 0, 0, 0.4);
    background: linear-gradient(135deg, #8b0000 0%, #6b0000 100%);
}

.generate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Preview Box */
.preview-box {
    width: 100%;
    height: 330px;
    border-radius: 16px;
    background: #f2f2f2;
    border: 2px solid #e0dfdf;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #8b8b8b;
}

.preview-box i {
    font-size: 55px;
    margin-bottom: 10px;
}


.pricing-section {
    text-align: center;
    font-family: "Poppins", sans-serif;
    padding: 50px 0;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.pricing-subtitle {
    margin-top: 5px;
    color: #777;
    font-size: 16px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.07);
    border: 2px solid rgb(189, 189, 189);
    position: relative;

    /* 🔥 Add these for bottom button */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

    /* 🔥 Push content so button goes down */
    flex-grow: 1;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    border: 2px solid #b30000;
    transition: 0.3s;

    /* 🔥 Always stick at bottom */
    margin-top: auto;
}


.pricing-card.featured {
    border-color: #d40000;
    box-shadow: 0 0 20px rgba(182, 66, 66, 0.814);
}

.pricing-card.current-plan {
    border-color: #10b981;
    border-width: 3px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdf4 100%);
}

.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #b30000;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.ribbon.current-plan-badge {
    background: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.ribbon.current-plan-badge i {
    font-size: 14px;
}

.current-plan-btn {
    background: #10b981 !important;
    color: #fff !important;
    border-color: #10b981 !important;
    cursor: pointer;
}

.current-plan-btn:hover {
    background: #059669 !important;
    border-color: #059669 !important;
    color: #fff !important;
}

.plan-icon {
    width: 55px;
    height: 55px;
    background: #ffe3e3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.plan-icon.red {
    background: #ffe3e3;
}

.plan-icon i {
    font-size: 22px;
    color: #b30000;
}

h3 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
}

.plan-desc {
    color: #777;
    font-size: 15px;
    margin-bottom: 20px;
}

.price {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-top: -4px;
    margin-bottom: 11px;
}

.price span {
    font-size: 16px;
    color: #777;
}


.features li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

.features i {
    color: #b30000;
    margin-right: 8px;
}

/* Buttons */


/* Outline Buttons */
.outline-btn {
    background: white;
    color: #b30000;
}

.outline-btn:hover {
    background: #b30000;
    color: #fff;
}

/* Filled Red Button */
.red-btn {
    background: #b30000;
    color: #fff;
    border-color: #b30000;
}

.red-btn:hover {
    background: #950000;
}

.pricing-footer {
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}
/* The preview area stays inside the existing box size */
/* Fix height inside builder box WITHOUT resizing the box */
.preview-frame-fixed {
    background: #fff;
    border: 12px solid #a90f0f;
    border-radius: 22px;
    height: 380px;  /* fixed height so builder-box stays same size */
    overflow-y: auto;
    padding: 0;
    margin-top: 15px;
}

/* Preview frame container for full-page previews */
.preview-frame-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.preview-frame-container iframe {
    border: none;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

/* Scroll area inside */
.preview-content {
    padding: 25px 20px;
    text-align: center;
}

/* Title */
.main-title {
    font-size: 26px;
    font-weight: 700;
    color: #a90f0f;
}

/* Based on text */
.based-on {
    color: #666;
    margin-top: -5px;
}

/* Button */
.start-btn {
    margin-top: 18px;
    background: #b51212;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
}
.feature-cards {
    background: #ffeaea;
    padding: 40px;
    border-radius: 16px;
    margin-top: 22px;
    margin-left: 45px;
    width: 336px;
}
/* Cards */
.feature-card {
    background: white;
    padding: 23px;
    border-radius: 16px;
    margin-top: 22px;
}

.feature-card h3 {
    font-size: 18px;
    color: #b51212;
}

.feature-card p {
    font-size: 14px;
    color: #555;
}

/* Scrollbar */
.preview-frame-fixed::-webkit-scrollbar {
    width: 6px;
}

.preview-frame-fixed::-webkit-scrollbar-thumb {
    background: #c0392b;
    border-radius: 10px;
}
/* WRAPPER: icon + title + export button */
.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

/* Left side: ICON + TEXT */
.left-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Red icon box */
.red-icon {
    background: #c62828;     /* matches your screenshot */
    color: white;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Title text */
.preview-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

/* Export button */
.export-btn {
    background: #fafafa;
    border: 1px solid #e2e2e2;
    padding: 12px 17px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s ease-in-out;
}

/* Export hover effect */
.export-btn:hover {
    background: #f0f0f0;
    border-color: #d5d5d5;
}

/* Icon inside export button */
.export-btn i {
    font-size: 14px;
}


/* =================== */
/* NEW ENHANCED SECTIONS */
/* =================== */

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.cta-primary, .cta-primary-large {
    background: #b30000;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #b30000;
    box-shadow: 0 4px 15px rgba(179, 0, 0, 0.3);
}

.cta-primary:hover, .cta-primary-large:hover {
    background: #8b0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 0, 0, 0.4);
}

.cta-secondary, .cta-secondary-large {
    background: #ffffff;
    color: #b30000;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #b30000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.cta-secondary:hover, .cta-secondary-large:hover {
    background: #b30000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 0, 0, 0.3);
}

.cta-primary-large {
    padding: 18px 40px;
    font-size: 20px;
}

.cta-secondary-large {
    padding: 18px 40px;
    font-size: 20px;
}

/* Trust/Statistics Section */
.trust-section {
    background: linear-gradient(135deg, #b30000 0%, #8b0000 100%);
    padding: 60px 40px;
    margin: 40px 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    color: #ffffff;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.trust-label {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
}

/* Categories Section */
.categories-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(179, 0, 0, 0.15);
    border-color: #b30000;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffe3e3 0%, #ffcccc 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, #b30000 0%, #8b0000 100%);
    transform: scale(1.1);
}

.category-icon i {
    font-size: 32px;
    color: #b30000;
    transition: color 0.3s ease;
}

.category-card:hover .category-icon i {
    color: #ffffff;
}

.category-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* AI Capabilities Section */
.ai-capabilities-section {
    padding: 80px 40px;
    background: linear-gradient(to bottom, #f7f6f6 0%, #ffffff 100%);
}

.ai-capabilities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ai-tool-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b30000 0%, #8b0000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ai-tool-card:hover::before {
    transform: scaleX(1);
}

.ai-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(179, 0, 0, 0.15);
    border-color: #b30000;
}

.ai-tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffe3e3 0%, #ffcccc 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ai-tool-icon i {
    font-size: 28px;
    color: #b30000;
}

.ai-tool-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.ai-tool-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ai-tool-link {
    color: #b30000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ai-tool-link:hover {
    gap: 12px;
    color: #8b0000;
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: 80px 40px;
    background: #f7f6f6;
}

.problem-solution-container {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-solution-item {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #b30000;
}

.problem-icon, .solution-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.solution-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b30000 0%, #8b0000 100%);
    margin: 25px auto;
    border-radius: 2px;
}

.problem-solution-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.problem-solution-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

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

.testimonial-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: #ffe3e3;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(179, 0, 0, 0.1);
    border-color: #b30000;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b30000 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 3px;
}

.author-role {
    font-size: 14px;
    color: #666;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #b30000 0%, #8b0000 100%);
    text-align: center;
    color: #ffffff;
}

.final-cta-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.final-cta-container p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.final-cta-section .cta-primary-large {
    background: #ffffff;
    color: #b30000;
    border-color: #ffffff;
}

.final-cta-section .cta-primary-large:hover {
    background: #f0f0f0;
    color: #8b0000;
}

.final-cta-section .cta-secondary-large {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.final-cta-section .cta-secondary-large:hover {
    background: #ffffff;
    color: #b30000;
}

/* =================== */
/* MOBILE RESPONSIVENESS */
/* =================== */
@media (max-width: 768px) {
  
  /* Top header adjustments */
  .top-header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .logo {
    width: 120px;
    margin-left: 0;
  }
  
  .view-plans-btn {
    margin-right: 0;
    padding: 8px 18px;
    font-size: 15px;
  }
  
  /* Hero section */
  .hero {
    padding: 40px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
    line-height: 1.3;
  }
  
  .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  /* Feature cards - stack vertically */
  .feature {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .feature-card {
    width: 90%;
    max-width: 300px;
  }
  
  /* How it works steps */
  .how-box {
    width: 85%;
    padding: 30px 15px;
  }
  
  .how-box h2 {
    font-size: 26px;
  }
  
  .steps {
    flex-direction: column;
    gap: 25px;
  }
  
  .arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  /* Builder section - stack columns */
  .builder-container {
    width: 95%;
    flex-direction: column;
  }
  
  .input-box {
    width: 90%;
    height: 180px;
  }
  
  /* Preview box adjustments */
  .preview-box,
  .preview-frame-fixed {
    height: auto;
    min-height: 300px;
  }
  
  .preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .export-btn {
    align-self: flex-start;
  }
  
  .feature-cards {
    margin-left: 0;
    width: 76%;
    padding: 25px;
  }
  
  /* Pricing section */
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 76%;
    max-width: 320px;
  }
  
  /* Adjust some font sizes */
  .pricing-title {
    font-size: 28px;
  }
  
  .builder-title h2 {
    font-size: 22px;
  }
  
  /* Fix any overflow */
  body {
    overflow-x: hidden;
  }
}

/* For very small phones (optional extra adjustments) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }
  
  .ai-tag {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .feature-card h3 {
    font-size: 18px;
  }
  
  .step-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-primary, .cta-secondary, .cta-primary-large, .cta-secondary-large {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .trust-number {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .categories-grid,
  .ai-tools-grid,
  .problem-solution-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .final-cta-container h2 {
    font-size: 32px;
  }
  
  .final-cta-container p {
    font-size: 18px;
  }
  
  .final-cta-buttons {
    flex-direction: column;
  }
  
  .final-cta-section .cta-primary-large,
  .final-cta-section .cta-secondary-large {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .trust-container {
    grid-template-columns: 1fr;
  }
  
  .trust-section,
  .categories-section,
  .ai-capabilities-section,
  .problem-solution-section,
  .testimonials-section,
  .final-cta-section {
    padding: 50px 20px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .final-cta-container h2 {
    font-size: 28px;
  }
}