/* --- Reset & Variables --- */
:root {
    --color-dark: #0a0a1a; /* Deep navy background */
    --color-primary-blue: #2575fc; 
    --color-accent-pink: #ff5acd;
    --color-light-grey: #f4f7fa;
    --color-white: #ffffff;
    --color-text-grey: #6c757d;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --section-spacing: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 15px; }
p { margin-bottom: 20px; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--color-white); }
.text-blue { color: var(--color-primary-blue); }
.text-grey { color: #ccc; }
.text-green { color: #28a745; }
.text-yellow { color: #ffc107; }
.fw-bold { font-weight: 700; }
.bg-light { background-color: var(--color-light-grey); }
.bg-white { background-color: var(--color-white); }
.mt-3 { margin-top: 1rem; }

.section-padding {
    padding: var(--section-spacing) 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
}

.btn-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn-dark:hover { opacity: 0.9; }

.btn-blue {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
}

.btn-outline {
    border: 2px solid var(--color-dark);
    background: transparent;
}

.btn-block { display: block; width: 100%; text-align: center;}

/* --- Gradients & Effects --- */
.gradient-text {
    background: linear-gradient(45deg, var(--color-primary-blue), var(--color-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-icon {
    font-size: 24px;
    background: linear-gradient(45deg, #ff8aec, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-pink-bg {
    background: linear-gradient(135deg, #ff8aec 0%, #2575fc 100%);
}

/* ================= PAGE SECTIONS ================= */

/* --- Navbar --- */
.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    color: var(--color-dark);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-bg-image {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
/* Add gradient overlay to hero image */
.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 30%, rgba(37, 117, 252, 0.4) 100%);
}

/* --- Reliable Section --- */
.reliable-section { position: relative; }
/* Adding background shape blob */
.reliable-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: var(--color-primary-blue);
    opacity: 0.1;
    border-bottom-left-radius: 100% 50%;
    z-index: -1;
}

.features-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.feature-small i { margin-bottom: 10px; }
.feature-small p { font-size: 0.9rem; font-weight: 600; }


/* --- Feature Cards Section --- */
.section-title { margin-bottom: 50px; }
.feature-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.feature-card img {
    height: 180px;
    object-fit: contain;
    margin: 0 auto 20px;
}

/* --- Comparison Table --- */
.table-wrapper {
    overflow-x: auto;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}
.comparison-table th, .comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.comparison-table th {
    background: var(--color-light-grey);
    font-family: var(--font-heading);
}
/* Highlighted Column */
.highlight-col-header {
    background-color: var(--color-primary-blue) !important;
    color: var(--color-white);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.highlight-col {
    background-color: #eef4ff;
    font-weight: 700;
}
.comparison-table tr:last-child .highlight-col {
     border-bottom-left-radius: 20px;
     border-bottom-right-radius: 20px;
}
.comparison-table .fa-circle-check, .comparison-table .fa-circle-xmark {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* --- Cybersecurity Section --- */
.grid-2-col-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.cyber-card {
    background: var(--color-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.cyber-card p { font-size: 0.9rem; font-weight: 600; margin: 0; }

/* --- Testimonials --- */
.testimonials-grid { align-items: stretch; }
.testi-card {
    padding: 40px;
    border-radius: 20px;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gradient-pink-card {
    background: linear-gradient(135deg, #ff8aec, #ff5acd);
    color: white;
}
.gradient-blue-card {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    color: white;
}
.testi-card h3 {
    font-size: 2rem;
    line-height: 1;
}
.absolute-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
}
.quote-card {
    justify-content: space-between;
    border: 1px solid #eee;
}
.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}
.avatar { border-radius: 50%; }
.absolute-icon-sm { margin-left: auto; color: #ccc;}


/* --- Pricing Section --- */
.massive-headline { font-size: 4rem; }
.pricing-grid { margin-top: 50px; align-items: stretch; }
.pricing-card {
    background: var(--color-light-grey);
    padding: 50px;
    border-radius: 30px;
}
.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.speed { color: var(--color-primary-blue); font-weight: 700;}
.price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
}
.month { font-size: 1.5rem; font-weight: 600; }
.plan-desc { font-size: 1.2rem; margin-bottom: 10px;}
.plan-sub { font-size: 0.9rem; color: var(--color-text-grey); margin-bottom: 30px; }
.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Steps Section --- */
.steps-list ol {
    counter-reset: step;
    list-style: none;
}
.steps-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--color-text-grey);
}
.steps-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: -5px;
    width: 40px;
    height: 40px;
    background: var(--color-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-family: var(--font-heading);
}
.steps-list li strong { color: var(--color-dark); text-decoration: underline;}

/* --- No Fees Section --- */
.no-fees-section {
    /* Complex gradient background shape */
    background: rgb(255,138,236);
    background: linear-gradient(115deg, rgba(255,138,236,1) 0%, rgba(255,90,205,1) 50%, rgba(37,117,252,1) 50%, rgba(106,17,203,1) 100%);
    overflow: hidden;
}
.no-fees-text h2 { font-size: 2rem; text-transform: none; }
.no-fees-text h3 { opacity: 0.8;}
.no-fees-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* --- Referral Section --- */
.referral-text-card {
    padding: 60px;
    border-radius: 30px;
}
.referral-image-card img { border-radius: 30px; height: 100%; object-fit: cover;}

/* --- Waitlist Banner --- */
.waitlist-banner { position: relative; overflow: hidden;}
.waitlist-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.2;
}
/* Overlay to make text readable */
.waitlist-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%);
    z-index: -1;
}
.inline-form {
    display: flex;
    gap: 10px;
}
.inline-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: var(--color-light-grey);
}


/* --- Footer --- */
.footer-section {
    background: var(--color-dark);
    color: var(--color-white);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo { filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand h2 { font-size: 2.5rem; line-height: 1;}
.footer-links ul li { margin-bottom: 15px; font-weight: 600; }
.newsletter-box {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 20px;
}
.newsletter-box input {
    width: 100%;
    padding: 12px;
    margin: 15px 0;
    border-radius: 30px;
    border: none;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}
.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    width: 35px; height: 35px;
    border: 1px solid #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* --- Responsive Design (Basic Tablet/Mobile) --- */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .massive-headline { font-size: 3rem; }
    .grid-2-col, .grid-3-col, .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-section { height: auto; padding: 150px 0 80px; }
    .nav-links { display: none; /* Hide nav links on mobile for now */ }
    .reliable-section::before { width: 100%; height: 50%; top: auto; bottom: 0; }
    .no-fees-section { background: linear-gradient(180deg, rgba(255,138,236,1) 0%, rgba(37,117,252,1) 100%); }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-legal { justify-content: center; margin-top: 10px;}
}