/* Custom CSS for FotoEdit Landing Page */

:root {
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #d4d4d8;
    --zinc-400: #a1a1aa;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-700: #3f3f46;
    --zinc-800: #27272a;
    --zinc-900: #18181b;
    --zinc-950: #09090b;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: var(--zinc-100);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

html {
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Animations removed for simplicity */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--zinc-300);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white !important;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-block: 2rem;
}

.hero-badge i {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(10deg);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--zinc-300);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.hero-guarantee {
    font-size: 0.9375rem;
    color: var(--zinc-400);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-guarantee i {
    color: #10b981;
    font-size: 1rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    padding: 1.125rem 2.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.5);
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(249, 115, 22, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero-secondary i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--orange-500);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.btn-hero-secondary:hover::before {
    opacity: 1;
}

.btn-hero-secondary:hover i {
    transform: scale(1.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
}

.stat-icon {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--zinc-400);
}

.hero-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.1), transparent);
    pointer-events: none;
    z-index: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, black, var(--zinc-950));
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.step-card {
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.6), rgba(9, 9, 11, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--orange-500);
}

.step-card:hover .step-icon {
    background: rgba(249, 115, 22, 0.2);
    border-color: var(--orange-500);
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--zinc-400);
    line-height: 1.7;
    text-align: center;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.step-visual {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-grow: 1;
}

.mock-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    transition: all 0.3s ease;
}

.mock-input i {
    color: var(--orange-500);
    font-size: 1.125rem;
}

.mock-input span {
    color: var(--zinc-400);
    font-size: 0.9375rem;
    font-style: italic;
}

.step-card:hover .mock-input {
    border-color: var(--orange-500);
    background: rgba(249, 115, 22, 0.05);
}

.mock-generation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    width: 100%;
}

.gen-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    animation: pulse-gen 2s ease-in-out infinite;
}

.gen-item:nth-child(1) { animation-delay: 0s; }
.gen-item:nth-child(2) { animation-delay: 0.3s; }

@keyframes pulse-gen {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

.gen-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-500);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.gen-progress i {
    font-size: 1rem;
}

.mock-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.mock-download > i {
    font-size: 2.5rem;
    color: var(--orange-500);
    opacity: 0.8;
}

.download-formats {
    display: flex;
    gap: 0.5rem;
}

.download-formats span {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--orange-500);
}

.mock-btn {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.mock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-500);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 0.8; transform: translateX(5px); }
}

.how-cta {
    margin-top: 4rem;
    text-align: center;
}

.how-time {
    font-size: 1.0625rem;
    color: var(--zinc-400);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.how-time i {
    color: var(--orange-500);
    font-size: 1.25rem;
}

.how-time strong {
    color: white;
}

.btn-how {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-how::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-how:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

.btn-how:hover::before {
    opacity: 1;
}

.btn-how i {
    transition: transform 0.3s ease;
}

.btn-how:hover i {
    transform: translateX(4px);
}

/* Showcase Section */
.showcase-section {
    padding: 6rem 0;
    position: relative;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-reverse .showcase-content {
    direction: rtl;
}

.showcase-reverse .showcase-content > * {
    direction: ltr;
}

.showcase-text {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.0625rem;
    color: var(--zinc-300);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.showcase-description strong {
    color: white;
    font-weight: 600;
}

.showcase-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
    color: var(--zinc-200);
}

.showcase-highlight i {
    color: var(--orange-500);
    font-size: 1.125rem;
}

.showcase-features {
    list-style: none;
    display: grid;
    gap: 0.875rem;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--zinc-300);
}

.showcase-features li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-showcase {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.btn-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-showcase:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.btn-showcase:hover::before {
    opacity: 1;
}

.btn-showcase i {
    transition: transform 0.3s ease;
}

.btn-showcase:hover i {
    transform: translateX(3px);
}

.showcase-image {
    position: relative;
    display: flex;
    align-items: center;
}

/* Screenshots Section */
.screenshots {
    padding: 4rem 0 6rem;
    position: relative;
}

.screenshot-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.screenshot-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.6), rgba(9, 9, 11, 0.8));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.screenshot-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.screenshot-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 70px rgba(249, 115, 22, 0.3);
}

.screenshot-card:hover::before {
    opacity: 1;
}

.screenshot-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--zinc-600);
    font-size: 1rem;
    font-weight: 500;
}

.screenshot-placeholder svg {
    opacity: 0.5;
}

.screenshot-placeholder i {
    font-size: 3rem;
    opacity: 0.4;
    color: var(--zinc-500);
}

.screenshot-placeholder span {
    color: var(--zinc-500);
}

/* Features Section */
.features {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--zinc-400);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.6), rgba(9, 9, 11, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.25);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.875rem;
}

.feature-description {
    color: var(--zinc-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(180deg, black, var(--zinc-950));
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.toggle-label {
    font-size: 1rem;
    color: var(--zinc-400);
    font-weight: 500;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: white;
}

.toggle-discount {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    background: var(--zinc-800);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.active {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.6), rgba(9, 9, 11, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600), var(--orange-700));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(249, 115, 22, 0.25);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card-featured {
    border: 2px solid var(--orange-500);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.25);
    position: relative;
}

.pricing-card-featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    opacity: 0.1;
    pointer-events: none;
}

