/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C0FF00;
    --bg-dark: #000000;
    --bg-dark-card: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --border-gray: #1a1a1a;
}

html {
    height: 100%;
}

body {
    font-family: system-ui, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Fullscreen login page body override */
html, body.login-page {
    height: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.login-page {
    position: relative !important;
    overflow-x: hidden !important;
}

/* Back to Home Navigation */
.back-to-home-nav {
    position: fixed !important;
    top: 30px !important;
    left: 30px !important;
    z-index: 10000 !important;
    animation: fadeIn 0.6s ease-out;
}

.back-link-nav {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--text-gray) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
}

.back-link-nav:hover {
    color: var(--primary-color) !important;
    gap: 12px !important;
}

.back-link-nav svg {
    transition: transform 0.3s ease !important;
}

.back-link-nav:hover svg {
    transform: translateX(-4px) !important;
}

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

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

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px 40px;
    background-color: transparent !important;
    background: none !important;
    backdrop-filter: none;
    z-index: 1000;
    animation: fadeIn 0.6s ease-out;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: navbarFadeIn 0.4s ease-out;
}

@keyframes navbarFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

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

.logo-svg {
    height: 28px;
    width: auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    width: 30px;
    height: 24px;
}

.hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.hamburger.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Hide mobile-only elements on desktop */
.btn-mobile-cta,
.nav-link-contact {
    display: none !important;
}

/* Show them only on mobile */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    .btn-mobile-cta {
        display: flex !important;
    }
    
    .nav-link-contact {
        display: block !important;
    }
}

/* Desktop: Member Login should be styled as a nav link, not button */
@media (min-width: 769px) {
    .nav-link {
        color: var(--text-light);
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s ease !important;
    }
    
    .nav-link:hover {
        color: var(--primary-color) !important;
    }
}

.nav-link-login {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    flex: 1;
    padding: 140px 0 80px;
    margin-top: -100px;
    padding-top: 240px;
    display: flex;
    align-items: center;
    overflow-x: visible;
    position: relative;
    z-index: 1;
}












.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.7) 70%, var(--bg-dark) 100%);
    pointer-events: none;
    z-index: 999;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.hero-text {
    flex: 1;
    min-width: 0;
    overflow: visible;
    position: relative;
    z-index: 5;
}

/* Large desktop only: positioning adjustments */
@media (min-width: 1025px) {
    .hero-text {
        margin-top: -60px;
        max-width: 62%;
        margin-right: -420px;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    white-space: normal;
}

.accent-dot {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 405px;
    height: 80px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
    transition: opacity 0.6s, transform 0.6s, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(192, 255, 0, 0.3);
    animation-play-state: paused;
}

.btn-login {
    background-color: #0D0D0D;
    color: var(--primary-color);
    border: none;
    width: auto;
    height: auto;
    padding: 12px 24px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: left 0.4s ease;
    z-index: 1;
}

.btn-login:hover::before {
    left: 0;
}

.btn-login span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.btn-login:hover span {
    color: var(--bg-dark);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 40px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -8px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.stars {
    display: flex;
    align-items: baseline;
    gap: 0px;
}

.star {
    color: var(--primary-color);
    font-size: 20px;
}

.star-half-wrapper {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.star-empty {
    filter: brightness(0.3);
    opacity: 0.5;
}

.star-half {
    position: absolute;
    left: 0;
    top: 0;
    clip-path: inset(0 50% 0 0);
}

.rating-text {
    font-size: 18px;
    color: var(--text-gray);
    text-align: left;
}

.rating-text strong {
    color: white !important;
    font-weight: 700;
}

.hero .rating-text strong {
    color: white !important;
}

.rating-badge .rating-text strong {
    color: white !important;
}

p.rating-text strong {
    color: white !important;
}

.hero-text {
    position: relative;
    z-index: 1001;
}

.rating-text {
    position: relative;
    z-index: 1002;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 50px;
}

.phone-mockup {
    max-width: 550px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* Press Examples Section */
.press-examples {
    padding: 0 0 60px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-left: 0;
    z-index: 10;
    background: linear-gradient(to bottom, transparent 0%, transparent 50px, var(--bg-dark) 200px);
    margin-top: -100px;
    /* padding-top: 160px; */
}

.press-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.press-carousel {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-300px * 10));
    }
}

.press-card {
    flex-shrink: 0;
    width: 280px;
    height: 525px;
    background-color: var(--bg-dark-card);
    border-radius: 30px;
    overflow: hidden;
    border: 5px solid #313131;
}

@media (hover: hover) and (pointer: fine) {
    .press-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: 0 10px 30px rgba(192, 255, 0, 0.2);
        transition: all 0.3s ease;
    }
}

