:root {
    --primary: #00f08f;
    --primary-dark: #00c877;
    --bg-dark: #0b0f13;
    --bg-card: #141a21;
    --text-main: #e0e0e0;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.05);
    --gradient-primary: linear-gradient(135deg, #00f08f 0%, #00b8ff 100%);
}

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

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

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

/* Download Dropdown */
.download-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: var(--bg-card);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1001;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    margin-top: 0.5rem;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: rgba(0, 240, 143, 0.1);
    color: var(--primary);
}

.download-dropdown:hover .dropdown-content {
    display: block;
}

/* Header & Nav */
header {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    background: rgba(11, 15, 19, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
    font-size: 1.25rem;
}

.header-logo {
    height: 32px;
    width: auto;
}

.logo-text {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 240, 143, 0.2);
}

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

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% -20%, rgba(0, 240, 143, 0.15) 0%, transparent 50%);
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(0, 240, 143, 0.08), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    background: rgba(0, 240, 143, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

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

.hero-visual {
    position: relative;
}

.app-mockup {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.mockup-header {
    background: #1e252d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.mockup-content {
    position: relative;
    aspect-ratio: 16/10;
    background: #000;
}

.mockup-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(0, 240, 143, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features */
.features {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Dynamics Processor Section */
.dynamics-processor {
    padding: 8rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 143, 0.05), transparent);
}

.dynamics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.processor-ui {
    background: #1a222a;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #2a353f;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.ui-header {
    border-bottom: 1px solid #2a353f;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 600;
}

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

.knob-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.knob-group span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.knob {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a353f;
    border: 2px solid #3a454f;
    position: relative;
}

.knob::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 17px;
    width: 2px;
    height: 8px;
    background: var(--primary);
    transform: rotate(-45deg);
    transform-origin: bottom center;
}

.visualizer-container {
    background: #000;
    height: 150px;
    border-radius: 8px;
    border: 1px solid #2a353f;
    overflow: hidden;
}

/* Technical Details Grid */
.tech-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-detail-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.tech-detail-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(5px);
}

.tech-detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--primary);
    background: rgba(0, 240, 143, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.tech-detail-card h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.tech-detail-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Processing Stages */
.processing-stages {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.processing-stages h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.stages-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stage {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.stage-number {
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--primary);
    background: rgba(0, 240, 143, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.stage-info {
    display: flex;
    flex-direction: column;
}

.stage-info strong {
    color: var(--text-main);
    font-size: 1rem;
}

.stage-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

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

.os-icon-sm {
    width: 18px;
    height: 18px;
}

footer {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 8px;
}

.mt-2 { margin-top: 1rem; }

.processor-ui img {
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.window-mockup {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: transform 0.5s;
}

.window-mockup:hover {
    transform: scale(1.02);
}

.os-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.os-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.os-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.os-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.cross-platform {
    padding: 8rem 0;
    border-top: 1px solid var(--glass-border);
}

.tech-banner {
    background: var(--primary);
    padding: 2rem 0;
    color: var(--bg-dark);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.tech-value {
    font-weight: 800;
    font-size: 1.1rem;
}

.specs-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

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

.spec-category h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.spec-category ul {
    list-style: none;
}

.spec-category li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.spec-category li strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.2rem;
}

/* Responsive */
@media (max-width: 968px) {
    h1 { font-size: 3rem; }
    .hero-grid, .dynamics-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-visual { order: -1; }
    .features-grid, .specs-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .lead { margin: 0 auto 3rem; }
    .os-badges { justify-content: center; }
    .flex-between { flex-direction: column; gap: 2rem; }
}
/* Changelog Section */
.changelog-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(0, 240, 143, 0.02));
}

.changelog-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.changelog-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.changelog-item:hover {
    border-color: rgba(0, 240, 143, 0.3);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.version-tag {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
}

.version-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.changelog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.change-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.change-group h4 {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.change-group ul {
    list-style: none;
}

.change-group li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.change-group li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.change-group li strong {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .change-groups {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FDK AAC HIGHLIGHT (GOLD STANDARD)
   ========================================================================== */
.gold-standard-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080c0a 100%);
    position: relative;
    overflow: hidden;
}

.gold-standard-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 140, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.fdk-highlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.fdk-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 255, 142, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 255, 142, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: badgePulse 3s infinite ease-in-out;
}

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

.fdk-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.fdk-features {
    list-style: none;
    margin-top: 2.5rem;
}

.fdk-features li {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.check-icon {
    width: 24px !important;
    height: 24px !important;
    color: var(--primary);
    background: rgba(0, 255, 142, 0.1);
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}

.fdk-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fdk-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 142, 0.2);
}

.fdk-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 255, 142, 0.4) 0%, transparent 40%, rgba(0, 255, 142, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.fdk-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.fdk-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item .stat-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .fdk-highlight-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .fdk-features li {
        justify-content: center;
        text-align: left;
    }
    .fdk-content h2 {
        font-size: 2.75rem;
    }
}

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 240, 143, 0) 0%, rgba(0, 240, 143, 0.02) 100%);
    border-top: 1px solid var(--glass-border);
}

.use-cases-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: stretch;
    margin-top: 60px;
}

.use-cases-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    transform: perspective(1200px) rotateY(-8deg);
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
    height: 100%;
}

.visual-wrapper img {
    height: 100%;
    object-fit: cover;
}

.visual-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 240, 143, 0.1), transparent);
    pointer-events: none;
}

.img-fluid.rounded-24 {
    border-radius: 24px;
}

.use-cases-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.use-case-card-mini {
    display: flex;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
}

.use-case-card-mini:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 240, 143, 0.4);
    transform: translateX(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.use-case-icon-mini {
    width: 48px;
    height: 48px;
    color: var(--primary);
    background: rgba(0, 240, 143, 0.08);
    border: 1px solid rgba(0, 240, 143, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.use-case-card-mini:hover .use-case-icon-mini {
    background: rgba(0, 240, 143, 0.15);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 240, 143, 0.2);
}

.use-case-card-mini h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.use-case-card-mini p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 968px) {
    .use-cases-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .visual-wrapper {
        transform: none !important;
        height: auto;
    }
}


/* Trust Bar */
.trust-bar {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

.trust-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: opacity 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.tech-tag:hover {
    opacity: 1;
    color: #fff;
    border-color: var(--primary);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.faq-item h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.15rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
