/* ========================================
   VARIABLES & RESET
   ======================================== */

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

:root {
    --dark: #0C0D16;
    --primary: #4F42D8;
    --yellow: #FFE674;
    --pink: #FFC9EA;
    --cream: #FAE7CE;
    --green: #DCFFCE;
    --white: #FFFFFF;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */

.deco-circle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    filter: blur(100px);
    transition: opacity 0.6s ease, transform 0.3s ease-out;
    will-change: transform, opacity;
}

.deco-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    right: -100px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    bottom: 20%;
    left: -80px;
}

.deco-3 {
    width: 250px;
    height: 250px;
    background: var(--yellow);
    top: 60%;
    right: -50px;
}

/* Additional dynamic circles */
.deco-4 {
    width: 350px;
    height: 350px;
    background: var(--green);
    top: 40%;
    left: -100px;
}

.deco-5 {
    width: 280px;
    height: 280px;
    background: var(--cream);
    top: 80%;
    right: -70px;
}

/* ========================================
   CONTAINER
   ======================================== */

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 6rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1400px) {
    .container {
        padding: 0 4rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 13, 22, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain; 
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--white);
}

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

.header-cta {
    background: transparent;
    color: var(--yellow);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid var(--yellow);
}

.header-cta:hover {
    background: var(--yellow);
    color: var(--dark);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-text strong {
    color: var(--white);
}

.hero-image {
    max-width: 370px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

/* Floating elements around hero image */
.float-element {
    position: absolute;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.float-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.float-hero-1 {
    width: 80px;
    height: 80px;
    top: 0;
    right: -50px;
    animation-delay: 0s;
}

.float-hero-2 {
    bottom: 15%;
    left: -80px;
    animation-delay: 0.5s;
}

.float-hero-3 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: -40px;
    animation-delay: 1s;
}

.float-hero-4 {
    bottom: -30px;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--yellow);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--yellow);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: var(--yellow);
    color: var(--dark);
    transform: translateY(-3px);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.large:hover {
    background: var(--white);
    color: var(--dark);
}

.cta-button.large svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
}

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

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

/* Colored dots on the timeline */
.timeline-line::before,
.timeline-line::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-item:nth-child(2)::after {
    background: var(--pink);
    box-shadow: 0 0 0 4px var(--dark), 0 0 20px var(--pink);
}

.timeline-item:nth-child(3)::after {
    background: #FAE7CE;
    box-shadow: 0 0 0 4px var(--dark), 0 0 20px #FAE7CE;
}

.timeline-item:nth-child(4)::after {
    background: var(--green);
    box-shadow: 0 0 0 4px var(--dark), 0 0 20px var(--green);
}

.timeline-item.left {
    text-align: right;
}

.timeline-item.right {
    text-align: left;
}

.timeline-item.left .timeline-content {
    margin-right: 55%;
}

.timeline-item.right .timeline-content {
    margin-left: 55%;
}

.timeline-content {
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.timeline-content.yellow {
    background: #FAE7CE;
    color: var(--dark);
}

.timeline-content.pink {
    background: var(--pink);
    color: var(--dark);
}

.timeline-content.green {
    background: var(--green);
    color: var(--dark);
}

/* Remove the connecting lines */

.timeline-number {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    top: 0.5rem;
    line-height: 1;
}

.timeline-item.left .timeline-number {
    right: 1rem;
}

.timeline-item.right .timeline-number {
    left: 1rem;
}

.timeline-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* ========================================
   WHY SECTION - FLOATING BENEFITS
   ======================================== */

.why-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 600px;
    max-width: 1200px;
    margin: 0 auto;
}

.phone-mockup {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-self: center;
    max-width: 300px;
    width: 100%;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    max-width: 350px;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.float-1 {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    animation: float-up-down 4s ease-in-out infinite;
}

.float-2 {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    animation: float-up-down 5s ease-in-out infinite 0.5s;
}

.float-3 {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    animation: float-up-down 4.5s ease-in-out infinite 1s;
}

.float-4 {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    animation: float-up-down 5.5s ease-in-out infinite 1.5s;
}

@keyframes float-up-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 800px 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-content {
    text-align: center;
}

.trust-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
}

.trust-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.trust-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--yellow);
    flex-shrink: 0;
}

.trust-feature span {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.trust-message {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.7;
}

/* Decorative elements */
.trust-deco {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.deco-circle-small {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.2;
}

.circle-1 {
    width: 80px;
    height: 80px;
    border-color: var(--yellow);
    top: 10%;
    left: 20%;
}

.circle-2 {
    width: 60px;
    height: 60px;
    border-color: var(--pink);
    bottom: 20%;
    right: 15%;
}

.circle-3 {
    width: 70px;
    height: 70px;
    border-color: var(--green);
    top: 15%;
    right: 25%;
}

.circle-4 {
    width: 90px;
    height: 90px;
    border-color: var(--yellow);
    bottom: 15%;
    left: 10%;
}

.deco-line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    width: 2px;
    opacity: 0.15;
}

.line-1 {
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
}

.line-2 {
    height: 350px;
    top: 50%;
    right: 40%;
    transform: translate(50%, -50%) rotate(-20deg);
}

.deco-dots {
    position: absolute;
    display: flex;
    gap: 8px;
}

.deco-dots::before,
.deco-dots::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 0.3;
}

