<style > {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--charcoal);
    color: var(--white);
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    /* THIS centers text vertically with the logo */
    gap: 8px;
}

.logo span {
    color: var(--electric-blue);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10rem 5% 5rem;
    overflow: hidden;
}


.hero-badge {
    position: absolute;
    top: 30%;
    right: -80px;
    transform: translateY(-50%);
    width: min(630px, 65vw);
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 1;

}

.hero-container {
    position: relative;
    z-index: 2;

}

.hero::after {
    content: "";
    position: absolute;
    top: 20%;
    left: -5%;
    right: auto;
    transform: translate(-50%, -50%);
    width: min(500px, 50vw);
    height: min(500px, 50vw);
    transform: translateY(-70%);
    background: url("./white-line.png") no-repeat center;
    background-size: contain;
    opacity: 0.16;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;

    z-index: 0;
    /* background layer */
    pointer-events: none;
}




@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Accent Elements */
.accent-square {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--electric-blue);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.accent-square:nth-child(1) {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.accent-square:nth-child(2) {
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content-home {
    max-width: 900px;
    text-align: left;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--electric-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Typography */
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.hero h1 .highlight {
    color: var(--electric-blue);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--electric-blue);
    opacity: 0.2;
    z-index: -1;
}

.subheadline {
    font-size: clamp(1.25rem, 3vw, 2rem);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    font-weight: 600;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.subheadline .emphasis {
    color: var(--electric-blue);
    font-weight: 700;
}

.support-line {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    animation: fadeIn 0.8s ease-out 0.8s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.cta-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 1s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--electric-blue);
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    background: #00b8e6;
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.btn-primary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

/* Promise Section */
.promise {
    margin-top: 5rem;
    padding: 3rem 0;
    animation: fadeIn 0.8s ease-out 1.2s backwards;
}

.promise-content {
    max-width: 800px;
}

.promise h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.promise p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--light-gray);
}

.promise-list {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.promise-icon {
    width: 24px;
    height: 24px;
    background: var(--electric-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--charcoal);
    font-weight: 700;
}

/* Section Base Styles */
.section {
    padding: 6rem 5%;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.section-title1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--light-gray);
    margin-bottom: 3rem;
    text-align: center;
}

/* Alternating Section Backgrounds */
.section:nth-child(even) {
    background: var(--graphite);
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, var(--graphite) 0%, var(--charcoal) 100%);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.challenge-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--electric-blue);
    transform: translateY(-5px);
}

.challenge-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.challenge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--electric-blue);
}

.challenge-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

.problem-cta {
    margin-top: 3rem;
    text-align: center;
}

.problem-cta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.problem-cta .emphasis {
    color: var(--electric-blue);
}

/* What Makes Us Different */
.different-section {
    background: var(--charcoal);
}

.different-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.different-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--electric-blue);
}

.different-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.different-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--electric-blue);
    border-radius: 4px;
}

.value-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* RRR Approach Section */
.rrr-section {
    position: relative;
    overflow: hidden;
}

.rrr-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rrr-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--electric-blue);
    color: var(--charcoal);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.rrr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.rrr-card {
    padding: 3rem 2.5rem;
    background: var(--charcoal);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
}

.rrr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--electric-blue);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rrr-card:hover {
    border-color: var(--electric-blue);
    transform: translateY(-8px);
}

.rrr-card:hover::before {
    opacity: 1;
}

.rrr-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--electric-blue);
    opacity: 1;
    margin-bottom: 1rem;
}

.rrr-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.rrr-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-gray);
}

/* Commitment Section */
.commitment-section {
    background: var(--charcoal);
}

.commitment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    background: rgba(0, 212, 255, 0.05);
}

.commitment-check {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--electric-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.2rem;
}

.commitment-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-gray);
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    text-align: center;

}

.community-content {
    max-width: 1000px;
    margin: 0 auto;
}

.community-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 2rem;
}

.community-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.community-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.rarity-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin: 2rem 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--graphite);
}

.testimonials-grid {
    display: block;
    margin: auto;
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--charcoal);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--electric-blue);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 3rem;
    color: var(--electric-blue);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--white);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--teal) 100%);
    color: var(--charcoal);
    text-align: center;
    padding: 6rem 5%;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.final-cta-section p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(42, 42, 42, 0.8);
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
    border: 2px solid var(--charcoal);
}

.btn-dark:hover {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-dark::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
}