.press-article-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

.press-header {
    padding: 15px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    background-color: var(--bg-dark);
}

.press-header.highlighted {
    color: var(--primary-color);
}

.press-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.press-content {
    padding: 20px;
}

.press-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-light);
}

.social-shares {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background-color: #0a66c2;
    color: white;
}

.share-btn.pinterest {
    background-color: #e60023;
    color: white;
}

.share-btn.email {
    background-color: #666;
    color: white;
}

/* Featured In Section */
.featured-in {
    padding: 0 20px 80px 20px;
    text-align: center;
}


.featured-label {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.publication-logos,
.publication-logos-row2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.publication-logos-row2 {
    margin-bottom: 0;
}

@media (min-width: 1401px) {
    .publication-logos {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1400px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 40px;
    }
    
    .logo-item img {
        width: 14vw;
        max-width: 350px;
    }
}

@media (max-width: 1200px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 30px;
    }
    
    .logo-item img {
        width: 10vw;
        max-width: 200px;
        height: 40px;
    }
}

@media (max-width: 1000px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 15px;
    }
    
    .logo-item img {
        width: 7vw;
        max-width: 150px;
        height: 32px;
    }
}

@media (max-width: 900px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 12px;
    }
    
    .logo-item img {
        width: 6vw;
        max-width: 130px;
        height: 30px;
    }
}

@media (max-width: 800px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 10px;
    }
    
    .logo-item img {
        width: 5vw;
        max-width: 120px;
        height: 28px;
    }
}

@media (max-width: 700px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 8px;
    }
    
    .logo-item img {
        width: 4vw;
        max-width: 100px;
        height: 25px;
    }
}

@media (max-width: 600px) {
    .publication-logos,
    .publication-logos-row2 {
        gap: 6px;
    }
    
    .logo-item img {
        width: 3vw;
        max-width: 80px;
        height: 22px;
    }
}

.logo-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    width: 15vw;
    height: auto;
    max-width: 400px;
    max-height: 60px;
    min-width: 180px;
    display: block;
    transition: all 0.3s ease;
    filter: grayscale(0) brightness(1);
}

.logo-item:hover {
    opacity: 1;
}

.logo-item:hover img {
    filter: grayscale(0) brightness(2);
}

/* How It Works Section */
.how-it-works {
    padding: 0 0 80px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-dark-card);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-connector {
    position: absolute;
    top: 58px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    z-index: -1;
}

.step:last-child .step-connector {
    display: none;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 0 0 80px 0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 60px auto;
    max-width: 900px;
    width: 100%;
    gap: 40px;
}

.testimonial-header-left {
    flex: 1;
    max-width: 560px;
}

.testimonial-description {
    font-size: 18px;
    color: #a0a0a0;
    margin: 20px 0 30px 0;
    line-height: 1.6;
}

.leave-review-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.leave-review-link:hover {
    color: var(--primary-color);
}

.review-icon {
    width: 16px;
    height: 16px;
}

.testimonial-header .section-title {
    margin-bottom: 0;
    text-align: left;
    font-size: 30px;
}

.rating-large {
    text-align: right;
    background-color: var(--bg-dark-card);
    padding: 20px;
    border-radius: 12px;
    min-width: 200px;
    margin-top: -30px;
}

