:root {
    --primary: #FF5C00;
    --primary-dark: #CC4B00;
    --primary-light: #FF7A00;
    --bg: #FFFFFF;
    --text: #1A1A1A;
    --text-muted: #666666;
    --glass: rgba(255, 255, 255, 0.7);
    --border: rgba(0, 0, 0, 0.05);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Global Link Reset - NO BLUE */
a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

a:visited {
    color: var(--primary);
}

a:hover {
    color: var(--primary-dark);
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text) !important;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:visited {
    color: var(--text) !important;
}

.nav-links a:hover {
    color: var(--primary) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 92, 0, 0.2);
}

.btn-large {
    background: var(--primary);
    color: white !important;
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 92, 0, 0.15);
}

.btn-large:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 92, 0, 0.25);
}

.btn-secondary {
    padding: 18px 40px;
    color: var(--text);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 220px 0 140px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 84px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* Background Blobs */
.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.blob-1 {
    top: -100px;
    right: -100px;
}

.blob-2 {
    bottom: -200px;
    left: -100px;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: #FFF9F5;
}

.philosophy h2 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.text-orange {
    color: var(--primary);
}

.philosophy-text p {
    font-size: 24px;
    color: var(--text-muted);
    margin-top: 32px;
    max-width: 600px;
}

/* Features */
.features {
    padding: 140px 0;
}

.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 32px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 92, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.feature-card i {
    font-size: 32px;
    margin-bottom: 24px;
    display: block;
}

.icon-orange {
    color: var(--primary);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 17px;
    color: var(--text-muted);
}

/* Seen It All section */
.seen-it-all {
    padding: 100px 0 160px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 100px 60px;
    border-radius: 48px;
    text-align: center;
    color: white;
}

.cta-card h2 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 24px;
}

.cta-card p {
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 48px;
}

.btn-white {
    background: white;
    color: var(--primary) !important;
    padding: 20px 48px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--text-muted);
}

.link-group h4 {
    margin-bottom: 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-group a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 64px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 24px;
        font-weight: 700;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 160px 0 100px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-large,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .philosophy h2 {
        font-size: 42px;
    }

    .philosophy-text p {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 38px;
    }

    .cta-card {
        padding: 60px 24px;
        border-radius: 32px;
    }

    .cta-card h2 {
        font-size: 42px;
    }

    .cta-card p {
        font-size: 18px;
    }

    .footer-content {
        flex-direction: column;
        gap: 48px;
    }

    /* Support page adaptation */
    .contact-form-container {
        padding: 30px 24px;
    }

    .legal-content {
        padding-top: 140px;
    }

    .legal-content h1 {
        font-size: 42px;
    }
}

/* Support Card Button (First Version Style) */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    text-decoration: none !important;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-2px);
}

/* Banner Email (Plain White) */
.banner-email {
    color: white !important;
    font-weight: 800;
    text-decoration: none !important;
    font-size: 24px;
    transition: opacity 0.3s;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.banner-email:hover {
    opacity: 0.8;
    border-bottom-color: white;
}

/* Gray Email Link */
.email-gray {
    color: var(--text-muted) !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.email-gray:hover {
    color: var(--primary) !important;
    text-decoration: underline;
}