.dots-1 {
    top: 40%;
    right: 30%;
}

.dots-1::before {
    background: var(--pink);
}

.dots-1::after {
    background: var(--yellow);
}

.dots-2 {
    bottom: 35%;
    left: 35%;
}

.dots-2::before {
    background: var(--green);
}

.dots-2::after {
    background: var(--primary);
}

/* ========================================
   ELIGIBILITY - SIMPLE LAYOUT
   ======================================== */

.web-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.web-center {
    width: 300px;
    height: 300px;
    position: relative;
}

.web-center img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.web-center::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px solid #FAE7CE;
}

.web-line {
    display: none;
}

.eligibility-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.web-req {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.web-req:hover {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.web-req svg {
    width: 50px;
    height: 50px;
    stroke: var(--yellow);
    flex-shrink: 0;
}

.web-req p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.4;
}

.web-req strong {
    color: var(--white);
}

/* ========================================
   CTA SECTION - FULL WIDTH
   ======================================== */

.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

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

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

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

/* ========================================
   FAQ - TWO COLUMNS
   ======================================== */

.faq-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--yellow);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.footer-brand .company {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-links h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

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

.footer-links a:hover {
    color: var(--white);
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .why-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .phone-mockup {
        grid-column: 1;
        grid-row: auto;
        margin: 2rem 0;
    }

    .benefit-card {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin: 0;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-item {
        text-align: left;
    }

    .trust-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-deco {
        display: none;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    header {
        padding: 1rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(12, 13, 22, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .logo img {
        height: 35px;
        max-width: 150px;
    }

    .hero {
        padding: 8rem 0 3rem;
        min-height: auto;
    }

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

    .hero-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Smaller floating elements on mobile */
    
    .float-element {
        display: none;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-number {
        font-size: 3rem;
        right: 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 2rem;
    }

    .phone-mockup {
        max-width: 250px;
        margin: 0 auto;
    }

    .benefit-card {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .trust-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-deco {
        display: none;
    }

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

    .trust-feature {
        padding: 1.25rem;
    }

    .trust-intro,
    .trust-message {
        font-size: 1.1rem;
    }

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

    .web-center {
        margin: 0 auto;
        width: 250px;
        height: 250px;
    }

    .web-center::before {
        content: "";
        width: 290px;
        height: 290px;
    }

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

    .web-req {
        transform: none !important;
        padding: 1.5rem;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .cta-content h2 {
        font-size: 2rem !important;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

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

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

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

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-button.large {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

    .header-cta {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-number {
        font-size: 3rem;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ========================================
   LEGAL PAGES SPECIFIC STYLES
   ======================================== */

.legal-page {
    padding: 8rem 0 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.effective-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page section {
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--yellow);
    margin-top: 2.5rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.legal-page p {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.legal-page strong {
    color: var(--white);
    font-weight: 600;
}

.legal-page a {
    color: var(--yellow);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-page a:hover {
    opacity: 0.8;
}

/* Legal pages responsive - mobile */
@media (max-width: 768px) {
    .legal-page {
        padding: 7rem 0 3rem;
    }

    .legal-page h1 {
        font-size: 2.5rem;
    }

    .legal-page h2 {
        font-size: 1.65rem;
    }

    .legal-page h3 {
        font-size: 1.3rem;
    }

    .legal-page p,
    .legal-page li {
        font-size: 1.05rem;
    }

    .legal-page ul {
        margin-left: 1.5rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .legal-page h1 {
        font-size: 2rem;
    }

    .legal-page h2 {
        font-size: 1.5rem;
    }

    .legal-page h3 {
        font-size: 1.2rem;
    }

    .effective-date {
        font-size: 0.95rem;
    }
    
    .legal-page p,
    .legal-page li {
        font-size: 1rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page {
    padding: 8rem 0 4rem;
}

.contact-page h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

/* Before Contact Section */
.before-contact {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.before-contact h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.before-contact > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.helpful-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.helpful-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.helpful-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--yellow);
    transform: translateX(5px);
}

.helpful-link svg {
    width: 24px;
    height: 24px;
    stroke: var(--yellow);
    flex-shrink: 0;
}

.helpful-link span {
    font-weight: 500;
    font-size: 1rem;
}

/* Quick FAQ */
.quick-faq {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.quick-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--yellow);
    text-align: center;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.faq-quick-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-quick-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.faq-quick-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.faq-quick-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(79, 66, 216, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(79, 66, 216, 0.2);
}

.faq-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Contact Cards */
.contact-cards {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.contact-cards h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--yellow);
    text-align: center;
}

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

.contact-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.card-main {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.card-main a {
    color: var(--yellow);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.card-main a:hover {
    opacity: 0.8;
}

.card-detail {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Contact Note */
.contact-note {
    max-width: 900px;
    margin: 0 auto;
}

.note-box {
    padding: 2.5rem;
    background: rgba(255, 230, 116, 0.05);
    border: 1px solid rgba(255, 230, 116, 0.2);
    border-radius: 20px;
}

.note-box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.note-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-page h1 {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .helpful-links {
        grid-template-columns: 1fr;
    }

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

    .faq-quick-item {
        padding: 1.5rem;
    }

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

    .contact-card {
        padding: 2rem;
    }

    .before-contact,
    .note-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-page h1 {
        font-size: 2rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }
}