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

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #141414;
    --card-light: #1a1a1a;
    --border-dark: #222222;
    --border-light: #333333;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #707070;
    --shadow-black: rgba(0, 0, 0, 0.9);
    --shadow-white: rgba(255, 255, 255, 0.03);
    --accent-gray: #2a2a2a;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Floating Background Elements - Enhanced */
.floating-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
}

.float-element:nth-child(1) {
    width: 350px;
    height: 350px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.float-element:nth-child(3) {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

.float-element:nth-child(4) {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 5%;
    animation-delay: 3s;
}

.float-element:nth-child(5) {
    width: 280px;
    height: 280px;
    bottom: 30%;
    left: 20%;
    animation-delay: 7s;
}

.float-element:nth-child(6) {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 5%;
    animation-delay: 12s;
}

.float-element:nth-child(7) {
    width: 260px;
    height: 260px;
    bottom: 20%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 5%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-dark);
    box-shadow: 
        0 4px 20px var(--shadow-black),
        inset 0 1px 0 var(--shadow-white);
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-white);
    letter-spacing: -0.5px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a:not(.btn-nav-login):not(.btn-nav-signup) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.4rem 0.8rem;
}

.nav-links a:not(.btn-nav-login):not(.btn-nav-signup):hover {
    color: var(--primary-white);
}

.nav-links a:not(.btn-nav-login):not(.btn-nav-signup)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-white);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-links a:not(.btn-nav-login):not(.btn-nav-signup):hover::after {
    width: 80%;
}

.mobile-toggle {
    display: none;
    font-size: 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section - Enhanced */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5% 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Animated Gradient Background */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: gradientShift 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
}

/* Hero Decorative Elements */
.hero-decoration {
    position: absolute;
    z-index: 0;
}

.hero-circle {
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite;
}

.hero-circle:nth-child(2) {
    width: 550px;
    height: 550px;
    animation-duration: 40s;
    animation-direction: reverse;
}

.hero-circle:nth-child(3) {
    width: 700px;
    height: 700px;
    animation-duration: 50s;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Floating Music Icons */
.hero-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    font-size: 2rem;
    animation: floatIcon 6s ease-in-out infinite;
}

.hero-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.hero-icon:nth-child(3) {
    bottom: 25%;
    left: 8%;
    animation-delay: 2s;
}

.hero-icon:nth-child(4) {
    bottom: 20%;
    right: 12%;
    animation-delay: 3s;
}

.hero-icon:nth-child(5) {
    top: 40%;
    left: 5%;
    font-size: 1.5rem;
    animation-delay: 1.5s;
}

.hero-icon:nth-child(6) {
    top: 45%;
    right: 8%;
    font-size: 1.5rem;
    animation-delay: 2.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.4;
    }
}

/* Visualizer Bars */
.hero-visualizer {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: flex-end;
    opacity: 0.15;
}

.visualizer-bar {
    width: 6px;
    background: linear-gradient(to top, var(--primary-white), rgba(255, 255, 255, 0.3));
    border-radius: 10px;
    animation: barPulse 1s ease-in-out infinite;
}

.visualizer-bar:nth-child(1) {
    height: 40px;
    animation-delay: 0s;
}

.visualizer-bar:nth-child(2) {
    height: 60px;
    animation-delay: 0.1s;
}

.visualizer-bar:nth-child(3) {
    height: 80px;
    animation-delay: 0.2s;
}

.visualizer-bar:nth-child(4) {
    height: 55px;
    animation-delay: 0.3s;
}

.visualizer-bar:nth-child(5) {
    height: 70px;
    animation-delay: 0.4s;
}

.visualizer-bar:nth-child(6) {
    height: 45px;
    animation-delay: 0.5s;
}

.visualizer-bar:nth-child(7) {
    height: 65px;
    animation-delay: 0.6s;
}

.visualizer-bar:nth-child(8) {
    height: 50px;
    animation-delay: 0.7s;
}

@keyframes barPulse {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}

/* Glowing Particles */
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-particle:nth-child(1) {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.hero-particle:nth-child(2) {
    top: 35%;
    right: 25%;
    animation-delay: 2s;
}

.hero-particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

.hero-particle:nth-child(4) {
    bottom: 35%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(50px, -100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-content .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-content .highlight {
    color: var(--primary-white);
    font-weight: 700;
}

/* Skeuomorphic Button - Black & White */
.cta-button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(145deg, #ffffff, #e0e0e0);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

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

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

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 -1px 2px rgba(255, 255, 255, 0.5);
}

.cta-button i {
    margin-left: 0.5rem;
}

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

/* Section */
section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Skeuomorphic Cards */
.card {
    background: linear-gradient(145deg, var(--card-bg), var(--darker-bg));
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-dark);
    box-shadow: 
        0 8px 24px var(--shadow-black),
        inset 0 1px 0 var(--shadow-white),
        inset 0 -1px 0 rgba(0, 0, 0, 0.8);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

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

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

.card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.8),
        0 8px 24px var(--shadow-black),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--card-light), #272121);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-white);
    margin-bottom: 1.2rem;
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.05),
        inset 0 -2px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.3s;
}

.card:hover .card-icon {
    transform: rotateY(360deg);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.6);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

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

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

/* Image Placeholder */
.img-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(145deg, var(--card-light), var(--card-bg));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    box-shadow: 
        0 8px 16px var(--shadow-black),
        inset 0 1px 2px rgba(255, 255, 255, 0.03),
        inset 0 -2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.2rem;
}