/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    animation: fadeIn 0.8s ease-out 1.4s backwards, bounce 2s ease-in-out 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--electric-blue), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .different-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {


    .hero {
        padding: 10rem 5% 3rem;
    }

    .section {
        padding: 4rem 5%;
    }

    .cta-container,
    .final-cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .promise-list {
        flex-direction: column;
        gap: 1rem;
    }

    .accent-square {
        display: none;
    }

    .challenges-grid,
    .rrr-grid,
    .commitment-list,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Fade-in on scroll animation */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/*ABOUT US*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--charcoal);
    color: var(--white);
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.logo span {
    color: var(--electric-blue);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

/* Hero */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
}


.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    position: relative;
    z-index: 2;
}

.hero::after {
    content: "";
    position: absolute;

    /* POSITION — tweak these */
    top: 45%;
    right: -80px;
    /* negative = cropped off edge */
    transform: translateY(-50%);

    /* SIZE */
    width: 600px;
    height: 600px;

    /* IMAGE */
    background: url(".white-line.png") no-repeat center !important;
    background-size: contain;

    /* STYLE */
    opacity: 0.12;
    pointer-events: none;

    /* LAYERING */
    z-index: 1;
}


.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--electric-blue);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: var(--light-gray);
}

/* Section Base */
.section {
    padding: 6rem 5%;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section:nth-child(even) {
    background: var(--graphite);
}

/* Story Section */
.story-section {
    background: var(--charcoal);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--electric-blue);
}

.story-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission-section {
    background: var(--graphite);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.mission-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--electric-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--light-gray);
}

.mission-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.mission-cta p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mission-cta .emphasis {
    color: var(--electric-blue);
}

/* Values Section */
.values-section {
    background: var(--charcoal);
}

.values-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem;
    background: var(--graphite);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--electric-blue);
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-gray);
}

/*  Section */
.rrr-section {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--teal) 100%);
    color: var(--charcoal);
    padding: 6rem 5%;
}

.rrr-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.rrr-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(42, 42, 42, 0.2);
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    background-color: #00d4ff;
}

.rrr-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.rrr-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.rrr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: left;
}

.rrr-item {
    padding: 2rem;
    background: rgba(42, 42, 42, 0.1);
    border-radius: 8px;
    text-align: center;
}

.rrr-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.rrr-item p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
    text-align: center;
}

/* Commitment Section */
.commitment-section {
    background: var(--graphite);
}

.commitment-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.commitment-list {
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--electric-blue);
    margin-bottom: 1rem;
    border-radius: 4px;

}

.check-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--electric-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.2rem;
}

.commitment-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-gray);
}

/* Community CTA */
.community-cta {
    background: var(--charcoal);
    text-align: center;
    padding: 6rem 5%;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

.community-cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.community-cta p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--electric-blue);
    color: var(--charcoal);
}

.btn-primary::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: #00b8e6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr;
    /* brand + grouped links */
    gap: 3rem;
}

.footer-links-group {
    display: flex;
    gap: 4rem;
    /* space between the two menus */
    align-items: flex-start;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--electric-blue);
}

.footer-tagline {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--electric-blue);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}


.footer::before {
    content: "";
    position: absolute;

    /* Position it */
    top: -70px;
    /* push it partly off-screen */
    left: -20px;

    /* Size */
    width: 400px;
    height: 400px;

    /* SVG */
    background: url("./white-blue.svg") no-repeat center;
    background-size: contain;

    /* Visual treatment */
    opacity: 0.08;
    /* subtle underlay */
    pointer-events: none;

    /* Layering */
    z-index: 0;


}

/* Responsive */
@media (max-width: 768px) {

    .values-grid,
    .rrr-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/*CONTACT US*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--charcoal);
    color: var(--white);
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.logo span {
    color: var(--electric-blue);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

/* Hero */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    position: relative;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: var(--electric-blue);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    line-height: 1.6;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--light-gray);
}

/* Hero */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    overflow: hidden;
}


.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    position: relative;
    z-index: 2;
}

.hero::after {
    content: "";
    position: absolute;

    /* POSITION — tweak these */
    top: 45%;
    right: -80px;
    /* negative = cropped off edge */
    transform: translateY(-50%);

    /* SIZE */
    width: 600px;
    height: 600px;

    /* IMAGE */
    background: url("./white-line.png") no-repeat center;
    background-size: contain;

    /* STYLE */
    opacity: 0.12;
    pointer-events: none;

    /* LAYERING */
    z-index: 1;
}

/* What Happens Next */
.next-section {
    background: var(--graphite);
    padding: 6rem 5%;
}

.next-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.next-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--electric-blue);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.step-card {
    padding: 2.5rem;
    background: var(--charcoal);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--electric-blue);
    transform: translateY(-5px);
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    background: var(--electric-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.step-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--light-gray);
}

