/* --- Variables & Reset --- */
/* Add this right at the top of your CSS file */
html {
    scroll-behavior: smooth;
}
:root {
    --bg-dark: #070d19;
    --primary-blue: #1652f0;
    --primary-blue-hover: #1243c9;
    --text-light: #ffffff;
    --text-muted: #a0aabf;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif; /* Keep your existing fonts */
    color: #ffffff;
    background-color: #070d19; /* Fallback dark color */
    
    /* ADD THESE 4 LINES: */
   background-image: linear-gradient(rgba(7, 13, 25, 0.4), rgba(7, 13, 25, 0.85)), url('../assets/images/bg-mountain.png'); /* Change to your exact image name! */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This locks it in place across all sections! */
    background-repeat: no-repeat;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(7, 13, 25, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
/* --- Image Button Styling --- */
.img-btn-link {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.img-btn-link:hover {
    transform: scale(1.03); /* Adds a slight pop effect when hovered */
    opacity: 0.9;
}

/* Base size for the navbar */
.img-btn-link img {
    height: 55px; /* Increase this number (e.g., 60px, 65px) until it looks right in the navbar */
    width: auto;
    display: block;
}

/* Larger size for the Hero Section */
.img-btn-link.large img {
    height: 75px; /* Increase this number (e.g., 80px, 90px) until it matches your Learn More button */
}
.support-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}
.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px; /* Keeps those nice rounded corners */
}
/* --- Buttons --- */
.btn-primary {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(22, 82, 240, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
}

.btn-primary.large {
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- Hero Section --- */
.hero-section {
    display: flex;
    padding: 4rem;
    gap: 4rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    flex: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Feature Grid */
.features-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    flex: 1;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.icon-box.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.icon-box.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.icon-box.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.icon-box.orange { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.feature-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.compatibility {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.compatibility i {
    color: #3b82f6;
}

/* Hero Image Placeholder Styling */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 120%;
    height: auto;
    transform: translateX(10%);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* --- Tools Bar --- */
.tools-bar {
    padding: 0 4rem;
    margin-bottom: 2rem;
}

.tools-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
    cursor: pointer;
}

.tool-item:hover {
    color: var(--text-light);
}

/* --- Trust Badge --- */
.trust-badge {
    text-align: center;
    padding-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
/* --- Features Section --- */
.features-section {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #a0aabf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Feature Cards Grid (Forced 4-column layout) */
.features-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forces exactly 4 in a row */
    gap: 1.5rem; /* Slightly tighter gap to fit 13-inch screens beautifully */
    margin-bottom: 5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    
    /* Animation settings */
    opacity: 0; /* Hidden by default until animation runs */
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Staggered delays so they animate in one after another */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }

/* Enhanced Hover Animation */
.feature-card:hover {
    transform: translateY(-10px); /* Floats higher */
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.5); /* Stronger blue border */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.15); /* Blue glow */
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.1));
    color: #3b82f6;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease; /* Smooth transition for icon hover */
}

/* Icon reacts when hovering the whole card */
.feature-card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg); /* Slight pop and tilt */
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}
/* About / Highlight Box */
.about-highlight-box {
    background: linear-gradient(180deg, rgba(7, 13, 25, 0.8), rgba(22, 82, 240, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

/* Adds a subtle glowing top edge similar to your screenshot */
.about-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    box-shadow: 0 0 20px 2px #3b82f6;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.about-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-header p {
    color: var(--text-muted);
    line-height: 1.6;
}

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

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.2rem;
    color: #f59e0b; /* Yellow/Orange to match the screenshot bullet points */
    margin-top: 0.2rem;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.detail-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- Footer Section --- */
.main-footer {
    padding: 2rem 4rem 1rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Top CTA Banner */
.footer-cta-banner {
    background: linear-gradient(135deg, #091325, #050a14);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.cta-icon-large {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at top left, #3b82f6, #070d19);
    border: 1px solid #3b82f6;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}

.cta-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-divider {
    width: 1px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.newsletter-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-icon {
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0aabf;
}

.newsletter-header h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.newsletter-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    background: #070d19;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 1.2rem;
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #3b82f6;
}

/* Footer Links Area */
.footer-links-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-col {
    max-width: 260px;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #a0aabf;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 140px;
    transition: color 0.3s;
}

/* The subtle ">" chevrons */
.footer-nav a i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s, transform 0.3s;
}

.footer-nav a:hover {
    color: var(--text-light);
}

.footer-nav a:hover i {
    color: #3b82f6;
    transform: translateX(3px);
}

/* Why Choose Us Column */
.why-choose-col {
    max-width: 280px;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #60a5fa;
    flex-shrink: 0;
}

.why-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Trust Badges */
.footer-trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.trust-item i {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.trust-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stripe-item p {
    font-size: 0.75rem;
    margin-bottom: 0.1rem;
}

.stripe-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6366f1; /* Stripe's signature blue-purple */
    letter-spacing: -0.5px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-bottom: 2rem;
}
/* --- Contact Section --- */
.contact-section {
    padding: 6rem 4rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

/* Left Column */
.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem; /* Added padding all around */
    background: rgba(7, 13, 25, 0.6); /* Added a dark, semi-transparent background */
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
    transition: background 0.3s, transform 0.3s;
}

.contact-method:hover {
    background: rgba(7, 13, 25, 0.9);
    transform: translateX(5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3b82f6;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-details {
    flex: 1;
}

.method-details h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.method-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.method-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 0.2rem;
}

.method-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.privacy-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(7, 13, 25, 0.5));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.privacy-box-icon {
    color: #60a5fa;
    font-size: 2rem;
}

.privacy-box h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.privacy-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.contact-form-container {
    flex: 1.2;
    /* Made the background much darker and less transparent */
    background: rgba(7, 13, 25, 0.85); 
    backdrop-filter: blur(20px); /* Adds a strong blur to the mountains behind it */
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1.2rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.input-wrapper.align-top i {
    top: 1.2rem;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    background: rgba(7, 13, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1rem 1rem 3rem;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: #3b82f6;
    background: rgba(7, 13, 25, 0.8);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    background: linear-gradient(90deg, #3b82f6, #4f46e5);
}

.form-footer-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}
.form-footer-note i {
    margin-right: 0.4rem;
}

/* Bottom Features Bar */
.contact-features-bar {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.c-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
}

.cf-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #60a5fa;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cf-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.cf-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}
/* --- Benefits Section --- */
.benefits-section {
    padding: 6rem 4rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.benefit-card {
    background: rgba(7, 13, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s, border-color 0.3s;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(180deg, rgba(7, 13, 25, 0.8), rgba(59, 130, 246, 0.05));
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(7, 13, 25, 0.8));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #60a5fa;
    margin: 0 auto 1.5rem auto;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- How It Works Section --- */
.how-works-section {
    padding: 4rem 4rem 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    gap: 1rem;
}

.step-box {
    flex: 1;
    position: relative;
    padding: 2rem;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

.step-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0 1rem 0;
}

.step-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

















/* --- Laptop & 13-inch MacBook M1 Adjustments --- */
@media (max-width: 1440px) {
    .navbar {
        padding: 1.5rem 2rem;
    }
    
    .hero-section {
        padding: 2rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem; /* Scaled down from 4rem */
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image img {
        max-width: 110%; /* Prevents horizontal overflow */
        transform: translateX(5%); /* Shifts the laptop slightly back into view */
    }

    .features-grid {
        flex-wrap: wrap; /* Allows icons to wrap if space gets too tight */
    }

    .tools-bar {
        padding: 0 2rem;
    }
    
    .tools-container {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        padding: 1rem;
    }
    .features-section {
        padding: 4rem 2rem;
    }
    
    .about-highlight-box {
        padding: 2rem;
    }
    .footer-cta-banner {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .cta-divider {
        width: 100%;
        height: 1px;
    }

    .footer-links-container {
        flex-wrap: wrap; /* Allows columns to drop down if they run out of space */
    }

    .footer-trust-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
 
    
    .contact-features-bar {
        flex-wrap: wrap;
    }
    
    .c-feature {
        min-width: calc(50% - 1rem); /* 2x2 grid on smaller screens */
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* --- Smaller Screens / Tablets --- */
@media (max-width: 1100px) {
    .features-grid-large {
        grid-template-columns: repeat(2, 1fr); /* Drops to 2-by-2 on smaller screens */
    }
}
/* --- Tablets & Mobile Only --- */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        max-width: 100%;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-arrow {
        transform: rotate(90deg); /* Points arrows down on mobile */
    }
}

