/* Claymorphic Design System Variables */
:root {
    --bg-primary: #0A0A0C;
    --bg-secondary: #121215;
    --bg-card: #1A1A20;
    --bg-card-elevated: #24242C;
    
    --brand-primary: #00D4C8; /* StudioTeal */
    --brand-light: #5EEADF;
    --brand-dark: #00A99D;
    --brand-soft: rgba(0, 212, 200, 0.1);
    
    --gold: #F59E0B;
    --mint: #10B981;
    --blue: #3B82F6;
    --red: #EF4444;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    --border-color: rgba(82, 82, 94, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Animated Clay Shapes */
.clay-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.25;
    filter: blur(1px);
    pointer-events: none;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, var(--brand-light), var(--brand-dark));
    top: 10%;
    left: -50px;
    box-shadow: inset 10px 10px 20px rgba(255, 255, 255, 0.4), 
                inset -15px -15px 30px rgba(0, 0, 0, 0.3), 
                15px 15px 30px rgba(0, 212, 200, 0.2);
    animation: floatShape 12s ease-in-out infinite alternate;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 30% 30%, #3b82f6, #1d4ed8);
    top: 40%;
    right: -50px;
    box-shadow: inset 10px 10px 20px rgba(255, 255, 255, 0.4), 
                inset -15px -15px 30px rgba(0, 0, 0, 0.3), 
                15px 15px 30px rgba(59, 130, 246, 0.2);
    animation: floatShape 10s ease-in-out infinite alternate-reverse;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 30%, var(--gold), #d97706);
    bottom: 25%;
    left: 8%;
    box-shadow: inset 6px 6px 12px rgba(255, 255, 255, 0.4), 
                inset -10px -10px 20px rgba(0, 0, 0, 0.3), 
                10px 10px 20px rgba(245, 158, 11, 0.15);
    animation: floatShape 8s ease-in-out infinite alternate;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 30% 30%, #8b5cf6, #5b21b6);
    bottom: 5%;
    right: 15%;
    box-shadow: inset 15px 15px 30px rgba(255, 255, 255, 0.3), 
                inset -20px -20px 40px rgba(0, 0, 0, 0.4), 
                20px 20px 40px rgba(139, 92, 246, 0.15);
    animation: floatShape 15s ease-in-out infinite alternate;
}

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(18deg); }
}

/* Claymorphic Layout Elements */
.clay-card {
    background-color: var(--bg-card);
    border-radius: 28px;
    border: 1px solid var(--border-color);
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.05), 
                inset -4px -4px 8px rgba(0, 0, 0, 0.5), 
                10px 10px 24px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.clay-card:hover {
    transform: translateY(-6px);
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.08), 
                inset -4px -4px 8px rgba(0, 0, 0, 0.4), 
                10px 15px 30px rgba(0, 0, 0, 0.5);
}

/* Claymorphic Buttons */
.clay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.clay-btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: radial-gradient(circle at 30% 30%, var(--brand-light), var(--brand-dark));
    color: #0A0A0C;
    box-shadow: inset 3px 3px 6px rgba(255, 255, 255, 0.6), 
                inset -4px -4px 8px rgba(0, 0, 0, 0.35), 
                5px 5px 15px rgba(0, 212, 200, 0.3);
}

.btn-primary:hover {
    box-shadow: inset 4px 4px 8px rgba(255, 255, 255, 0.7), 
                inset -5px -5px 10px rgba(0, 0, 0, 0.4), 
                6px 8px 20px rgba(0, 212, 200, 0.45);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: radial-gradient(circle at 30% 30%, var(--bg-card-elevated), var(--bg-card));
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.08), 
                inset -3px -3px 6px rgba(0, 0, 0, 0.5), 
                5px 5px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: radial-gradient(circle at 30% 30%, #2e2e38, #1a1a20);
    box-shadow: inset 3px 3px 6px rgba(255, 255, 255, 0.12), 
                inset -3px -3px 6px rgba(0, 0, 0, 0.4), 
                6px 8px 18px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.15rem;
    border-radius: 24px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--brand-primary);
    filter: drop-shadow(0 0 8px rgba(0, 214, 200, 0.4));
}

.teal-dot {
    color: var(--brand-primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--brand-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta .clay-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 16px;
    background-color: var(--bg-card);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.05), 
                inset -2px -2px 4px rgba(0, 0, 0, 0.5), 
                4px 4px 8px rgba(0,0,0,0.2);
}

.gold-crown {
    color: var(--gold);
    text-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
}

