/* SearchRealResults.com - Crypto Educational Website
   Static HTML Version - Shared Stylesheet
*/

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700&family=Manrope:wght@400;600&display=swap');

/* CSS Variables */
:root {
    --background: #030014;
    --foreground: #E2E8F0;
    --primary: #7000FF;
    --primary-light: rgba(112, 0, 255, 0.1);
    --secondary: #00C2FF;
    --secondary-light: rgba(0, 194, 255, 0.1);
    --accent: #FF0080;
    --accent-light: rgba(255, 0, 128, 0.1);
    --muted: #1E1B2E;
    --muted-foreground: #94A3B8;
    --border: #2D2B42;
    --card: #0A0A1B;
    --green: #22C55E;
    --red: #EF4444;
    --yellow: #EAB308;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(112, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(0, 194, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(255, 0, 128, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

::selection {
    background: rgba(112, 0, 255, 0.4);
    color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}

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

p {
    color: var(--muted-foreground);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(3, 0, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.logo-text {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--foreground);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--foreground);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link svg {
    width: 16px;
    height: 16px;
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: block;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 0, 20, 0.98);
    padding: 2rem;
    z-index: 99;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    color: var(--muted-foreground);
    transition: all 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(112, 0, 255, 0.9);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--foreground);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(112, 0, 255, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.4);
}

.btn-accent:hover {
    background: rgba(255, 0, 128, 0.9);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

/* Cards */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.glass:hover {
    border-color: rgba(112, 0, 255, 0.3);
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(112, 0, 255, 0.2);
}

.neon-border {
    border: 1px solid rgba(112, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.15);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
}

.badge-primary {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(112, 0, 255, 0.2);
}

.badge-secondary {
    background: var(--secondary-light);
    color: var(--secondary);
    border-color: rgba(0, 194, 255, 0.2);
}

.badge-accent {
    background: var(--accent-light);
    color: var(--accent);
    border-color: rgba(255, 0, 128, 0.2);
}

.badge-green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
    border-color: rgba(34, 197, 94, 0.2);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(112, 0, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(-50%, -50%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(0, 194, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(50%, 50%);
}

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

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(112, 0, 255, 0.5);
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-card.featured {
    grid-column: span 2;
}

.stat-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-foreground);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .badge {
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

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

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon.primary {
    background: var(--primary-light);
    color: var(--primary);
}

.feature-icon.secondary {
    background: var(--secondary-light);
    color: var(--secondary);
}

.feature-icon.accent {
    background: var(--accent-light);
    color: var(--accent);
}

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

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
}

/* Wallet Cards Grid */
.wallets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .wallets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wallets-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wallet-card {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.wallet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(112, 0, 255, 0.1), transparent);
    transition: left 0.5s;
}

.wallet-card:hover::before {
    left: 100%;
}

.wallet-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.wallet-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.wallet-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.wallet-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    width: 16px;
    height: 16px;
    color: var(--yellow);
}

.star.empty {
    color: rgba(148, 163, 184, 0.3);
}

