/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --bg-dark: #0a0a0f;
    --bg-card: #1a1a24;
    --bg-light: #2a2a38;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b8a;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
}

.menu {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.btn-github {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-github:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Code Window */
.hero-visual {
    animation: fadeInRight 0.8s ease 0.4s backwards;
}

.code-window {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27c93f; }

.code-title {
    color: var(--text-secondary);
    font-size: 14px;
}

.code-content {
    padding: 20px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
}

.code-content .key { color: #8b5cf6; }
.code-content .string { color: #10b981; }
.code-content .number { color: #f59e0b; }
.code-content .boolean { color: #ec4899; }

/* Terminal Styles */
.code-window.terminal {
    background: #1e1e2e;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.terminal-content {
    background: #1e1e2e;
    color: #e0e0e0;
}

.terminal-title {
    color: #00ff00;
    font-weight: 700;
    font-size: 16px;
}

.terminal-author {
    color: #00ff00;
}

.terminal-site {
    color: #00ff00;
}

.terminal-link {
    color: #00bfff;
    text-decoration: underline;
}

.terminal-rocket,
.terminal-folder,
.terminal-gear {
    font-style: normal;
}

.terminal-text {
    color: #e0e0e0;
}

.terminal-timestamp {
    color: #00ff00;
}

.terminal-info {
    color: #00bfff;
}

.terminal-tag {
    color: #ffa500;
}

.terminal-success {
    color: #e0e0e0;
}

.terminal-prompt {
    color: #00ff00;
    font-weight: 700;
}

.terminal-cursor {
    color: #00ff00;
    animation: blink 1s infinite;
}

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

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ===== Highlighted Feature Card ===== */
.feature-card.highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    position: relative;
}

.feature-card.highlight::after {
    content: 'NEW';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===== vAccess Section ===== */
.vaccess {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 50%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.vaccess::before {
    content: '🔒';
    position: absolute;
    font-size: 400px;
    opacity: 0.02;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    pointer-events: none;
}

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

.vaccess-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.vaccess-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vaccess-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.vaccess-feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.vaccess-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.vaccess-feature p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.vaccess-examples {
    margin-bottom: 60px;
}

.vaccess-examples-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vaccess-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vaccess-example {
    margin-bottom: 0;
}

.example-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.example-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.example-header h4 {
    font-size: 22px;
    margin: 0;
}

.example-description {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 15px;
}

.code-content .comment {
    color: var(--text-muted);
}

.code-content .error {
    color: #ef4444;
    font-weight: 600;
}

.code-content .success {
    color: #10b981;
    font-weight: 600;
}

.vaccess-params {
    margin-bottom: 60px;
}

.vaccess-params-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.param-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.param-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
}

.param-name {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    color: var(--primary);
    margin-bottom: 8px;
}

.param-required {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.param-optional {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.param-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.param-description code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--primary);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
}

.vaccess-how-it-works {
    margin-bottom: 40px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vaccess-how-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.work-step {
    flex: 1;
    text-align: center;
}

.work-step-num {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.work-step-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.work-step-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.work-arrow {
    font-size: 32px;
    color: var(--primary);
    flex-shrink: 0;
}

.vaccess-note {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
}

/* ===== Benefits Section ===== */
.benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(139, 92, 246, 0.3);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0.7;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Installation Section ===== */
.installation {
    padding: 100px 0;
}

.install-steps {
    max-width: 800px;
    margin: 0 auto;
}

.install-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.install-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.code-block {
    position: relative;
    background: var(--bg-card);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-block code {
    color: var(--success);
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 8px;
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    margin-top: 10px;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.6);
}

.step-info {
    background: var(--bg-light);
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
    border-left: 3px solid var(--primary);
}

.step-substeps {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.substep {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.substep-num {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.substep-content {
    flex: 1;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.substep-content strong {
    color: var(--primary);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.code-example {
    background: var(--bg-card);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    overflow-x: auto;
}

.code-example pre {
    margin: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

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

.install-notes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.install-note {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
}

.install-note.note-warning {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.note-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.note-content {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
}

.note-content strong {
    color: var(--text-primary);
    font-size: 15px;
}

.note-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 5px;
    color: var(--primary);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

/* ===== SSL Certificates Section ===== */
.ssl-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, transparent 50%, rgba(99, 102, 241, 0.05) 100%);
}

.ssl-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ssl-steps {
    grid-column: 1 / -1;
}

.ssl-steps h3,
.ssl-structure h3,
.ssl-wildcard h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

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

.ssl-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ssl-step:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(5px);
}

.ssl-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.ssl-step-content {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ssl-step-content code {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 5px;
    color: var(--success);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
}

.ssl-step-content strong {
    color: var(--text-primary);
}

.ssl-files {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.ssl-file {
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid var(--success);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    white-space: nowrap;
}

.ssl-structure {
    grid-column: 1 / -1;
}

.ssl-wildcard {
    grid-column: 1 / -1;
}

.wildcard-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    margin-bottom: 30px;
}

.wildcard-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.wildcard-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.wildcard-text code {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 8px;
    border-radius: 5px;
    color: var(--primary);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 13px;
}

.wildcard-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.wildcard-example {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.wildcard-example:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-3px);
}

.wildcard-icon-check {
    font-size: 24px;
    flex-shrink: 0;
}

.wildcard-example strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.wildcard-example p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.wildcard-example code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--success);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
}

.wildcard-note {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
}

/* ===== Documentation Section ===== */
.documentation {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
}

.architecture {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.arch-visual {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 100px;
}

.arch-tree {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-primary);
    overflow-x: auto;
}

.arch-tree .comment {
    color: var(--text-muted);
}

.arch-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arch-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.arch-card:hover {
    transform: translateX(10px);
    border-color: rgba(139, 92, 246, 0.3);
}

.arch-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.arch-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 30px;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 400px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .ssl-content {
        grid-template-columns: 1fr;
    }

    .ssl-steps-grid {
        grid-template-columns: 1fr;
    }

    .wildcard-examples {
        grid-template-columns: 1fr;
    }

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

    .arch-visual {
        position: static;
    }

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

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

    .menu {
        display: none;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

    .step-substeps {
        margin-left: 0;
    }

    /* vAccess responsive */
    .vaccess-features {
        grid-template-columns: 1fr;
    }

    .vaccess-examples-grid {
        grid-template-columns: 1fr;
    }

    .example-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .how-it-works-steps {
        flex-direction: column;
    }

    .work-arrow {
        transform: rotate(90deg);
    }
}
