/* ============================================
   SEOVALLY Landing Page Styles
   ============================================ */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --dark-card: #1e293b;
    --dark-border: #334155;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- Navigation ---- */
.nav {
    /* The shared header stays visible without covering the first page block. */
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.nav.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.home-page .hero { padding-top: 68px; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.nav-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

.nav-logo-text span {
    color: var(--primary-light);
}

/* Text links sit centered; actions (account / theme / CTA) on the right. */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(99, 102, 241, 0.1);
}

.nav-link.active {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.15);
}

/* Right-side action cluster: account menu, theme toggle, one primary CTA. */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 24px;
    flex-shrink: 0;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-btn-outline {
    color: var(--text);
    background: transparent;
    border: 1px solid var(--dark-border);
}

.nav-btn-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.nav-btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.nav-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

/* ---- Hero Section ---- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 96px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-gradient);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ---- URL input — the hero's focal point ---- */
.hero-form {
    max-width: 660px;
    margin: 0 auto;
}

.hero-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(129, 140, 248, 0.45);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.06), 0 12px 40px rgba(79, 70, 229, 0.28);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-input:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.22), 0 16px 48px rgba(79, 70, 229, 0.35);
}

.hero-input input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 17px;
    font-family: inherit;
    outline: none;
}

.hero-input input::placeholder {
    color: #64748b;
}

.hero-input button {
    padding: 16px 34px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
    flex-shrink: 0;
}

.hero-input button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
}

/* Press feedback on click */
.hero-input button:active,
.nav-btn-primary:active {
    transform: translateY(0) scale(0.96);
    filter: brightness(1.08);
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.35);
}

.micro-trust {
    font-size: 13px;
    color: var(--text-muted);
    margin: 14px auto 0;
    letter-spacing: 0.1px;
}

/* Inline pre-flight error under the hero form (dead / blocked / parked /
   for-sale / empty websites are rejected here instead of redirecting). */