.teal-text {
    background: linear-gradient(135deg, var(--brand-light), var(--brand-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background-color: var(--border-color);
}

/* Claymorphic Phone Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 310px;
    height: 620px;
    border-radius: 44px;
    padding: 14px;
    border-width: 2px;
    background-color: #0E0E12;
    transform: rotate(2deg);
    box-shadow: inset 4px 4px 8px rgba(255, 255, 255, 0.08), 
                inset -8px -8px 16px rgba(0, 0, 0, 0.7), 
                20px 20px 40px rgba(0, 0, 0, 0.6);
}

.phone-inner {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background-color: #0A0A0C;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.phone-header {
    height: 28px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 10;
}

.camera-lens {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1a1a24;
}

.speaker-grill {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background-color: #24242c;
}

.phone-screen {
    height: calc(100% - 28px);
    width: 100%;
    position: relative;
}

.app-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px;
    font-size: 0.8rem;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.app-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--brand-primary);
}

.credits-pill {
    background-color: var(--bg-card-elevated);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.text-gold { color: var(--gold); }

.app-hero-banner {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--border-color);
}

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

.banner-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(8px);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.app-section {
    flex-grow: 1;
}

.section-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.styles-row {
    display: flex;
    gap: 8px;
}

.style-card {
    flex: 1;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
    font-size: 0.65rem;
    font-weight: 500;
}

.style-card.active {
    border-color: var(--brand-primary);
}

.style-thumb {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    margin-bottom: 4px;
}

.app-nav {
    height: 44px;
    background-color: var(--bg-card);
    border-radius: 16px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    border: 1px solid var(--border-color);
}

.app-nav i {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.app-nav i.active {
    color: var(--brand-primary);
}

/* Floating Mini Cards */
.floating-mini-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 20px;
    max-width: 220px;
}

.floating-mini-card i {
    font-size: 1.4rem;
}

.floating-mini-card h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.floating-mini-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.float-card-1 {
    top: 15%;
    left: -80px;
    transform: rotate(-5deg);
    animation: floatMini 4s ease-in-out infinite alternate;
}

.float-card-2 {
    bottom: 15%;
    right: -70px;
    transform: rotate(6deg);
    animation: floatMini 4s ease-in-out infinite alternate 1.5s;
}

@keyframes floatMini {
    0% { transform: translateY(0) rotate(-4deg); }
    100% { transform: translateY(-12px) rotate(4deg); }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.sub-heading {
    display: inline-block;
    color: var(--brand-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Before/After Interactive Comparison Section */
.demo-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.comparison-container-wrapper {
    display: flex;
    justify-content: center;
}

.comparison-slider-container {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 5 / 4;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    width: 100%; /* Changed from 50% for clip-path */
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* Fluid image elements inside slider to prevent overflow on mobile */
.comparison-slider-container img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: left;
}

.image-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    border-radius: 12px;
    background-color: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(8px);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.before-label {
    left: 20px;
    color: var(--text-primary);
}

.after-label {
    right: 20px;
    color: var(--brand-primary);
}

/* Slider Handle styling */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--brand-primary);
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.handle-line {
    width: 4px;
    flex-grow: 1;
    background-color: var(--brand-primary);
}

.handle-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--brand-light), var(--brand-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0C;
    font-size: 1.1rem;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.6), 
                0 0 15px rgba(0, 212, 200, 0.4);
    cursor: ew-resize;
}

/* Features Grid */
.features-section {
    padding: 100px 0;
}

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

.feature-card {
    padding: 40px;
    text-align: left;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.bg-teal {
    background: radial-gradient(circle at 30% 30%, var(--brand-light), var(--brand-dark));
    color: #0A0A0C;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.6), 
                inset -3px -3px 6px rgba(0, 0, 0, 0.4), 
                4px 4px 10px rgba(0, 212, 200, 0.2);
}

.bg-blue {
    background: radial-gradient(circle at 30% 30%, #60a5fa, #1d4ed8);
    color: #ffffff;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.6), 
                inset -3px -3px 6px rgba(0, 0, 0, 0.4), 
                4px 4px 10px rgba(59, 130, 246, 0.2);
}

.bg-mint {
    background: radial-gradient(circle at 30% 30%, #34d399, #047857);
    color: #ffffff;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.6), 
                inset -3px -3px 6px rgba(0, 0, 0, 0.4), 
                4px 4px 10px rgba(16, 185, 129, 0.2);
}

.bg-gold {
    background: radial-gradient(circle at 30% 30%, #fbbf24, #b45309);
    color: #ffffff;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.6), 
                inset -3px -3px 6px rgba(0, 0, 0, 0.4), 
                4px 4px 10px rgba(245, 158, 11, 0.2);
}

.bg-red {
    background: radial-gradient(circle at 30% 30%, #f87171, #b91c1c);
    color: #ffffff;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.6), 
                inset -3px -3px 6px rgba(0, 0, 0, 0.4), 
                4px 4px 10px rgba(239, 68, 68, 0.2);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* AI Tools Showcase section */
.tools-showcase {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.tools-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.tools-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.tool-mock-stack {
    width: 100%;
    max-width: 420px;
    position: relative;
    height: 380px;
}

.tool-mock-item {
    position: absolute;
    width: 85%;
    padding: 24px;
    transition: var(--transition-smooth);
}

.tool-mock-item.active {
    z-index: 10;
    transform: rotate(-2deg) scale(1.05);
    background-color: var(--bg-card-elevated);
}

.tool-mock-item:not(.active) {
    z-index: 5;
    transform: translateY(60px) translateX(40px) rotate(4deg) scale(0.95);
    opacity: 0.6;
}

.mock-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.mock-hdr span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
}

.badge-mint {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--mint);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-teal {
    background-color: rgba(0, 212, 200, 0.15);
    color: var(--brand-primary);
    border: 1px solid rgba(0, 212, 200, 0.25);
}

.badge-blue {
    background-color: rgba(59, 130, 246, 0.15);
    color: var(--blue);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.badge-gold {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--gold);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.mock-bdy {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-img-placeholder {
    width: 100%;
    height: 150px;
    border-radius: 16px;
    border: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mock-img-placeholder i {
    font-size: 2rem;
}

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

.tools-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

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

.tools-list {
    list-style: none;
}

.tools-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.list-bullet {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--brand-light), var(--brand-dark));
    color: #0A0A0C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.6);
    flex-shrink: 0;
}

.tools-list h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.tools-list p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Creator Community Section */
.community-section {
    padding: 100px 0;
}

.community-box {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-card);
}

.community-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

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

.feed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feed-item {
    padding: 10px;
    border-radius: 20px;
}

.feed-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}

.feed-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.feed-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 24px 30px;
    cursor: pointer;
    overflow: hidden;
}

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

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card-elevated);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
}

.faq-answer p {
    padding-top: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Accordion open state */
.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: radial-gradient(circle at 30% 30%, var(--brand-light), var(--brand-dark));
    color: #0A0A0C;
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.faq-item.open .faq-answer {
    max-height: 150px;
    opacity: 1;
}

/* App Download CTA Banner */
.download-section {
    padding: 100px 0;
}

.download-banner {
    padding: 80px 40px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, var(--bg-card-elevated), var(--bg-card));
    border-color: var(--brand-soft);
}

.download-banner h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 950;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-banner p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

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

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition-smooth);
}

.store-btn i {
    font-size: 2rem;
}

.store-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
}

