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

:root {
    --orange: #ff6b00;
    --orange-bright: #ff9500;
    --orange-neon: #ff4400;
    --red: #ff2200;
    --dark: #050505;
    --dark-purple: #0a0612;
    --purple: #1a0a2e;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

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

/* Background */
.bg-animation {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 68, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26, 10, 46, 0.8) 0%, var(--dark) 70%);
}

.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orange), 0 0 40px var(--orange);
    animation: float 20s infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 88px;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.85) 100%);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 25px rgba(255, 107, 0, 0.9));
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.7));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoPulse 3s ease-in-out infinite;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.7));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.9)) drop-shadow(0 0 60px rgba(255, 68, 0, 0.4));
        transform: scale(1.02);
    }
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 107, 0, 0.08);
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-links a.active {
    color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
}

.nav-links a.active::after {
    width: 60%;
    background: var(--orange);
}

/* Nav CTA Button */
.nav-cta {
    position: relative;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4), 0 0 40px rgba(255, 107, 0, 0.2);
    transition: all 0.3s;
    border: none;
    overflow: hidden;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.5), 0 0 60px rgba(255, 107, 0, 0.3);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:active {
    transform: translateY(0);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-toggle:hover {
    background: rgba(255, 107, 0, 0.1);
}

.mobile-toggle span {
    width: 30px; height: 3px;
    background: var(--orange);
    border-radius: 3px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    padding: 1.25rem 3rem;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-neon), var(--orange));
    color: var(--white);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4), 0 0 80px rgba(255, 107, 0, 0.2);
}

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

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.5), 0 0 100px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.3), inset 0 0 40px rgba(255, 107, 0, 0.1);
    transform: translateY(-5px);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: heroGlow 5s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: var(--orange-bright);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.2);
}

.badge-dot {
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -5px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero h1 .line1 {
    display: block;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .line2 {
    display: block;
    background: linear-gradient(135deg, var(--orange-neon), var(--orange-bright), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.5));
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 60px rgba(255, 107, 0, 0.8)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 4rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 2px; height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

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

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

/* Features */
.features {
    padding: 10rem 0;
    background: linear-gradient(180deg, transparent, rgba(26, 10, 46, 0.3), transparent);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

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

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 30px 80px rgba(255, 107, 0, 0.2), 0 0 100px rgba(255, 107, 0, 0.1);
}

.feature-icon {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--orange-neon), var(--orange));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.4), 0 0 80px rgba(255, 107, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--orange-bright), var(--orange-neon));
    border-radius: 33px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(8px);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.feature-icon svg {
    width: 50px; height: 50px;
    stroke: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.5), 0 0 100px rgba(255, 107, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
}

/* Steps */
.steps { padding: 10rem 0; }

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%; right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-neon), var(--orange), var(--orange-bright), var(--orange));
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 140px; height: 140px;
    background: var(--dark);
    border: 4px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    margin: 0 auto 2rem;
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.4), inset 0 0 30px rgba(255, 107, 0, 0.1);
    position: relative;
    color: var(--orange);
    text-shadow: 0 0 20px var(--orange);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0; }
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.step p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    max-width: 250px;
    margin: 0 auto;
}

/* Stats */
.stats {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), transparent);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat h3 {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-neon), var(--orange-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.5));
}

.stat p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* CTA */
.cta {
    padding: 12rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    line-height: 1;
}

.cta h2 span {
    background: linear-gradient(135deg, var(--orange-neon), var(--orange-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--orange);
    padding-left: 10px;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    nav { height: 75px; padding: 0 1.5rem; }
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-container { flex-direction: column; gap: 4rem; }
    .steps-container::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    nav { height: 70px; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stat h3 { font-size: 4rem; }
}

/* ================================
   Page Hero (for subpages)
   ================================ */
.page-hero {
    padding: 12rem 2rem 6rem;
    position: relative;
    text-align: center;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ================================
   Info Sections
   ================================ */
.info-section {
    padding: 6rem 0;
}

.info-section.alt {
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.3), transparent, rgba(26, 10, 46, 0.3));
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-card.highlight {
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 0 80px rgba(255, 107, 0, 0.1);
}

.info-icon {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--orange-neon), var(--orange));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.4), 0 0 80px rgba(255, 107, 0, 0.2);
}

