/* Root Variables */
:root {
    --primary-gold: #a97d36;
    --gold-light: #d9b36a;
    --gold-dark: #6e4b1f;
    --obsidian: #0b0d10;
    --stone-1: #15100c;
    --text-light: #f0e6d2;
    --text-secondary: #e6d7b3;
    --border-gold: rgba(214, 183, 112, 0.6);
    --shadow-gold: rgba(169, 125, 54, 0.25);
    --bg-light: #ffffff;
    --ink: #0d0f13;
    --muted: #6c7480;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --overhang: clamp(400px, 14svh, 200px);
    --section-padding: clamp(4rem, 8vw, 8rem);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    :root {
        --overhang: clamp(700px, 18svh, 260px);
        --section-padding: clamp(3rem, 6vw, 6rem);
    }
}

@media (max-width: 600px) {
    :root {
        --overhang: clamp(800px, 24svh, 320px);
        --section-padding: clamp(2.5rem, 5vw, 4rem);
    }
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, var(--obsidian), var(--stone-1));
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles (keeping original) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(11, 13, 16, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-light);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--obsidian);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: 1px;
}

.language-selector {
    position: relative;
}

.language-btn {
    background: rgba(169, 125, 54, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.language-btn:hover {
    background: rgba(169, 125, 54, 0.2);
    border-color: var(--primary-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 0;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.open {
        display: flex;
        position: absolute;
        top: 64px;
        right: 16px;
        flex-direction: column;
        background: var(--obsidian);
        border: 1px solid var(--border-gold);
        border-radius: var(--radius-md);
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section (keeping original) */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 6rem 2rem 0;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11, 13, 16, 0.4), rgba(11, 13, 16, 0.6));
}

.kurdish-map-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.kurdish-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0.8;
}

.heroContent {
    position: relative;
    z-index: 2;
    width: min(800px, 100%);
    margin-bottom: calc(var(--overhang) * -1);
}

.hero-content {
    background: rgba(11, 13, 16, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--obsidian);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 8px 32px var(--shadow-gold);
    min-width: 200px;
    transition: transform 0.15s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 14px 40px var(--shadow-gold);
}

.download-icon {
    width: 24px;
    height: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-gold);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    display: block;
}

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

/* Section Base Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: calc(var(--overhang) + var(--section-padding)) 0 var(--section-padding);
    background: var(--obsidian);
    position: relative;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(169, 125, 54, 0.3);
    box-shadow: 0 20px 40px rgba(169, 125, 54, 0.1);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--obsidian);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

/* Learning Methods Sections */
.learning-methods,
.dialects-section,
.progress-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.learning-methods {
    background: var(--bg-light);
    color: var(--ink);
}

.dialects-section {
    background: linear-gradient(135deg, #1a1d23, #0f1115);
    color: var(--text-light);
}

.progress-section {
    background: var(--bg-light);
    color: var(--ink);
}

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

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

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

.method-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.method-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.feature-bullet {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.progress-section .visual-card {
    background: rgba(169, 125, 54, 0.1);
    border-color: rgba(169, 125, 54, 0.2);
}

/* Speaking Visual */
.visual-card.speaking {
    flex-direction: column;
    gap: 1.5rem;
}

.audio-waves {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 60px;
}

.wave {
    width: 4px;
    background: linear-gradient(to top, var(--primary-gold), var(--gold-light));
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.wave:nth-child(3) { height: 60px; animation-delay: 0.2s; }
.wave:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.wave:nth-child(5) { height: 25px; animation-delay: 0.4s; }

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

.visual-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Dialects Visual */
.dialect-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.dialect-region {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--obsidian);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    position: relative;
    transform: translateY(10px);
    animation: float 3s ease-in-out infinite;
}

.dialect-region:nth-child(1) { animation-delay: 0s; }
.dialect-region:nth-child(2) { animation-delay: 1s; }
.dialect-region:nth-child(3) { 
    animation-delay: 2s; 
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
}

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

/* Progress Visual */
.progress-circle {
    position: relative;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percent {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.progress-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.progress-levels {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.level-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.level-badge.beginner {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.level-badge.intermediate {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.level-badge.advanced {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

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

/* App Showcase */
.app-showcase {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    color: var(--ink);
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--ink);
}

.showcase-header p {
    font-size: 1.2rem;
    opacity: 0.7;
}

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

.showcase-item {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.showcase-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--ink);
}

.showcase-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--obsidian), #1a1d23);
    color: var(--text-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 1.1rem;
    opacity: 0.7;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(169, 125, 54, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--obsidian);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-light);
}

.author-location {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Donation Section */
.donation-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: var(--text-light);
}

.donation-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.donation-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.donation-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.donation-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.impact-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.donation-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.donate-btn.primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--obsidian);
    box-shadow: 0 8px 25px rgba(169, 125, 54, 0.3);
}

.donate-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(169, 125, 54, 0.4);
}

.donate-btn.secondary {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

.donate-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.donation-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-animation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart {
    font-size: 4rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(169, 125, 54, 0.5));
}

.heart-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: float-particle 3s ease-in-out infinite;
}

.particle:nth-child(1) { 
    top: -30px; 
    left: -20px; 
    animation-delay: 0s; 
}

.particle:nth-child(2) { 
    top: -25px; 
    right: -15px; 
    animation-delay: 1s; 
}

.particle:nth-child(3) { 
    bottom: -20px; 
    left: 0px; 
    animation-delay: 2s; 
}

@keyframes float-particle {
    0%, 100% { 
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    50% { 
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
}

@media (max-width: 968px) {
    .donation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Community Section */
.community-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
    color: var(--ink);
}

.community-header {
    text-align: center;
    margin-bottom: 4rem;
}

.community-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.community-header p {
    font-size: 1.1rem;
    opacity: 0.7;
}

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

.social-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.social-card.instagram::before { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.youtube::before { background: #ff0000; }
.social-card.twitter::before { background: #1da1f2; }
.social-card.tiktok::before { background: linear-gradient(45deg, #ff0050, #00f2ea); }

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.social-card:hover::before {
    height: 6px;
}

.social-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-card p {
    margin-bottom: 1rem;
    opacity: 0.7;
    line-height: 1.6;
}

.follow-count {
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-section {
    background: rgba(169, 125, 54, 0.1);
    border: 1px solid rgba(169, 125, 54, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
}

.newsletter-section h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.newsletter-section p {
    margin-bottom: 2rem;
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(169, 125, 54, 0.1);
}

.newsletter-form button {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--obsidian);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(169, 125, 54, 0.3);
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--obsidian), #1a1d23);
    color: var(--text-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1.1rem;
    opacity: 0.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(169, 125, 54, 0.3);
}

.faq-item.active {
    border-color: var(--primary-gold);
}

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

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

.faq-arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* Download CTA Section */
.download-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--obsidian);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-btn.primary {
    background: var(--obsidian);
    color: var(--text-light);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--obsidian);
    border: 2px solid var(--obsidian);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.site-footer {
    background: var(--obsidian);
    color: var(--text-secondary);
    padding: var(--section-padding) 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(169, 125, 54, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

.footer-column h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* screenshot css*/