.stars-large {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 24px;
    margin-bottom: 8px;
}

.star-half-wrapper-large {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.star-empty-large {
    filter: brightness(0.3);
    opacity: 0.5;
}

.star-half-large {
    position: absolute;
    left: 0;
    top: 0;
    clip-path: inset(0 10% 0 0);
}

.rating-number {
    font-size: 36px;
    font-weight: 700;
    margin-left: 10px;
    color: var(--text-light);
}

.rating-subtext {
    font-size: 15px;
    color: var(--text-gray);
}

.testimonial-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.testimonial-subtitle svg {
    width: 20px;
    height: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: var(--bg-dark-card);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

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

.testimonial-header-card {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.verified-badge {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    vertical-align: middle;
}

.testimonial-stars {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.testimonial-stars .star {
    font-size: 15px;
}

.star-half-wrapper-testimonial {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.star-empty-testimonial {
    filter: brightness(0.3);
    opacity: 0.5;
}

.star-half-testimonial {
    position: absolute;
    left: 0;
    top: 0;
    clip-path: inset(0 50% 0 0);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 0 0 80px 0;
}

.faq-label {
    text-align: center;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq .section-title {
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    padding: 0;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 25px 0;
    opacity: 1;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 0 0 100px 0;
    text-align: center;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-gray);
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    opacity: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    /* max-width: 1400px; */
    margin: 0 auto;
}

.footer-email {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    white-space: normal;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Coming Soon Section */
.coming-soon-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.coming-soon-title {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeIn 0.6s ease-out;
}

.coming-soon-subtitle {
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 48px;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.coming-soon-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-gray);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--text-gray);
    transition: width 0.3s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary svg,
.btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    border-color: var(--text-gray);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
        order: -1;
    }

    .hero-image {
        justify-content: center;
    }

    .phone-mockup {
        max-width: 400px;
        margin-top: -50px;
        margin-right: 70px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .step-connector {
        display: none;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .rating-large {
        text-align: left;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 68px);
        flex-direction: column;
        background-color: #000000;
        padding: 40px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 32px;
        width: 100%;
        text-align: center;
        padding: 0;
        color: #ffffff;
        text-decoration: none;
    }

    /* Anchor Member Login and Get Featured to bottom */
    .btn-login {
        margin-top: auto;
        width: 100%;
        font-size: 18px;
        padding: 20px 30px;
        justify-content: center;
    }

    .btn-mobile-cta {
        width: 100%;
        font-size: 18px;
        padding: 20px 30px;
        justify-content: center;
    }

    /* Hero Section */
    .hero-text {
        text-align: center;
        margin-top: 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-rating {
        justify-content: center;
    }

    .rating-badge {
        align-items: center;
    }

    .rating-row {
        flex-direction: column;
        gap: 15px;
    }

    .stars {
        order: -2;
    }

    .avatars {
        order: -1;
    }

    .rating-text {
        text-align: center;
        order: 1;
    }

    /* Coming Soon Section */
    .coming-soon-section {
        padding: 80px 0;
        min-height: calc(100vh - 68px - 80px);
    }

    .coming-soon-cta {
        flex-direction: column;
        align-items: center;
    }

    .coming-soon-cta .btn {
        width: 100%;
        max-width: 400px;
    }

    /* Testimonials Section */
    .testimonial-header {
        align-items: center;
        text-align: center;
    }

    .testimonial-header-left {
        max-width: 100%;
    }

    .testimonial-header .section-title {
        text-align: center;
    }

    .testimonial-description {
        text-align: center;
    }

    .leave-review-link {
        justify-content: center;
    }

    .rating-large {
        text-align: center;
        margin-top: 0;
    }

    .stars-large {
        justify-content: center;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 36px;
    }

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

    .press-card {
        flex: 0 0 280px;
        width: 280px;
        height: 525px;
    }
    
    /* Mobile: Slightly slower animation */
    .press-carousel {
        animation: scroll 30s linear infinite;
    }


    .btn {
        width: 100%;
        max-width: 405px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    /* Consistent mobile padding */
    .navbar {
        padding: 20px;
    }

    .container,
    .container-wide {
        padding: 0 20px;
    }

    .hero {
        padding: 200px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .btn {
        width: 100%;
        max-width: 405px;
        height: 70px;
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .step-title {
        font-size: 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .how-it-works,
    .testimonials,
    .faq,
    .final-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Publication Logos - One per row, uniform height */
    .publication-logos,
    .publication-logos-row2 {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .publication-logos-row2 {
        margin-bottom: 0;
    }

    .logo-item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 50px;
    }

    .logo-item img {
        width: 200px;
        height: auto;
        max-height: 40px;
        object-fit: contain;
        max-width: 100%;
    }
    
    .publication-logos,
    .publication-logos-row2 {
        overflow-x: hidden;
        flex-wrap: wrap;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 255, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(192, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(192, 255, 0, 0);
    }
}

.hero-content,
.press-card,
.step,
.testimonial-card {
    animation: fadeIn 0.6s ease-out;
}

/* Desktop only: max-width constraint */
@media (min-width: 769px) {
    .hero-content,
    .press-card,
    .step,
    .testimonial-card {
        max-width: 87vw;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================================================
   LOGIN PAGE STYLES
   ============================================================================ */

/* Login Section - Simplified */
body.login-page .login-section {
    min-height: 100vh !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: #000000 !important;
    position: relative !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 20px !important;
    z-index: 9999 !important;
}

body.login-page .login-container {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 20px !important;
    max-width: 560px !important;
    width: 100% !important;
    margin: 0 auto !important;
    border: none !important;
    box-shadow: none !important;
    position: relative !important;
    z-index: 10 !important;
    animation: fadeIn 0.6s ease-out !important;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.login-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.login-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Form Styles */
.login-form {
    margin-bottom: 32px;
}

.login-form .btn-primary {
    width: 100%;
    display: block;
    height: 60px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-form .form-group:nth-child(1) {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.login-form .form-group:nth-child(2) {
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.form-options {
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.btn-login-submit {
    animation: fadeIn 0.6s ease-out 0.5s both;
}

.login-divider {
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.social-login {
    animation: fadeIn 0.6s ease-out 0.7s both;
}

.login-footer {
    animation: fadeIn 0.6s ease-out 0.8s both;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-input {
    width: 100% !important;
    max-width: 100% !important;
    height: 56px;
    padding: 0 20px;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: block;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(192, 255, 0, 0.1);
}

.form-input::placeholder {
    color: var(--text-gray);
}

.password-input-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-color);
    background-color: rgba(192, 255, 0, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-gray);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 9px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: -1px;
}

.checkbox-label {
    font-size: 14px;
    color: var(--text-light);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--text-light);
}

.btn-login-submit {
    width: 100% !important;
    max-width: 100% !important;
    height: 56px;
    font-size: 18px;
    margin-bottom: 0;
    display: block;
}

/* Login Divider */
.login-divider {
    text-align: center;
    margin: 32px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-gray);
}

.login-divider span {
    background-color: var(--bg-dark-card);
    color: var(--text-gray);
    padding: 0 20px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Social Login */
.social-login {
    margin-bottom: 32px;
}

.btn-social {
    width: 100% !important;
    max-width: 100% !important;
    height: 56px;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-gray);
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-sizing: border-box;
}

.btn-social:hover {
    border-color: var(--primary-color);
    background-color: rgba(192, 255, 0, 0.05);
    transform: translateY(-2px);
}


/* Login Footer */
.login-footer {
    text-align: center;
}

.login-footer p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.signup-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: var(--text-light);
}

.back-to-home {
    margin-top: 20px;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.back-link:hover {
    color: var(--primary-color);
    border-color: var(--border-gray);
    background-color: rgba(192, 255, 0, 0.05);
}

/* Responsive Login - Bulletproof & Polished */

/* Large Tablet and Below */
@media (max-width: 1024px) {
    body.login-page .login-section {
        padding: 40px 20px !important;
    }
    
    body.login-page .login-container {
        padding: 30px 20px !important;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    body.login-page .login-section {
        padding: 30px 20px !important;
    }
    
    body.login-page .login-container {
        padding: 20px 16px !important;
        max-width: 100% !important;
    }
    
    .login-header {
        margin-bottom: 32px;
    }
    
    .login-title {
        font-size: 36px;
    }
    
    .login-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input {
        height: 52px;
        font-size: 16px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .btn-login-submit,
    .btn-social {
        height: 54px;
        font-size: 17px;
    }
    
    .login-divider {
        margin: 28px 0;
    }
    
    .social-login {
        margin-bottom: 28px;
    }
}

/* Mobile Large */
@media (max-width: 480px) {
    .back-to-home-nav {
        top: 20px !important;
        left: 20px !important;
    }
    
    .back-link-nav {
        font-size: 13px !important;
        padding: 6px 10px !important;
    }
    
    body.login-page .login-section {
        padding: 20px 16px !important;
    }
    
    body.login-page .login-container {
        padding: 16px 12px !important;
    }
    
    .login-header {
        margin-bottom: 28px;
    }
    
    .login-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .login-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-input {
        height: 50px;
        padding: 0 16px;
        font-size: 16px;
    }
    
    .password-toggle {
        right: 12px;
    }
    
    .checkbox-label,
    .forgot-password {
        font-size: 13px;
    }
    
    .btn-login-submit,
    .btn-social {
        height: 52px;
        font-size: 16px;
    }
    
    .login-divider {
        margin: 24px 0;
        font-size: 13px;
    }
    
    .social-login {
        margin-bottom: 24px;
    }
    
    .login-footer p {
        font-size: 13px;
    }
    
    .back-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    body.login-page .login-section {
        padding: 16px 12px !important;
    }
    
    body.login-page .login-container {
        padding: 12px 8px !important;
    }
    
    .login-title {
        font-size: 28px;
    }
    
    .login-subtitle {
        font-size: 13px;
    }
    
    .form-input {
        height: 48px;
        padding: 0 14px;
        font-size: 15px;
    }
    
    .btn-login-submit,
    .btn-social {
        height: 50px;
        font-size: 15px;
    }
}

/* Landscape Orientation - All Sizes */
@media (max-height: 700px) and (orientation: landscape) {
    body.login-page .login-section {
        padding: 20px !important;
    }
    
    body.login-page .login-container {
        padding: 16px !important;
    }
    
    .login-header {
        margin-bottom: 20px;
    }
    
    .login-title {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .login-subtitle {
        font-size: 14px;
    }
    
    .form-group {
        margin-bottom: 14px;
    }
    
    .form-input {
        height: 46px;
    }
    
    .form-options {
        margin-bottom: 18px;
    }
    
    .btn-login-submit,
    .btn-social {
        height: 48px;
        font-size: 15px;
    }
    
    .login-divider {
        margin: 18px 0;
    }
    
    .social-login {
        margin-bottom: 18px;
    }
}

/* Very Short Screens (Landscape Mobile) */
@media (max-height: 500px) and (orientation: landscape) {
    body.login-page .login-section {
        padding: 12px !important;
        align-items: flex-start !important;
    }
    
    body.login-page .login-container {
        padding: 12px !important;
    }
    
    .login-header {
        margin-bottom: 16px;
    }
    
    .login-title {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .login-subtitle {
        font-size: 13px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-input {
        height: 42px;
        font-size: 14px;
    }
    
    .form-options {
        margin-bottom: 14px;
    }
    
    .btn-login-submit,
    .btn-social {
        height: 44px;
        font-size: 14px;
    }
    
    .login-divider {
        margin: 14px 0;
    }
    
    .social-login {
        margin-bottom: 14px;
    }
    
    .login-footer {
        margin-top: 8px;
    }
}

/* High Resolution Displays */
@media (min-width: 1440px) {
    body.login-page .login-container {
        max-width: 520px !important;
    }
}

/* Extra Wide Displays */
@media (min-width: 1920px) {
    body.login-page .login-container {
        max-width: 600px !important;
    }
}

/* ============================================================================
   CLIENTS PAGE STYLES
   ============================================================================ */

/* Clients Hero Section */
.clients-hero {
    flex: 1;
    padding: 160px 0 80px;
    background-color: #000000;
}

.clients-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.clients-hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.clients-hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.6;
    animation: fadeIn 0.6s ease-out 0.2s both;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Clients Gallery Section */
.clients-gallery {
    padding: 0;
    background-color: var(--bg-dark);
    width: 100%;
}

.clients-gallery .image-grid {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* Clients CTA Section */
.clients-cta {
    padding: 80px 0 100px;
    text-align: center;
    background-color: #000000;
}

.clients-cta .cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease-out;
}

.clients-cta .cta-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.6s ease-out 0.1s both;
}


/* Publication Selection Page */
.publication-selection {
    flex: 1;
    padding: 140px 0 100px;
    background-color: #000000;
}

.selection-title {
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease-out;
}

.selection-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

.publication-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.publication-card {
    background-color: var(--bg-dark-card);
    border-radius: 16px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.publication-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: left 0.4s ease;
    z-index: 1;
}

.publication-card:hover::before {
    left: 0;
}

.publication-card:hover {
    transform: scale(1.05);
}

.publication-card img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
    position: relative;
    z-index: 2;
}

.publication-card:hover img {
    filter: brightness(0) invert(0);
}

.publication-card.coming-soon {
    cursor: default;
    grid-column: span 2;
}

.publication-card.coming-soon::before {
    display: none;
}

.publication-card.coming-soon:hover {
    transform: none;
}

.coming-soon-text {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.coming-soon-text::before {
    content: 'More coming soon...';
    transition: opacity 0.3s ease;
}

.coming-soon-text::after {
    content: 'Come back later!';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.publication-card.coming-soon:hover .coming-soon-text::before {
    opacity: 0;
}

.publication-card.coming-soon:hover .coming-soon-text::after {
    opacity: 1;
}

/* Responsive Publication Selection */
@media (max-width: 1024px) {
    .publication-grid {
        gap: 20px;
    }

    .publication-card {
        padding: 50px 30px;
        min-height: 160px;
    }

    .selection-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .publication-selection {
        padding: 120px 0 80px;
    }

    .selection-title {
        font-size: 36px;
    }

    .selection-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .publication-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .publication-card {
        padding: 40px 20px;
        min-height: 140px;
    }

    .publication-card img {
        max-height: 50px;
    }

    .publication-card.coming-soon {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .publication-selection {
        padding: 100px 0 60px;
    }

    .selection-title {
        font-size: 28px;
    }

    .selection-subtitle {
        font-size: 14px;
    }

    .publication-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .publication-card {
        padding: 30px 20px;
        min-height: 120px;
    }

    .publication-card img {
        max-height: 40px;
    }

    .publication-card.coming-soon {
        grid-column: span 1;
    }
}

/* Legal Pages (Privacy Policy & Terms of Service) */
.legal-container {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 40px 100px;
    color: var(--text-gray);
    line-height: 1.8;
    animation: fadeIn 0.6s ease-out;
}

.legal-container h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease-out 0.1s both;
}

/* Go2 Page Styles */
.go2-hero {
    padding: 140px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.go2-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.go2-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 30px;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.go2-title {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-light);
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.go2-publications {
    padding: 80px 0;
}

.go2-section-label {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: center;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.go2-section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

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

.go2-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: go2FadeIn 0.6s ease-out both;
}

@keyframes go2FadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.go2-card:nth-child(1) { animation-delay: 0.6s; }
.go2-card:nth-child(2) { animation-delay: 0.65s; }
.go2-card:nth-child(3) { animation-delay: 0.7s; }
.go2-card:nth-child(4) { animation-delay: 0.75s; }
.go2-card:nth-child(5) { animation-delay: 0.8s; }
.go2-card:nth-child(6) { animation-delay: 0.85s; }
.go2-card:nth-child(7) { animation-delay: 0.9s; }
.go2-card:nth-child(8) { animation-delay: 0.95s; }
.go2-card:nth-child(9) { animation-delay: 1s; }
.go2-card:nth-child(10) { animation-delay: 1.05s; }

.go2-card:hover {
    transform: translateY(-4px) !important;
}

.go2-card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.go2-card-button {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    border-radius: 50px;
    padding: 20px 30px;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.go2-card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.go2-card:hover .go2-card-button {
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

.go2-card:hover .go2-card-button::before {
    left: 0;
}

@media (max-width: 1024px) {
    .go2-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .go2-hero {
        padding: 100px 0 40px;
    }
    
    .go2-avatar {
        width: 100px;
        height: 100px;
    }
    
    .go2-title {
        font-size: 20px;
    }
    
    .go2-publications {
        padding: 60px 0;
    }
    
    .go2-section-label {
        font-size: 24px;
    }
    
    .go2-section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .go2-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    
    .go2-card-button {
        font-size: 18px;
        padding: 18px 25px;
        min-height: 70px;
    }
}

@media (max-width: 576px) {
    .go2-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .go2-card-button {
        font-size: 19px;
    }
}

.legal-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 60px;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.legal-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 16px;
    animation: fadeIn 0.6s ease-out 0.25s both;
}

.legal-container h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 12px;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.legal-container p {
    margin-bottom: 20px;
    font-size: 16px;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.legal-container em {
    color: var(--text-gray);
    font-style: italic;
}

.legal-container strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
    animation: fadeIn 0.6s ease-out 0.35s both;
}

.legal-container li {
    margin-bottom: 12px;
    font-size: 16px;
}

.legal-container ol > li {
    padding-left: 10px;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.legal-container hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 50px 0;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.legal-container .accent-dot {
    color: var(--primary-color);
}

/* Table of Contents styling */
.legal-container > ol:first-of-type {
    background-color: var(--bg-dark-card);
    padding: 30px 40px;
    border-radius: 16px;
    margin: 40px 0;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.legal-container > ol:first-of-type li {
    margin-bottom: 8px;
}

.legal-container > ol:first-of-type a {
    color: var(--text-gray);
    font-weight: 500;
}

.legal-container > ol:first-of-type a:hover {
    color: var(--primary-color);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-container {
        padding: 120px 30px 80px;
    }

    .legal-container h1 {
        font-size: 36px;
    }

    .legal-container h2 {
        font-size: 28px;
        margin-top: 50px;
    }

    .legal-container h3 {
        font-size: 22px;
    }

    .legal-container h4 {
        font-size: 18px;
    }

    .legal-container > ol:first-of-type {
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 100px 20px 60px;
    }

    .legal-container h1 {
        font-size: 28px;
    }

    .legal-container h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .legal-container h3 {
        font-size: 20px;
    }

    .legal-container p,
    .legal-container li {
        font-size: 15px;
    }
}

/* Responsive Clients Page */
@media (max-width: 768px) {
    .clients-hero {
        padding: 140px 0 60px;
    }
    
    .clients-hero-title {
        font-size: 40px;
    }
    
    .clients-hero-subtitle {
        font-size: 16px;
    }
    
    .clients-gallery {
        padding: 0;
    }
    
    .clients-cta {
        padding: 60px 0 80px;
    }
    
    .clients-cta .cta-title {
        font-size: 36px;
    }
    
    .clients-cta .cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .clients-hero {
        padding: 120px 0 40px;
    }
    
    .clients-hero-title {
        font-size: 32px;
    }
    
    .clients-hero-subtitle {
        font-size: 15px;
    }
    
    .clients-cta .cta-title {
        font-size: 28px;
    }
}

/* Inline Form Error */
.form-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    animation: slideInUp 0.3s ease-out;
    text-align: center;
}

.form-error svg {
    flex-shrink: 0;
    color: #ef4444;
}

/* Legacy Error Message (keeping for other pages) */
.error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
}

.error-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.error-content svg {
    flex-shrink: 0;
}

/* Dialog Styles */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.dialog {
    background: var(--bg-dark-card);
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.3s ease-out;
}

.dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.dialog-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.dialog-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.dialog-close:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

.dialog-content {
    padding: 0 24px 24px 24px;
}

.dialog-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.forgot-form .form-group {
    margin-bottom: 24px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================================================
   GALLERY SYSTEM STYLES (merged from css/gallery.css)
   ============================================================================ */

@keyframes shimmer-ltr {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes shimmer-rtl {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton {
    background-color: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0, #e0e0e0, #f0f0f0);
    background-size: 200% 100%;
    border-radius: 0.21vw;
}

.skeleton.shimmer-ltr {
    animation: shimmer-ltr 1.5s infinite;
}

.skeleton.shimmer-rtl {
    animation: shimmer-rtl 1.5s infinite;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    cursor: pointer;
}

.image-grid a.grid-item {
    padding-top: 100%; /* Aspect ratio 1:1 for perfect squares */
    position: relative;
    overflow: hidden;
    display: block;
    opacity: 0;
    animation: fadeIn 0.6s ease-out both;
}

.grid-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-item .skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.grid-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    opacity: 0;
    transition: filter 0.3s ease, transform 2s ease, opacity 0.6s ease;
}

.grid-item img.loaded {
    opacity: 1;
}

.grid-item:hover img {
    filter: brightness(0.4);
    transform: scale(1.1);
}

.grid-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 0.78vw, 15px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.grid-item:hover .grid-item-overlay {
    opacity: 1;
}

.article-title {
    margin: 0;
    font-size: clamp(16px, 1.04vw, 24px);
    font-weight: 500;
    text-align: center;
    text-shadow: 0 0.05vw 0.21vw rgba(0,0,0,0.5);
    width: 80%;
}

.read-now-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: clamp(10px, 0.68vw, 14px) clamp(20px, 1.09vw, 28px);
    margin-top: clamp(12px, 1.04vw, 20px);
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.read-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #C0FF00;
    transition: left 0.4s ease;
    z-index: -1;
}

.read-now-btn:hover::before {
    left: 0;
}

.image-grid a:focus,
.image-grid a:hover {
    outline: none;
}

@media (max-width: 1100px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================
   404 ERROR PAGE STYLES
   ================================ */

.error-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.error-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: radial-gradient(circle at 50% 50%, rgba(192, 255, 0, 0.03) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.error-section::before {
    content: '404';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40vw;
    font-weight: 900;
    color: rgba(192, 255, 0, 0.02);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.error-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.error-content {
    animation: fadeInUp 0.8s ease-out;
}

.error-title {
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 0 0 60px rgba(192, 255, 0, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

.error-subtitle {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.error-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.error-actions .btn {
    min-width: 180px;
}

.error-actions .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.error-actions .btn-primary svg {
    transition: transform 0.3s ease;
}

.error-actions .btn-primary:hover svg {
    transform: translateX(4px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 60px rgba(192, 255, 0, 0.3),
                     0 0 100px rgba(192, 255, 0, 0.1);
    }
    50% {
        text-shadow: 0 0 80px rgba(192, 255, 0, 0.5),
                     0 0 120px rgba(192, 255, 0, 0.2);
    }
}

/* Responsive 404 Page */
@media (max-width: 768px) {
    .error-section {
        padding: 60px 20px;
    }
    
    .error-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .error-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .error-section {
        padding: 40px 20px;
    }
    
    .error-title {
        margin-bottom: 15px;
    }
    
    .error-subtitle {
        margin-bottom: 15px;
    }
    
    .error-description {
        margin-bottom: 30px;
    }
}