.wallet-description {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wallet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.wallet-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

.wallet-feature.dex {
    background: var(--secondary-light);
    color: var(--secondary);
}

.wallet-feature.staking {
    background: var(--primary-light);
    color: var(--primary);
}

.wallet-feature.nft {
    background: var(--accent-light);
    color: var(--accent);
}

.wallet-assets {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.wallet-actions {
    display: flex;
    gap: 0.75rem;
}

.wallet-actions .btn {
    flex: 1;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

/* Ad Zone */
.ad-zone {
    border: 1px dashed rgba(112, 0, 255, 0.3);
    background: rgba(112, 0, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.ad-zone-label {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sponsored-label {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    background: rgba(30, 27, 46, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Newsletter */
.newsletter {
    padding: 2rem;
}

.newsletter h3 {
    margin-bottom: 0.5rem;
}

.newsletter p {
    margin-bottom: 1.5rem;
}

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

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: var(--foreground);
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(112, 0, 255, 0.2);
}

.newsletter-input::placeholder {
    color: var(--muted-foreground);
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .quick-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quick-link {
    padding: 2rem;
    transition: all 0.3s;
}

.quick-link:hover {
    transform: translateY(-4px);
}

.quick-link svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.quick-link h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.quick-link p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.quick-link .link-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: gap 0.3s;
}

.quick-link:hover .link-text {
    gap: 1rem;
}

.quick-link.primary svg,
.quick-link.primary .link-text {
    color: var(--primary);
}

.quick-link.secondary svg,
.quick-link.secondary .link-text {
    color: var(--secondary);
}

.quick-link.accent svg,
.quick-link.accent .link-text {
    color: var(--accent);
}

/* Disclaimer Banner */
.disclaimer-banner {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 128, 0.3);
    background: rgba(255, 0, 128, 0.05);
    margin-bottom: 2rem;
}

.disclaimer-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.disclaimer-banner svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.disclaimer-banner p {
    font-size: 0.875rem;
}

.disclaimer-banner strong {
    color: var(--foreground);
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-disclaimer {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 128, 0.2);
    background: rgba(255, 0, 128, 0.05);
    margin-bottom: 3rem;
}

.footer-disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-disclaimer svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-disclaimer p {
    font-size: 0.875rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-affiliate {
    padding: 1rem;
    background: rgba(30, 27, 46, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.footer-affiliate p {
    font-size: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-links a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-legal-links span {
    color: var(--muted-foreground);
}

.footer-note {
    text-align: center;
    margin-top: 1rem;
}

.footer-note p {
    font-size: 0.75rem;
}

/* Page Header */
.page-header {
    padding: 8rem 0 3rem;
    text-align: center;
}

.page-header .badge {
    margin-bottom: 1rem;
}

.page-header h1 {
    margin-bottom: 1rem;
}

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

.page-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-section h2 svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.content-section h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section p {
    margin-bottom: 1rem;
}

.content-section ul {
    list-style: none;
    margin-left: 1rem;
}

.content-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

.content-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Accordion / FAQ */
.accordion {
    border-radius: 16px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--foreground);
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-header svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 1.5rem 1.25rem;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    font-size: 0.9375rem;
}

.sponsored-faq {
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.sponsored-faq .accordion-header {
    padding-left: 1rem;
}

.sponsored-badge-inline {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 0, 128, 0.2);
    color: var(--accent);
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 600;
    margin-right: 0.75rem;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    background: rgba(30, 27, 46, 0.3);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr:hover {
    background: rgba(112, 0, 255, 0.05);
}

.check-icon {
    color: var(--green);
}

.x-icon {
    color: rgba(148, 163, 184, 0.3);
}

/* Glossary */
.glossary-letter {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.glossary-letter:first-child {
    margin-top: 0;
}

.glossary-letter span {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.glossary-letter .line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.glossary-term {
    padding: 1.5rem;
    margin-bottom: 0.75rem;
    border-left: 2px solid transparent;
    transition: all 0.3s;
}

.glossary-term:hover {
    border-left-color: var(--primary);
    background: rgba(112, 0, 255, 0.05);
    padding-left: 2rem;
}

.glossary-term-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.glossary-term h3 {
    font-size: 1.25rem;
    margin: 0;
}

/* Steps */
.steps {
    position: relative;
}

.step {
    position: relative;
    margin-bottom: 2rem;
}

.step-content {
    padding: 2rem;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-light);
    border: 1px solid rgba(112, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.step-number {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 700;
}

.step-title {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.step-text {
    white-space: pre-line;
}

.step-points {
    list-style: none;
    margin-top: 1rem;
}

.step-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.step-points li svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.step-points li span {
    color: var(--foreground);
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon.primary {
    background: var(--primary-light);
}

.contact-card-icon.secondary {
    background: var(--secondary-light);
}

.contact-card-icon.accent {
    background: var(--accent-light);
}

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

.contact-card-icon.primary svg {
    color: var(--primary);
}

.contact-card-icon.secondary svg {
    color: var(--secondary);
}

.contact-card-icon.accent svg {
    color: var(--accent);
}

.contact-form-wrapper {
    padding: 2rem;
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--foreground);
    font-size: 1rem;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Utilities */
.text-center {
    text-align: center;
}

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

.text-secondary {
    color: var(--secondary);
}

.text-accent {
    color: var(--accent);
}

.text-muted {
    color: var(--muted-foreground);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.hidden {
    display: none !important;
}

@media (min-width: 1024px) {
    .lg\:hidden {
        display: none !important;
    }
    .lg\:block {
        display: block !important;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(112, 0, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(112, 0, 255, 0.5);
}