.reassurance {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--light-gray);
    margin-top: 2rem;
}

.reassurance strong {
    color: var(--white);
}

/* CTA Section */
.lets-talk {
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--teal) 100%);
    color: var(--charcoal);
    padding: 6rem 5%;
}

.lets-talk-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.lets-talk-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lets-talk-card {
    padding: 3rem 2rem;
    background: rgba(42, 42, 42, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lets-talk-card:hover {
    background: rgba(42, 42, 42, 0.2);
    border-color: var(--charcoal);
    transform: translateY(-5px);
}

.lets-talk-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lets-talk-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lets-talk-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--graphite);
    transform: translateY(-2px);
}

/* Contact Info Section */
.info-section {
    background: var(--charcoal);
    padding: 6rem 5%;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.info-card {
    padding: 2.5rem;
    background: var(--graphite);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.info-card p,
.info-card a {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--light-gray);
    text-decoration: none;
}

.info-card a:hover {
    color: var(--electric-blue);
}

/* Exclusive Panel */
.exclusive-panel {
    background: var(--graphite);
    padding: 5rem 5%;
}

.exclusive-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid var(--electric-blue);
    border-radius: 12px;
}

.exclusive-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--electric-blue);
    color: var(--charcoal);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.exclusive-panel h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.exclusive-panel p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--light-gray);
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr;
    /* brand + grouped links */
    gap: 3rem;
}

.footer-links-group {
    display: flex;
    gap: 4rem;
    /* space between the two menus */
    align-items: flex-start;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--electric-blue);
}

.footer-tagline {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--electric-blue);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}


.footer::before {
    content: "";
    position: absolute;

    /* Position it */
    top: -70px;
    /* push it partly off-screen */
    left: -20px;

    /* Size */
    width: 400px;
    height: 400px;

    /* SVG */
    background: url("./white-blue.svg") no-repeat center;
    background-size: contain;

    /* Visual treatment */
    opacity: 0.08;
    /* subtle underlay */
    pointer-events: none;

    /* Layering */
    z-index: 0;


}

/* Responsive */
@media (max-width: 768px) {


    .steps-grid,
    .cta-buttons,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        opacity: 0.1;
        /* or whatever value you prefer */
    }

    .hero-content-home h1,
    .hero-content-home .subheadline,
    .hero-content-home .support-line {
        text-align: center !important;
    }

    .hero-content-home .badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content-home .cta-container {
        justify-content: center;
    }

    .hero-content-home .subheadline {
        font-size: 1.4rem;
        /* adjust as needed */
    }

    .hero-content-home .support-line {
        font-size: 1.3rem;
        /* adjust as needed */
    }

    .hero-content-home .badge {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: fit-content;
    }

    .cta-container {
        text-align: center;
    }

    .btn {
        text-align: center;
    }

    section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 2px solid #00d4ff;
    padding: 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 212, 255, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: #00d4ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-text a:hover {
    border-bottom-color: #00d4ff;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-btn-primary {
    background: #00d4ff;
    color: #1a1a1a;
}

.cookie-btn-primary:hover {
    background: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid #00d4ff;
}

.cookie-btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .cookie-container {
        padding: 1.5rem 5%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-text {
        text-align: center;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Tablet Styles - Add this before your mobile (@media max-width: 768px) section */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Navigation */
    .nav-links {
        gap: 1.5rem;
    }

    /* Hero Section */
    .hero {
        padding: 8rem 5% 4rem;
    }

    .hero-badge {
        opacity: 0.5;
        width: min(500px, 60vw);
        right: -60px;
    }

    .hero-content-home {
        max-width: 700px;
    }

    .hero-content-home .subheadline {
        font-size: 1.5rem;
    }

    .hero-content-home .support-line {
        font-size: 1.2rem;
    }

    /* Section Padding */
    section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .section {
        padding: 5rem 5%;
    }

    /* Footer */
    .footer {
        padding: 3rem 5% 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links-group {
        gap: 3rem;
        justify-content: center;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer::before {
        width: 300px;
        height: 300px;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Grids */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: auto;
        min-width: 250px;
    }

    /* Cookie Banner - Tablet */
    .cookie-container {
        padding: 1.75rem 5%;
    }

    .cookie-content {
        gap: 1.75rem;
    }

    .cookie-text p {
        font-size: 0.925rem;
    }

    .cookie-actions {
        gap: 0.875rem;
    }

    .cookie-btn {
        padding: 0.9rem 1.75rem;
    }

}



</style >