.info-icon svg {
    width: 50px; height: 50px;
    stroke: white;
}

.info-card h2, .info-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.info-card p, .info-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-card p.lead, .info-content p.lead {
    color: var(--orange-bright);
    font-size: 1.3rem;
    font-weight: 500;
}

.info-content a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s;
}

.info-content a:hover {
    border-color: var(--orange);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.info-content strong {
    color: var(--orange-bright);
    font-weight: 700;
}

/* Info Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.info-grid.reverse {
    direction: rtl;
}

.info-grid.reverse > * {
    direction: ltr;
}

.info-content {
    text-align: left;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.tech-badge {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: var(--orange-bright);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Privacy Illustration */
.privacy-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.privacy-ring {
    position: relative;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ring-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orange), 0 0 40px rgba(255, 107, 0, 0.5);
}

.ring-node:nth-child(1) { top: -10px; left: 50%; transform: translateX(-50%); }
.ring-node:nth-child(2) { top: 50%; right: -10px; transform: translateY(-50%); }
.ring-node:nth-child(3) { bottom: -10px; left: 50%; transform: translateX(-50%); }
.ring-node:nth-child(4) { top: 50%; left: -10px; transform: translateY(-50%); }
.ring-node:nth-child(5) { top: 15%; right: 15%; }

.ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--orange-neon), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.5);
    animation: ringRotate 20s linear infinite reverse;
}

.ring-center svg {
    width: 50px;
    height: 50px;
    stroke: white;
}

/* Community Stats */
.community-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 30px;
    padding: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

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

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-neon), var(--orange-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Page Content (for markdown) */
.page-content {
    padding: 4rem 0;
}

.page-content .container {
    max-width: 900px;
}

/* Responsive for Info Sections */
@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .info-grid.reverse {
        direction: ltr;
    }

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

    .tech-badges {
        justify-content: center;
    }

    .privacy-ring {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 600px) {
    .info-card {
        padding: 2.5rem;
    }

    .page-hero {
        padding: 10rem 1.5rem 4rem;
    }
}

/* ================================
   Downloads Page
   ================================ */

/* Download Navigation */
.download-nav-section {
    padding: 1.5rem 0;
    position: sticky;
    top: 88px;
    z-index: 900;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.download-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.download-nav-item svg {
    width: 20px;
    height: 20px;
}

.download-nav-item:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.2);
}

/* Download Sections */
.download-section {
    padding: 6rem 0;
}

.download-section.alt {
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.3), transparent, rgba(26, 10, 46, 0.3));
}

.download-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03), rgba(255, 107, 0, 0.01));
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(10px);
}

.download-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.download-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, var(--orange-neon), var(--orange));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.4);
}

.download-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
}

.download-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.download-title p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Download Features */
.download-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.feature-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-item strong {
    color: var(--orange-bright);
}

/* Download Links */
.download-links h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.05));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 15px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.download-btn svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    fill: var(--orange);
}

.download-btn:hover {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.25), rgba(255, 107, 0, 0.1));
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.download-btn.secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.download-btn.secondary:hover {
    border-color: var(--orange);
}

/* Download Notice */
.download-notice, .download-verify {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 107, 0, 0.05);
    border-left: 4px solid var(--orange);
    border-radius: 0 15px 15px 0;
}

.download-notice h4, .download-verify h4 {
    color: var(--orange);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.download-notice p, .download-verify p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

/* Wallet Section */
.wallet-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 3rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
}

.wallet-section-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wallet-card {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.wallet-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
}

.wallet-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.wallet-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--orange-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hardware Wallets */
.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hardware-card {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 20px;
    text-align: center;
}

.hardware-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hardware-models {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hardware-models span {
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--orange-bright);
}

.hardware-supported {
    text-align: left;
    margin-bottom: 2rem;
}

.hardware-supported h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.hardware-supported ul {
    list-style: none;
}

