:root {
    --primary-blue: #4472C4;
    --dark-blue: #365AA0;
    --light-blue: #E7F3FF;
    --accent-green: #70AD47;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2C3E50;
    --text-gray: #6C757D;
    --border-color: #E9ECEF;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}


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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(68, 114, 196, 0.95);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--accent-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #5A8F36;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(112, 173, 71, 0.3);
}



/* =========================================  NAV TOGGLE BUTTON   ===============================  */

nav button {
    display: none;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #5A8F36;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(112, 173, 71, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0.8;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.3s both;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* border-radius: 0 0 20px 20px; */
}


.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.mockup-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-content {
    padding: 2rem;
    color: var(--dark-gray);
}

.metric-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.metric-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.metric-card .amount {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Trust Section */
.trust {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.trust-stat {
    padding: 2rem;
}

.trust-stat .number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    display: block;
}

.trust-stat .label {
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background: var(--light-gray);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.problem-list li::before {
    content: "❌";
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.problem-visual {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.chaos-chart {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #ff6b6b, #ffa726, #ffeb3b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
}

/* Solution Overview */
.solution-overview {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.solution-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.solution-card:hover {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.solution-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.feature-list li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
}

/* How it Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

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

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 2rem;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.step-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.step-card::after {
    content: "→";
    position: absolute;
    top: 40px;
    right: -1rem;
    font-size: 2rem;
    color: var(--accent-green);
    font-weight: bold;
}

.step-card:last-child::after {
    display: none;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: var(--light-blue);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.industry-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.industry-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-features {
    list-style: none;
    text-align: left;
}

.industry-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.industry-features li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.benefits-text h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.benefit-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.benefits-visual {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transform: translateY(0);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    opacity: 0.9;
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
    background: var(--light-gray);
}

.comparison-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.comparison-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    font-weight: 600;
}

.comparison-row {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.comparison-row:nth-child(even) {
    background: var(--light-gray);
}

.check-mark {
    color: var(--accent-green);
    font-size: 1.5rem;
    text-align: center;
}

.x-mark {
    color: #dc3545;
    font-size: 1.5rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--light-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.pricing-card.popular {
    border-color: var(--accent-green);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

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

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

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

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

.plan-features li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.plan-features li.unavailable {
    color: var(--text-gray);
    opacity: 0.6;
}

.plan-features li.unavailable::before {
    content: "✗";
    color: #dc3545;
}

.plan-cta {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.plan-cta.primary {
    background: var(--primary-blue);
    color: var(--white);
}

.plan-cta.primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.plan-cta.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.plan-cta.secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 1rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-green);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* ========== ANIMATIONS ========== */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ========== RESPONSIVE DESIGN FOR CTA & FOOTER ========== */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom > div {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
}




/* ---------------------------------- RESPONSIVENESS --------------------------------------- */

/* ===================== NAV ====================== */



@media screen and (max-width: 1024px){



    /* Header */
    .header {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
        color: var(--white);
    }

    header button{
        display: inline-block;
        font-size: 1.5rem;
        background: var(--dark-blue);
        color: var(--color-white);
        cursor: pointer;
    }
    
    header button#close__nav-btn{
        display: none;
    }

    header .cta-button{
        display: none;
    }

    .nav__container{
        position: relative;
    }
    .nav-links{
        position: absolute;
        flex-direction: column;
        top: 100%;
        right: 0;
        width: 12rem;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        display: none;
    }
    .nav-links li{
        width: 100%;
        height: 3.5rem;
        display: flex;
        align-items: center;
        box-shadow: -2rem 3rem 7rem rgba(0, 0, 0, 0.7);
        border-top: 1px solid var(--color-bg);
        animation: animateDropdown 1s 0s ease forwards;
        opacity: 0;
        transform-origin: top;
        background: var(--dark-blue);
    }

    .nav-links li:nth-child(2){
        animation-delay: 200ms;
    }
    .nav-links li:nth-child(3){
        animation-delay: 200ms;
    }
    .nav-links li:nth-child(4){
        animation-delay: 400ms;
    }
    .nav-links li:nth-child(5){
        animation-delay: 600ms;
    }


    /* ============================= nav dropdown animation =========================== */
    @keyframes animateDropdown {
        0% {
        transform: rotateX('90deg');
        }
        100%{
        transform: rotateX('0deg');
        opacity: 1;
        }
    }

    .nav-links li a{
        border-radius: 0;
        width: 100%;
        height: 100%;
        background: var(--dark-blue);
        padding: 0 2rem;
        display: flex;
        align-items: center;
    }

}



/* =============================== MEDIA QUERIES (SMALL DEVICES) ============================= */
@media screen and (max-width: 600px){
    /* Hero Section */
    .hero {
        /* background: linear-gradient(135deg, #000000 0%, #000000 100%); */
        padding: 5rem 1rem 3rem;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.9rem 1rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.95rem;
    }

    .dashboard-mockup {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .dashboard-mockup:hover {
        transform: none;
    }

    .metric-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mockup-content {
        padding: 1.5rem;
    }

    .metric-card {
        padding: 1.2rem;
    }

    .chaos-chart-img img {
    max-width: 100%;
    }

    
         /* ========== TRUST INDICATORS ==========  */
.trust-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .trust-stat {
    padding: 1.5rem 1rem;
  }

  .trust-stat .number {
    font-size: 2.2rem;
  }

  .trust-stat .label {
    font-size: 1rem;
  }

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

 .problem-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problem-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .problem-list li {
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .problem-visual {
    padding: 2rem;
  }

  .chaos-chart {
    height: 200px;
    font-size: 1.5rem;
    flex-direction: column;
  }

  .chaos-chart div:nth-child(1) {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .chaos-chart div:nth-child(3) {
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }


  

  /* -- ========== SOLUTION OVERVIEW ========== -- */


   .solution-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-card {
    padding: 2rem 1.5rem;
  }

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

  .solution-card h3 {
    font-size: 1.2rem;
  }

  .solution-overview h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .solution-overview p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* -- ========== HOW IT WORKS ========== -- */


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

  .step-card {
    text-align: center;
    padding: 1rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .step-card h3 {
    font-size: 1.1rem;
  }

  .step-card p {
    font-size: 0.95rem;
  }

  .step-card::after {
    display: none;
  }

  .how-it-works h2 {
    font-size: 2rem;
  }

  .how-it-works p {
    font-size: 1rem;
    padding: 0 1rem;
  }


  /* -- ========== FEATURES SECTION ========== -- */


  .section-header h2 {
    font-size: 1.6rem;
    padding: 0 1rem;
  }

  .section-header p {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .feature-list li {
    font-size: 0.85rem;
  }


  /* -- ========== BENEFITS SECTION ========== -- */

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .benefits-text h2 {
    font-size: 1.5rem;
  }

  .benefit-content p {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2rem;
  }

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

   .faq {
    padding: 3rem 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .faq-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .faq-question {
    font-size: 1rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .faq-question span {
    font-size: 1.5rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .section-header h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .section-header p {
    font-size: 1rem;
    text-align: center;
  }

  /* -- ========== CONTACT SECTION ========== -- */

  .contact-content {
    display: block;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    margin-bottom: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  button.plan-cta.primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }


  /* ================================ PRICING PLAN ============================ */

.pricing-card {
    padding: 1.5rem;
  }

  .plan-price {
    font-size: 2rem;
  }

  .plan-name {
    font-size: 1.2rem;
  }

  .plan-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

}