.pricing-card-featured:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 80px rgba(249, 115, 22, 0.35);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 16px rgba(249, 115, 22, 0.5);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--zinc-800);
}

.pricing-yearly-note {
    font-size: 0.875rem;
    color: var(--zinc-500);
    margin-top: 0.5rem;
    display: none;
}

.pricing-yearly-note.visible {
    display: block;
}

.pricing-credits {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
}

.credits-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange-500);
    margin-bottom: 0.25rem;
}

.credits-info {
    font-size: 0.875rem;
    color: var(--zinc-400);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
}

.price-period {
    font-size: 0.9rem;
    color: var(--zinc-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    color: var(--zinc-300);
    padding: 0.625rem 0;
    padding-left: 0;
    position: relative;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem;
    background: transparent;
    border: 2px solid var(--zinc-700);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(249, 115, 22, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-pricing:hover {
    border-color: var(--orange-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.btn-pricing:hover::before {
    opacity: 1;
}

.btn-pricing-featured {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    border: none;
}

.btn-pricing-featured::before {
    background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
    z-index: -1;
}

.btn-pricing-featured:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

.btn-pricing-featured:hover::before {
    opacity: 1;
}

.pricing-info {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info p {
    color: var(--zinc-400);
    font-size: 0.95rem;
    margin: 0;
}

.pricing-info strong {
    color: var(--orange-500);
    font-weight: 600;
}

.pricing-trial {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--zinc-500);
}

.pricing-trial-featured {
    color: var(--zinc-400);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--zinc-950), black);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.6), rgba(9, 9, 11, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--zinc-200);
}

.faq-question i {
    font-size: 0.875rem;
    color: var(--zinc-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
    color: var(--zinc-400);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    position: relative;
}

.cta-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    backdrop-filter: blur(12px);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--zinc-300);
    margin: 0;
}

.cta-action {
    flex-shrink: 0;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.5);
}

.cta-guarantee-small {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--zinc-500);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--zinc-950);
    border-top: 1px solid var(--zinc-900);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-about {
    color: var(--zinc-500);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-links-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.footer-links-group a {
    color: var(--zinc-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links-group a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange-500);
    transition: width 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--orange-500);
}

.footer-links-group a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--zinc-900);
    border: 1px solid var(--zinc-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zinc-400);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.social-link:hover {
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    border-color: var(--orange-500);
}

.social-link:hover::before {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--zinc-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--zinc-600);
    font-size: 0.875rem;
}

.footer-powered {
    color: var(--zinc-600);
    font-size: 0.875rem;
}