.store-title {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.store-btn.playstore {
    background: radial-gradient(circle at 30% 30%, var(--brand-light), var(--brand-dark));
    color: #0A0A0C;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.6), 
                inset -3px -3px 6px rgba(0, 0, 0, 0.4), 
                5px 5px 15px rgba(0, 212, 200, 0.3);
}

.store-btn.playstore:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: inset 3px 3px 6px rgba(255, 255, 255, 0.7), 
                inset -3px -3px 6px rgba(0, 0, 0, 0.3), 
                5px 8px 25px rgba(0, 212, 200, 0.45);
}

.store-btn.appstore {
    background: radial-gradient(circle at 30% 30%, var(--bg-card-elevated), var(--bg-card));
    border: 1px solid var(--border-color);
}

.store-btn.appstore:hover {
    transform: translateY(-4px) scale(1.03);
    background: radial-gradient(circle at 30% 30%, #2e2e38, #1a1a20);
    box-shadow: inset 3px 3px 6px rgba(255, 255, 255, 0.12), 
                5px 8px 20px rgba(0,0,0,0.45);
}

/* Footer Styles */
.footer {
    background-color: #050507;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    max-width: 320px;
    font-size: 0.95rem;
}

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

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.social-icon:hover {
    color: var(--brand-primary);
    transform: scale(1.05);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--brand-primary);
    padding-left: 4px;
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .premium-badge {
        margin: 0 auto 24px auto;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .community-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* simple mobile simplification */
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .clay-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .comparison-slider-container img {
        width: 100vw;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Community Feed Styles */
.feed-header {
    text-align: center;
    margin: 120px 0 60px;
}

.feed-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feed-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.feed-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.feed-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.feed-username {
    font-weight: 600;
    font-size: 1.1rem;
}

.feed-images {
    display: flex;
    gap: 10px;
    width: 100%;
}

.feed-image-container {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

.feed-image-label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.feed-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.feed-metrics {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
}

.feed-metric {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.feed-template {
    font-size: 0.85rem;
    background: rgba(0, 212, 200, 0.1);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.feed-loading {
    text-align: center;
    padding: 50px 0;
    grid-column: 1 / -1;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* Tool Cards Grid Styles */
.tool-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}

.tool-card-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tool-card-content {
    padding: 0 10px 10px;
}

.tool-card-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.tool-card-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Mobile Responsiveness Overhaul */

/* Tablets (max-width: 992px) */
@media screen and (max-width: 992px) {
    .hero-grid,
    .tools-grid,
    .community-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-app-showcase {
        width: 80% !important; /* Overrides inline style */
        margin: 0 auto;
    }

    .section-header {
        margin-bottom: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile Phones (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Hide Nav Menu per user request */
    .nav-menu {
        display: none !important;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-app-showcase {
        width: 100% !important;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .clay-btn {
        width: 100%;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-divider {
        display: none;
    }

    .feed-grid, .tool-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .image-label {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Header size reduction for mobile */
    .logo span {
        font-size: 1.1rem;
    }
    
    .logo img {
        width: 24px !important;
        height: 24px !important;
    }
    
    .nav-cta .clay-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 10px 0;
    }
}