.hero-error {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    max-width: 660px;
    margin: 16px auto 0;
    padding: 12px 16px;
    border: 1px solid rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
}
.hero-error[hidden] { display: none; }
.hero-error-icon { font-size: 19px; line-height: 1.4; flex-shrink: 0; }
.hero-error-body strong { display: block; font-size: 14.5px; color: var(--error, #ef4444); }
.hero-error-body p { font-size: 13.5px; color: var(--text-muted); margin: 4px 0 0; line-height: 1.55; }

/* ---- Stats (grouped unit under the CTA) ---- */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin: 48px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    max-width: 640px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---- Section scaffolding ---- */
.section {
    padding: 110px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Tools Grid ---- */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tool-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.tool-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tool-card:hover::before {
    opacity: 1;
}

/* Premium cards get a clearly distinct gold treatment */
.tool-card-premium {
    border-color: rgba(245, 158, 11, 0.28);
    background:
        linear-gradient(180deg, rgba(245, 158, 11, 0.055) 0%, rgba(245, 158, 11, 0.012) 32%, var(--dark-card) 60%);
}

.tool-card-premium::before {
    background: linear-gradient(90deg, var(--warning), #fbbf24);
}

.tool-card-premium:hover {
    border-color: rgba(245, 158, 11, 0.65);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(245, 158, 11, 0.12) inset;
}

.tool-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(245, 158, 11, 0.13);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fbbf24;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

:root[data-theme='light'] .tool-card-badge { color: #b45309; }

/* Icon tiles — inline SVG in a soft color tile (one consistent system) */
.tool-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

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

.tool-card-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.tool-card-icon.green { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.tool-card-icon.purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.tool-card-icon.cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.tool-card-icon.amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.tool-card-icon.rose { background: rgba(244, 63, 94, 0.15); color: #fb7185; }

:root[data-theme='light'] .tool-card-icon.blue { color: #2563eb; }
:root[data-theme='light'] .tool-card-icon.green { color: #059669; }
:root[data-theme='light'] .tool-card-icon.purple { color: #7c3aed; }
:root[data-theme='light'] .tool-card-icon.cyan { color: #0e7490; }
:root[data-theme='light'] .tool-card-icon.amber { color: #b45309; }
:root[data-theme='light'] .tool-card-icon.rose { color: #e11d48; }

.tool-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: auto; /* pins description + action to the bottom of equal-height cards */
}

/* Visible action button so cards clearly read as clickable */
.tool-card-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    margin-top: 20px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.35);
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.2s;
}

.tool-card-action svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}

.tool-card:hover .tool-card-action {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.tool-card:hover .tool-card-action svg {
    transform: translateX(2px);
}

/* Premium variant in gold */
.tool-card-action-premium {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
}

.tool-card-premium:hover .tool-card-action-premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

:root[data-theme='light'] .tool-card-action { color: #4f46e5; }
:root[data-theme='light'] .tool-card-action-premium { color: #b45309; }
/* The hover fill must win over the resting light-theme text colors,
   otherwise the label stays dark indigo on the indigo gradient. */
:root[data-theme='light'] .tool-card:hover .tool-card-action,
:root[data-theme='light'] .tool-card-premium:hover .tool-card-action-premium { color: #fff; }

/* ---- Why SEOVally — icon-left rows instead of another card grid ---- */
.features-section {
    max-width: 1080px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 26px;
    border-radius: 18px;
    background: rgba(148, 163, 184, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: all 0.25s;
}

.feature-item:hover {
    background: rgba(148, 163, 184, 0.07);
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-2px);
}

.feature-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-icon svg {
    width: 25px;
    height: 25px;
}

.feature-item-icon.blue { background: rgba(59, 130, 246, 0.14); color: #60a5fa; }
.feature-item-icon.green { background: rgba(16, 185, 129, 0.14); color: #34d399; }
.feature-item-icon.purple { background: rgba(139, 92, 246, 0.14); color: #a78bfa; }
.feature-item-icon.cyan { background: rgba(6, 182, 212, 0.14); color: #22d3ee; }
.feature-item-icon.amber { background: rgba(245, 158, 11, 0.14); color: #fbbf24; }
.feature-item-icon.rose { background: rgba(244, 63, 94, 0.14); color: #fb7185; }

:root[data-theme='light'] .feature-item-icon.blue { color: #2563eb; }
:root[data-theme='light'] .feature-item-icon.green { color: #059669; }
:root[data-theme='light'] .feature-item-icon.purple { color: #7c3aed; }
:root[data-theme='light'] .feature-item-icon.cyan { color: #0e7490; }
:root[data-theme='light'] .feature-item-icon.amber { color: #b45309; }
:root[data-theme='light'] .feature-item-icon.rose { color: #e11d48; }

.feature-item-text h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-item-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- Footer ---- */
.footer {
    border-top: 1px solid var(--dark-border);
    padding: 64px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* ---- Hamburger & Mobile Drawer ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--dark-border);
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.hamburger:hover { background: rgba(99, 102, 241, 0.1); border-color: var(--primary); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
    margin: 0 auto;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-drawer {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 8px 24px 24px;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    animation: slideDown 0.25s ease;
}
.mobile-drawer.open { display: flex; }

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

.mobile-drawer a {
    color: var(--text);
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    transition: background 0.2s;
    display: block;
}
.mobile-drawer a:hover { background: rgba(99, 102, 241, 0.1); }
.mobile-drawer .mobile-divider { height: 1px; background: var(--dark-border); margin: 10px 0; }
.mobile-drawer .mobile-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    margin-top: 12px;
    font-family: inherit;
}
.mobile-drawer .mobile-btn-outline { color: var(--text); border: 1px solid var(--dark-border); background: transparent; cursor: pointer; }
.mobile-drawer .mobile-btn-outline:hover { border-color: var(--primary); }
.mobile-drawer .mobile-btn-primary { color: white; background: var(--primary); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .nav {
        padding: 0 20px;
    }

    /* Mobile header layout: hamburger left, logo dead-center, actions (theme) right */
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger {
        display: flex;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    #mainNav .nav-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }
    .nav-actions {
        margin-left: auto;
        gap: 8px;
        min-height: 38px;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .home-page .hero {
        padding-top: 24px;
    }

    .hero {
        padding: 96px 20px 44px;
    }

    .hero p {
        margin-bottom: 28px;
    }

    .hero-input {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

    .hero-input input {
        text-align: center;
    }

    .hero-input button {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 32px;
        padding-top: 20px;
    }

    .section {
        padding: 48px 20px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .footer {
        padding: 48px 20px 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-top: 28px;
    }
}

@media (max-width: 640px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 16.5px;
    }

    .hero-stat-value {
        font-size: 24px;
    }

    .hero-stats {
        gap: 20px;
    }
}

/* ---- Simple info pages (About / Privacy / Terms / Contact) ---- */
.info-main {
    padding: 68px 24px 90px;
    max-width: 860px;
    margin: 0 auto;
}

.info-wrap {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 48px 52px;
}

.info-crumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.info-crumb a {
    color: var(--primary-light);
    text-decoration: none;
}

.info-crumb a:hover {
    text-decoration: underline;
}

.info-wrap h1 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.info-intro {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 12px;
}

.info-block {
    padding: 22px 0 4px;
}

.info-block h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.info-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

@media (max-width: 640px) {
    .info-main { padding: 48px 16px 60px; }
    .info-wrap { padding: 32px 24px; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}
