/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.logo i {
    font-size: 1.8rem;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}
.hero-heading {
    text-align: center;
    font-size: 3rem; /* bigger for attention */
    font-weight: 900; /* extra bold */
    margin-bottom: 40px;
    color: #222;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
}

.hero-heading span {
    background: linear-gradient(90deg, #FF4D4D, #FF0000);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
}
.text-danger {
    color: #ff0000 !important; /* Bootstrap primary */
}
.text-primary {
    color: #00ff59 !important; /* Bootstrap primary */
}

.text-success {
    color: #28a745 !important; /* Bootstrap success green */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 500px;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    /* margin-bottom: 20px; */
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.urgency-banner i {
    animation: spin 2s linear infinite;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #ffd700;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    color: #4ade80;
    font-size: 1.2rem;
}

.pricing {
    margin-bottom: 30px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.payment-methods i {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
}

.secure-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.countdown-timer {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.timer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
}

.timer-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Workflow Title */
.workflow-title {
    text-align: center;
    margin-bottom: 30px;
}

.workflow-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Workflow Image */
.workflow-image {
    text-align: center;
    margin-bottom: 30px;
}

.workflow-img {
    max-width: 100%;
    height: auto;
    /* max-height: 400px; */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Workflow Preview */
.workflow-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.preview-dots span:first-child {
    background: #ff5f57;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:last-child {
    background: #28ca42;
}

.preview-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.workflow-nodes {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.node {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trigger-node {
    background: linear-gradient(45deg, #4ade80, #22c55e);
}

.action-node {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.output-node {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.node-connector {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: relative;
}

.node-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(255, 255, 255, 0.5);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

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

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

.testimonial {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-content p {
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1f2937;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

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

.problem-solution h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #1f2937;
}

.problem-text, .solution-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #4b5563;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-box {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 40px auto;
    max-width: 600px;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.old-way, .new-way {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.old-way {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 2px solid #fecaca;
}

.new-way {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #bbf7d0;
}

.old-way h3, .new-way h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.old-way p {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 20px;
}

.new-way p {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 20px;
}

.old-way ul, .new-way ul {
    list-style: none;
    text-align: left;
}

.old-way li, .new-way li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.old-way li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.new-way li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

/* What's Inside Section */
.whats-inside {
    padding: 80px 0;
    background: #fff;
}

.whats-inside h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* What's Inside Image Showcase */
.whats-inside-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
}

.whats-inside-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whats-inside-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Two-column layout for What's Inside */
.whats-inside-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .whats-inside-layout {
        grid-template-columns: 1fr;
    }
}

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

.category-item {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.category-item i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
    display: block;
}

.category-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

.rating {
    text-align: center;
    margin-top: 40px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

/* Workflow Gallery */
.workflow-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.workflow-gallery h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.workflow-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.workflow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.workflow-preview-small {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-nodes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-node {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.mini-connector {
    width: 15px;
    height: 2px;
    background: #cbd5e1;
    border-radius: 1px;
}

.workflow-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-final {
    margin-bottom: 40px;
}

.final-cta-btn {
    margin-bottom: 30px;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.guarantee i {
    color: #4ade80;
    margin-right: 6px;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.footer-logo i {
    font-size: 1.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-list {
        margin-bottom: 30px;
    }
    
    .feature-item {
        font-size: 1rem;
        justify-content: center;
    }
    
    .pricing {
        margin-bottom: 25px;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .timer-item {
        padding: 10px 15px;
        min-width: 80px;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .workflow-title h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .workflow-image {
        margin-bottom: 20px;
    }
    
    .workflow-img {
        max-height: 300px;
        border-radius: 10px;
    }
    
    .workflow-preview {
        padding: 20px;
        margin-top: 20px;
    }
    
    .workflow-nodes {
        justify-content: center;
        gap: 15px;
    }
    
    .node {
        padding: 12px 20px;
        min-width: 80px;
        font-size: 0.9rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .workflow-categories {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .old-way, .new-way {
        padding: 25px;
    }
    
    .category-item {
        padding: 20px;
    }
    
    .workflow-card {
        padding: 20px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #1f2937;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-list details {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.faq-list details:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Hide default marker */
.faq-list summary::-webkit-details-marker {
    display: none;
}

/* Chevron icon */
.faq-list summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(-45deg);
    margin-left: auto;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
    border-color: #3b82f6;
}

.faq-list details[open] summary {
    border-bottom: 1px solid #eef2f7;
}

.faq-list details p {
    padding: 16px 22px 22px 22px;
    color: #4b5563;
    line-height: 1.65;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

/* Accent bar on left when open */
.faq-list details[open] {
    border-left: 4px solid #3b82f6;
}

/* Subtle focus ring for accessibility */
.faq-list summary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

/* Dark mode: keep FAQ matching light theme colors */
@media (prefers-color-scheme: dark) {
    .faq {
        background: #ffffff;
    }
    .faq h2 {
        color: #1f2937;
    }
    .faq-list details {
        background: #ffffff;
        border-color: #e5e7eb;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }
    .faq-list summary {
        color: #111827;
    }
    .faq-list summary::after {
        border-color: #6b7280;
    }
    .faq-list details p {
        color: #4b5563;
        background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    }
}


/* How to Use Section */
.how-to-use {
    padding: 80px 0;
    background: #f9fafb;
}

.how-to-use h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
}

.how-to-use .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Image Showcase */
.how-to-use-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
}

.how-to-use-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-to-use-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.how-to-use-rated {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
}

.how-to-use-rated img {
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Two-column layout */
.how-to-use-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
    padding-bottom: 80px;
}

@media (max-width: 992px) {
    .how-to-use-layout {
        grid-template-columns: 1fr;
    }
}

/* Step items */
.how-to-use-steps .step-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.how-to-use-steps .step-item i {
    font-size: 1.5rem;
    color: #4f46e5;
    margin-right: 15px;
    margin-top: 3px;
}

.how-to-use-steps .step-item h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 5px;
}

.how-to-use-steps .step-item p {
    color: #6b7280;
    font-size: 1rem;
}
/* Center CTA button in How to Use section */
.how-to-use-cta {
    text-align: center;
    margin-top: 50px;
}

.how-to-use-cta .cta-button {
    background-color: #4f46e5;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.how-to-use-cta .cta-button i {
    margin-right: 10px;
}

.how-to-use-cta .cta-button:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}
.cta-action {
    text-align: center;
}

.cta-action-hero{
    text-align: left;
}
/* ... existing code ... */

/* Thank You Page Styles */
.thank-you-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: #4ade80;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card i {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4ade80;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.step-card p {
    opacity: 0.8;
    font-size: 0.9rem;
}
.step-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.step-card-link:hover {
    transform: translateY(-5px);
}

.support-section {
    margin-bottom: 50px;
}

.support-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.support-button, .home-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.support-button:hover, .home-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.back-home {
    margin-top: 50px;
}

/* Responsive styles for thank you page */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 100px 0 60px;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .next-steps {
        padding: 30px;
    }

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

    .step-card {
        padding: 20px;
    }
}

/* ... existing code ... */

/* Error Page Styles */
.error-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-icon {
    font-size: 5rem;
    color: #ff6b6b;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.error-message {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card i {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.step-card p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.support-section {
    margin-bottom: 50px;
    text-align: center;
}

.support-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.support-section p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 20px;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}


.back-home {
    margin-top: 50px;
}

/* Responsive styles for error page */
@media (max-width: 768px) {
    .error-hero {
        padding: 100px 0 60px;
    }

    .error-content h1 {
        font-size: 2rem;
    }

    .next-steps {
        padding: 30px;
    }

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

    .step-card {
        padding: 20px;
    }
}
.workflow-image-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.workflow-image-card:hover {
    transform: translateY(-5px);
}

.workflow-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.workflow-image-card h3 {
    padding: 15px;
    margin: 0;
    text-align: center;
    font-size: 1.1em;
    color: #333;
}
.workflow-showcase {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    font-family: "Inter", sans-serif;
  }
  
  .workflow-showcase .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Each card uses full background image */
  .workflow-card {
    position: relative;
    width: 500px;
    height: 400px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .workflow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 0;
  }
  
  .workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }
  
  .overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 1;
    text-align: left;
  }
  
  .overlay h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin: 0;
  }
  
  .highlight {
    color: #ff8c32;
  }
  
  .highlight-light {
    color: #ffffff;
    font-weight: 700;
  }
  
  /* CTA Section */

  
  .final-cta-btn {
    background-color: #ff8c32;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .final-cta-btn:hover {
    background-color: #ff7320;
  }
  

  
  /* Responsive Design */
  @media (max-width: 768px) {
    .workflow-card {
      width: 100%;
      height: 320px;
    }
  
    .overlay {
      bottom: 20px;
      left: 20px;
      right: 20px;
    }
  
    .overlay h3 {
      font-size: 22px;
    }
  }
  
  .offer-section {
    background: #fff;
    color: #222;
    font-family: "Inter", sans-serif;
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-intro {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  .features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .feature-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    width: 320px;
    padding: 24px;
    text-align: left;
    transition: all 0.3s ease;
  }
  
  .feature-box:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  
  .feature-box .icon {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .feature-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .feature-box ul li {
    margin: 6px 0;
    position: relative;
    padding-left: 22px;
  }
  
  .feature-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0bb783;
    font-weight: 700;
  }
  
  /* Pricing Section */
  .pricing-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 226px;
    flex-wrap: wrap;
  }
  
  .promo-image img {
    width: 550px;
    border-radius: 10px;
  }
  
  .price-box {
    background: #fff;
    width: 360px;
    text-align: center;
  }
  
  .total-value {
    font-size: 18px;
    color: #666;
  }
  
  .total-value .strike {
    text-decoration: line-through;
    color: #999;
  }
  
  .discounted {
    font-size: 24px;
    font-weight: 700;
    color: #000;
  }
  
  .discounted .green {
    color: #0bb783;
  }
  
  .note {
    color: #777;
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .buy-btn {
    background-color: #ff8c32;
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
  }
  
  .buy-btn:hover {
    background-color: #ff8c32;
  }
  
  .price-note {
    font-size: 14px;
    color: #555;
    margin: 16px 0;
  }
  
  .payment-row {
    text-align: center;
  }
  
  .payment-row p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
  }
  
  .payment-row img {
    width: 220px;
    margin-top: 6px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .features-row {
      flex-direction: column;
      align-items: center;
    }
  
    .pricing-row {
      flex-direction: column;
    }
  
    .price-box {
      width: 100%;
    }
  }
  

  .bottom-offer-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 124px;
    font-family: "Inter", sans-serif;
    z-index: 9999;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
    gap: 10px;
  }

  .offer-left {
    font-size: 1.2rem;
    font-weight: 600;
  }

 .new-price-banner{
        font-size: 1.4rem;
        font-weight: 700;
        color: #000;
 }



  .offer-center {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
  }

  .countdown {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2px;
  }

  .offer-right .grab-btn {
    background-color: #4b9b56;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .offer-right .grab-btn:hover {
    background-color: #ff8c32;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .bottom-offer-banner {
      flex-direction: column;
      text-align: center;
      padding: 12px;
    }

    .offer-left, .offer-center, .offer-right {
      width: 100%;
    }

    .offer-right .grab-btn {
      width: 100%;
    }
  }