/* ============================================================
   FanRelay — Main Stylesheet
   Extracted 1:1 from approved static HTML files
   ============================================================ */

/* CSS Variables */
:root {
    --primary-blue: #0055FF;
    --primary-blue-hover: #0044cc;
    --secondary-orange: #FF6B00;
    --secondary-orange-hover: #e66000;
    --dark-navy: #0B1220;
    --light-gray: #F8FAFC;
    --white: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748b;
    --transition: all 0.3s ease;
}

/* Base & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--dark-navy);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-family: 'Nunito', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(0, 85, 255, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--secondary-orange);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(255, 107, 0, 0.39);
}

.btn-orange:hover {
    background-color: var(--secondary-orange-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

header.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 66px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-navy);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    padding: 0.25rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    margin: 0 0.5rem;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--white);
    color: var(--dark-navy);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.lang-btn:hover:not(.active) {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-navy);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2942 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0,85,255,0.3) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 90%;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

/* ============================================================
   GLASSMORPHISM CARD (Hero Form)
   ============================================================ */
.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-card h3 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
}

/* 2-step progress */
.form-steps-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.form-step-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.form-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: transparent;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.form-step-dot.active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
}

.form-step-dot.done {
    border-color: #10b981;
    background: #10b981;
    color: white;
}

.form-step-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    transition: var(--transition);
}

.form-step-label.active { color: rgba(255,255,255,0.9); }

.form-step-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.15);
    margin: 0 0.5rem;
    border-radius: 2px;
    overflow: hidden;
}

.form-step-line-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-blue);
    transition: width 0.4s ease;
}

.form-step-line-fill.done { width: 100%; }

.form-step-panel { display: none; }
.form-step-panel.active { display: block; }

.form-step-subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    color: #cbd5e1;
}

.form-control {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
    color: #64748b;
}

.form-control option {
    color: var(--dark-navy);
    background: var(--white);
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.interest-tag {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    color: #cbd5e1;
    user-select: none;
}

.interest-tag:hover,
.interest-tag.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.form-message {
    display: none;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    text-align: center;
}

.form-error {
    display: none;
    color: #f87171;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

/* Light variant forms (contact/partner pages) */
.form-group-light label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-navy);
}

.form-control-light {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: var(--white);
    color: var(--dark-navy);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-control-light::placeholder {
    color: #94a3b8;
}

.form-message-light {
    display: none;
    padding: 1rem;
    background: rgba(16,185,129,0.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    text-align: center;
}

/* Honeypot */
.fanrelay-hp { display: none !important; }

/* ============================================================
   SECTIONS GENERAL
   ============================================================ */
section {
    padding: 6rem 0;
}

/* ============================================================
   FEATURES GRID / CARDS
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 66px;
    border-radius: 12px;
    background: rgba(0, 85, 255, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card.orange .feature-icon {
    background: rgba(255, 107, 0, 0.1);
    color: var(--secondary-orange);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* ============================================================
   LEGAL / TRUST SECTION
   ============================================================ */
.legal-section {
    background: var(--dark-navy);
    color: var(--white);
}

.legal-section h2 {
    color: var(--white);
}

.legal-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.legal-text {
    flex: 1;
}

.legal-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.legal-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-orange);
    margin-bottom: 1rem;
}

/* ============================================================
   CONTESTS SHOWCASE
   ============================================================ */
.contests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contest-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.contest-img {
    height: 160px;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.contest-content {
    padding: 1.5rem;
}

.contest-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 85, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contest-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* ============================================================
   EXPLORE LINKS (Quick Link Bar)
   ============================================================ */
.explore-links-section {
    background: var(--light-gray);
    padding: 3rem 0;
}

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

.explore-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
}

.explore-link-card:hover {
    box-shadow: 0 4px 20px rgba(0,85,255,0.1);
    border-color: #0055FF;
}

.explore-link-card .el-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.explore-link-card .el-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
}

.price-card.popular {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.price-card ul {
    text-align: left;
    margin: 2rem 0;
}

.price-card ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-navy);
    font-size: 1.125rem;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-muted);
    display: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
    border-radius: 24px;
    margin: 2rem auto;
    max-width: 1200px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--dark-navy);
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: inline-block;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

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

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

/* ============================================================
   INNER HERO (inner pages dark nav banner)
   ============================================================ */
.inner-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2942 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0,85,255,0.3) 0%, transparent 70%);
}

.inner-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.inner-hero p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.inner-hero .breadcrumb {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    position: relative;
}

.inner-hero .breadcrumb a {
    color: #0055FF;
    text-decoration: none;
}

/* ============================================================
   PAGE SECTIONS
   ============================================================ */
.page-section {
    padding: 5rem 0;
}

.page-section.bg-gray { background: var(--light-gray); }
.page-section.bg-white { background: var(--white); }

/* Legal/Terms/Privacy content */
.inner-content-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.inner-content-wrap h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--dark-navy);
}

.inner-content-wrap h2:first-child { margin-top: 0; }

.inner-content-wrap p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.inner-content-wrap ul {
    margin: 1rem 0 1rem 1.5rem;
}

.inner-content-wrap ul li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* ============================================================
   BLOG / SINGLE POST
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.blog-card .blog-thumb {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-orange));
    overflow: hidden;
}

.blog-card .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content .post-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.single-post-content p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.single-post-content h2,
.single-post-content h3 {
    margin: 2rem 0 1rem;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
    text-align: center;
    padding: 8rem 1.5rem;
}

.page-404 h1 {
    font-size: 8rem;
    color: var(--primary-blue);
    opacity: 0.2;
    line-height: 1;
}

.page-404 h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,85,255,0.4);
    transition: var(--transition);
    z-index: 999;
}

#backToTop.visible { display: flex; }
#backToTop:hover { transform: translateY(-3px); }

/* ============================================================
   WORDPRESS-SPECIFIC CLASSES
   ============================================================ */
.wp-caption {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem;
    max-width: 100%;
}

.wp-caption img { display: block; }

.wp-caption-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.35rem;
    padding: 0 0.5rem 0.25rem;
}

.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Opportunities filter */
.opportunities-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.opportunities-filter select {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--dark-navy);
    font-size: 0.9rem;
    cursor: pointer;
}

.opportunities-filter select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Signup page standalone */
.signup-standalone {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2942 100%);
    padding: 8rem 1.5rem 4rem;
    position: relative;
}

.signup-standalone::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0,85,255,0.3) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}

.signup-standalone .hero-card {
    max-width: 540px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 2rem;
    }
    .trust-badges {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .legal-container {
        flex-direction: column;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .inner-hero h1 {
        font-size: 1.8rem;
    }
    .explore-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .two-col {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .explore-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}