.img-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    opacity: 0.5;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(145deg, var(--card-bg), var(--darker-bg));
    border-radius: 12px;
    min-width: 180px;
    border: 1px solid var(--border-dark);
    box-shadow: 
        0 6px 12px var(--shadow-black),
        inset 0 1px 0 var(--shadow-white);
}

.stat-item .number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-white);
    letter-spacing: -1px;
}

.stat-item .label {
    color: var(--text-secondary);
    margin-top: 0.4rem;
    font-size: 0.85rem;
}

/* Process Steps */
.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--primary-white), #d0d0d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-black);
    margin: 0 auto 1.2rem;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.step h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(145deg, var(--card-light), var(--card-bg));
    border: 2px solid var(--primary-white);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.05),
        inset 0 -2px 4px rgba(0, 0, 0, 0.6);
}

.pricing-card .price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-white);
    margin: 0.8rem 0;
    letter-spacing: -2px;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-card ul li i {
    color: var(--primary-white);
    margin-right: 0.8rem;
}

.pricing-card h3 {
    font-size: 1.3rem;
}

/* FAQ */
.faq-item {
    background: linear-gradient(145deg, var(--card-bg), var(--darker-bg));
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    box-shadow: 
        0 6px 12px var(--shadow-black),
        inset 0 1px 0 var(--shadow-white);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-white);
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial {
    background: linear-gradient(145deg, var(--card-bg), var(--darker-bg));
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid var(--border-dark);
    box-shadow: 
        0 8px 20px var(--shadow-black),
        inset 0 1px 0 var(--shadow-white);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--card-light), var(--card-bg));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-white);
    box-shadow: 
        0 4px 8px var(--shadow-black),
        inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.testimonial-info .role {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    font-size: 0.9rem;
}

.stars {
    color: var(--primary-white);
    margin-top: 0.8rem;
    font-size: 0.85rem;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-dark);
    box-shadow: inset 0 1px 0 var(--shadow-white);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-cta {
    margin-bottom: 2.5rem;
}

.footer-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--card-light), var(--card-bg));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    box-shadow: 
        0 4px 8px var(--shadow-black),
        inset 0 1px 2px rgba(255, 255, 255, 0.03);
}

.social-links a:hover {
    color: var(--primary-white);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.copyright {
    margin-top: 1.5rem;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.copyright a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.copyright a:hover {
    color: var(--primary-white);
}

/* Document Page CSS */
.document-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 5%;
}

.document-card {
    background: linear-gradient(145deg, var(--card-bg), var(--darker-bg));
    border-radius: 16px;
    padding: 3rem 2.5rem;
    border: 1px solid var(--border-dark);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 var(--shadow-white);
}

.document-card h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.document-card h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.document-card p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.document-card ul, .document-card ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.document-card li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    body {
        font-size: 13px;
    }

    .nav-links {
        align-items: flex-start;
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 1.5rem;
        gap: 0.8rem;
        transition: left 0.3s;
        box-shadow: 0 4px 20px var(--shadow-black);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-actions {
        width: 100%;
        margin-top: 1rem;
        padding-top: 1.2rem;
        border-top: 1px solid var(--border-dark);
        display: flex;
        gap: 12px;
    }

    .btn-nav-login, .btn-nav-signup {
        flex: 1;
        justify-content: center;
        padding: 0.6rem 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subtitle {
        font-size: 0.95rem;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .hero-circle:nth-child(2) {
        width: 400px;
        height: 400px;
    }

    .hero-circle:nth-child(3) {
        width: 500px;
        height: 500px;
    }

    .hero-icon {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    section {
        padding: 60px 0;
    }

    .document-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 600px) {
    section {
        padding: 50px 0;
    }

    .card {
        padding: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.9rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .pricing-card .price {
        font-size: 3rem;
    }
}

/* Info/Alert Box */
.info-box {
    background: rgba(255, 51, 51, 0.05);
    border-left: 4px solid #ff3333;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.info-box p {
    color: var(--text-primary) !important;
    margin-bottom: 0 !important;
    font-size: 0.95rem;
    line-height: 1.7;
}

#faqSearch:focus {
    border-color: var(--primary-white);
    box-shadow: 0 0 15px rgba(255,255,255,0.1), inset 0 1px 0 var(--shadow-white);
}

.faq-category-title {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-white);
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 0.5rem;
}

/* Navigation Login / Sign Up Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-secondary);
    color: var(--primary-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-nav-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-white);
    background: linear-gradient(135deg, #ff1a1a, #ff0055);
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-nav-signup:hover {
    background: linear-gradient(135deg, #ff3333, #ff1a66);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.4), 0 0 10px rgba(255, 0, 85, 0.2);
}

/* Premium Footer Styling */
footer {
    background: linear-gradient(to top, #030303, #080808);
    border-top: 1px solid var(--border-dark);
    padding: 6rem 0 3rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.footer-logo-img {
    width: 200px;
    border: none;
    transition: transform 0.3s ease;
}

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

.brand-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: left;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-btn:hover {
    background: rgba(255, 0, 85, 0.1);
    border-color: rgba(255, 0, 85, 0.5);
    color: #ff3366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 85, 0.3);
}

.footer-title {
    color: var(--primary-white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: left;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff1a1a, #ff0055);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.footer-links-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--primary-white);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: left;
}

.contact-list li i {
    color: #ff1a1a;
    font-size: 0.9rem;
    width: 16px;
}

.portal-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #ff3366 !important;
}

.portal-link:hover i {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: left;
}

.copyright-text {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    text-align: left;
}

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }
}