.hardware-supported li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hardware-card .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive Downloads */
@media (max-width: 900px) {
    .download-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .download-card {
        padding: 2.5rem;
    }

    .download-nav-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    .download-nav-item span {
        display: none;
    }
}

@media (max-width: 900px) {
    .download-nav-section {
        top: 75px;
    }
}

@media (max-width: 600px) {
    .download-nav-section {
        top: 70px;
    }

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

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

/* ================================
   FAQ Page
   ================================ */

.faq-category {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: var(--orange);
}

/* FAQ Items */
.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 107, 0, 0.03);
    border: 1px solid rgba(255, 107, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.faq-item.open {
    border-color: var(--orange);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

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

.faq-question span {
    flex: 1;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    stroke: var(--orange);
    transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.faq-link:hover {
    color: var(--orange-bright);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

/* FAQ Main Layout */
.faq-main {
    padding: 5rem 0;
}

.faq-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* FAQ Sidebar */
.faq-sidebar {
    width: 280px;
    min-width: 280px;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* FAQ Content */
.faq-content {
    flex: 1;
    min-width: 0;
}

.sidebar-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
}

.sidebar-card h3 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

/* Sidebar Navigation */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--orange);
    border-left-color: var(--orange);
}

/* Sidebar Resource Links */
.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-links a {
    display: block;
    padding: 0.875rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.sidebar-links a:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.sidebar-links a strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.sidebar-links a span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.4;
}

.faq-section-block {
    margin-bottom: 4rem;
    scroll-margin-top: 150px;
}

.faq-section-block:last-child {
    margin-bottom: 0;
}

/* FAQ Answer Additional Styles */
.faq-answer a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s;
}

.faq-answer a:hover {
    border-color: var(--orange);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.faq-answer ol {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--orange-bright);
}

/* Responsive FAQ */
@media (max-width: 1100px) {
    .faq-sidebar {
        width: 240px;
        min-width: 240px;
    }

    .faq-layout {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .faq-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .faq-sidebar {
        width: 100%;
        min-width: 100%;
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-sidebar .sidebar-card {
        flex: 1 1 300px;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .sidebar-nav a {
        flex: 1 1 calc(50% - 0.5rem);
        text-align: center;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .sidebar-nav a:hover {
        border-left-color: transparent;
        border-bottom-color: var(--orange);
    }

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

    .faq-section-block {
        scroll-margin-top: 100px;
    }
}

@media (max-width: 600px) {
    .sidebar-nav a {
        flex: 1 1 calc(50% - 0.5rem);
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

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

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

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

    .faq-main {
        padding: 3rem 0;
    }

    .faq-section-block {
        margin-bottom: 3rem;
    }
}

/* ================================
   About Page
   ================================ */

.about-section {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
}

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

.about-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s;
}

.about-content a:hover {
    border-color: var(--orange);
}

/* Timeline */
.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(255, 107, 0, 0.02));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 15px;
    border-left: 4px solid var(--orange);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(26, 10, 46, 0.3), transparent, rgba(26, 10, 46, 0.3));
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.value-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 20px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), var(--orange-bright));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

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

/* Tech Section */
.tech-section {
    padding: 6rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tech-card {
    padding: 2rem;
    background: rgba(255, 107, 0, 0.03);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 15px;
    text-align: center;
}

.tech-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.tech-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Privacy Tech */
.privacy-tech {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(255, 107, 0, 0.02));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.privacy-tech h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.privacy-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    min-width: 180px;
}

.tech-name {
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.25rem;
}

.tech-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* About Page Responsive */
@media (max-width: 1100px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .about-timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .timeline-item {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 200px;
    }

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

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

@media (max-width: 600px) {
    .about-section,
    .values-section,
    .tech-section {
        padding: 4rem 0;
    }

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

    .timeline-item {
        flex: 1 1 100%;
    }

    .privacy-tech {
        padding: 2rem 1.5rem;
    }

    .privacy-tech-item {
        min-width: 140px;
        padding: 1rem 1.5rem;
    }
}