.powered-highlight {
    color: var(--orange-500);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .screenshots {
        padding: 3rem 0 4rem;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .how-it-works {
        padding: 5rem 0;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step-arrow {
        display: none;
    }

    .step-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        display: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.0625rem;
        border-radius: 8px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .btn-primary {
        padding: 1rem 2rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-reverse .showcase-content {
        direction: ltr;
    }

    .showcase-text {
        max-width: 100%;
    }

    .showcase-title {
        font-size: 1.875rem;
    }

    .showcase-description {
        font-size: 1rem;
    }

    .showcase-features {
        gap: 0.75rem;
    }

    .showcase-features li {
        font-size: 0.875rem;
    }

    .screenshot-card {
        padding-bottom: 75%;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.4375rem 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero-guarantee {
        font-size: 0.8125rem;
        flex-wrap: wrap;
    }

    .btn-showcase {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .stat {
        padding: 0.5rem;
    }

    .stat-icon {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.75rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-description {
        font-size: 0.9375rem;
    }

    .screenshots {
        padding: 3rem 0 4rem;
    }

    .pricing {
        padding: 4rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-box {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        text-align: center;
        gap: 2rem;
    }

    .cta-content {
        text-align: center;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-action {
        width: 100%;
    }

    .btn-cta-primary {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.9375rem;
    }

    .faq-question span {
        padding-right: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.8125rem;
    }

    .faq-grid {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .showcase-section {
        padding: 3rem 0;
    }

    .showcase-content {
        gap: 1.5rem;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .showcase-description {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
    }

    .showcase-highlight {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
        margin-bottom: 1.25rem;
    }

    .showcase-highlight i {
        font-size: 1rem;
    }

    .showcase-features {
        gap: 0.625rem;
    }

    .showcase-features li {
        font-size: 0.8125rem;
    }

    .how-it-works {
        padding: 4rem 0;
    }

    .steps-container {
        gap: 2rem;
    }

    .step-card {
        padding: 1.75rem 1.5rem;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        top: -12px;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        margin: 1.25rem auto 1.25rem;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.875rem;
    }

    .step-visual {
        padding: 1.25rem;
        min-height: 110px;
    }

    .mock-input {
        padding: 0.875rem 1rem;
    }

    .mock-input span {
        font-size: 0.875rem;
    }

    .mock-download > i {
        font-size: 2rem;
    }

    .download-formats span {
        padding: 0.3125rem 0.625rem;
        font-size: 0.75rem;
    }

    .mock-btn {
        padding: 0.5625rem 1rem;
        font-size: 0.8125rem;
    }

    .how-time {
        font-size: 0.875rem;
        flex-wrap: wrap;
    }

    .how-cta {
        margin-top: 3rem;
    }

    .btn-how {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
    }

    .gen-progress {
        font-size: 0.8125rem;
    }

    .showcase-description {
        font-size: 0.9375rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    .stat-icon {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.875rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .pricing-grid {
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-price {
        flex-direction: column;
        gap: 0.25rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.8125rem;
        padding: 0.5rem 0;
    }

    .pricing-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.75rem;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .faq-answer p {
        font-size: 0.8125rem;
    }

    .cta-description {
        font-size: 0.9375rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-stats {
        gap: 0.5rem;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.625rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.375rem;
    }
}

/* ===================================
   Generator Pages Styles
   =================================== */

/* Generator Hero Section */
.generator-hero {
    padding: 140px 0 60px;
    position: relative;
}

.generator-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.generator-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--zinc-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.generator-subtitle {
    font-size: 1.25rem;
    color: var(--zinc-400);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Minimalistic Generator Input Box */
.generator-box-minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.generator-box-minimal:hover {
    border-color: rgba(249, 115, 22, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.generator-box-minimal:focus-within {
    border-color: var(--orange-500);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.generator-input-minimal {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #fff;
    font-family: inherit;
}

.generator-input-minimal:focus {
    outline: none;
}

.generator-input-minimal::placeholder {
    color: var(--zinc-500);
}

.btn-generate-minimal {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.btn-generate-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.5);
}

.btn-generate-minimal:active {
    transform: translateY(0);
}

/* Minimalistic Generator Features */
.generator-features-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--zinc-400);
}

.generator-features-minimal span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.generator-features-minimal i {
    color: var(--orange-500);
    font-size: 1rem;
}

/* Showcase Section */
.showcase-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.showcase-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    color: #fff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
}

.showcase-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--zinc-900);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-prompt {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: var(--zinc-400);
    font-style: italic;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.1);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.benefit-card p {
    color: var(--zinc-300);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive for Generator Pages */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .generator-hero {
        padding: 120px 0 50px;
    }

    .generator-title {
        font-size: 2.25rem;
    }

    .generator-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 2.5rem;
    }

    .generator-box-minimal {
        padding: 0.5rem 0.5rem 0.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .generator-input-minimal {
        font-size: 0.9375rem;
    }

    .btn-generate-minimal {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .generator-features-minimal {
        gap: 1.5rem;
        font-size: 0.8125rem;
    }

    .showcase-section {
        padding: 60px 0;
    }

    .showcase-title {
        font-size: 1.875rem;
        margin-bottom: 2.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-title {
        font-size: 1.875rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .generator-hero {
        padding: 110px 0 40px;
    }

    .generator-title {
        font-size: 1.875rem;
        margin-bottom: 0.75rem;
    }

    .generator-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .generator-box-minimal {
        padding: 0.375rem 0.375rem 0.375rem 1rem;
        border-radius: 12px;
    }

    .generator-input-minimal {
        font-size: 0.875rem;
        padding: 0.625rem 0;
    }

    .btn-generate-minimal {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .generator-features-minimal {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.8125rem;
    }

    .showcase-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .showcase-grid {
        gap: 1.25rem;
    }

    .showcase-prompt {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
    }

    .benefits-title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.625rem;
    }

    .benefit-card h3 {
        font-size: 1.125rem;
    }

    .benefit-card p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 360px) {
    .generator-title {
        font-size: 1.625rem;
    }

    .generator-subtitle {
        font-size: 0.9375rem;
    }

    .generator-box-minimal {
        max-width: 100%;
    }

    .showcase-title {
        font-size: 1.375rem;
    }
}

/* Legal Pages Styles */
.legal-document {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.legal-meta {
    color: var(--zinc-400);
    font-size: 0.95rem;
}

.legal-meta i {
    margin-right: 0.5rem;
    color: var(--orange-500);
}

.legal-body {
    color: var(--zinc-200);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--zinc-50);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--zinc-100);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--zinc-300);
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: none;
    padding: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--zinc-300);
}

.legal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange-500);
    font-weight: bold;
}

.legal-section ul li strong {
    color: var(--zinc-50);
}

.contact-info {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--zinc-200);
}

.contact-info strong {
    color: var(--orange-500);
}

.contact-info a {
    color: var(--orange-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--orange-600);
    text-decoration: underline;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 2px solid var(--orange-500);
    color: var(--orange-500);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--orange-500);
    color: white;
    transform: translateY(-2px);
}

.text-center {
    text-align: center;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.125rem;
    }

    .legal-document {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .legal-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .legal-header h1 {
        font-size: 1.75rem;
    }

    .legal-section {
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.375rem;
    }
}
