/* ================================
   LuxFlip - Modern Luxury Design
   ================================ */

/* CSS Variables */
:root {
    --gold: #D4AF37;
    --gold-light: #F5D663;
    --gold-dark: #A67C00;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --black: #0D0D0D;
    --black-light: #1A1A1A;
    --black-lighter: #252525;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --burgundy: #800020;
    --bg-dark: #0D0D0D;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-gold-intense: 0 0 60px rgba(212, 175, 55, 0.5);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
}

.logo-icon {
    font-size: 28px;
    animation: sparkle 2s ease-in-out infinite;
}

.logo-icon-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-right: 8px;
    vertical-align: middle;
}

.app-icon-img-large {
    width: 180px;
    height: 180px;
    border-radius: 36px;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

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

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

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

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

.nav-links a.active {
    color: var(--gold);
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-large {
    padding: 20px 40px;
    font-size: 17px;
}

.apple-icon {
    width: 20px;
    height: 20px;
}

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

/* Animated Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Floating Orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-orb 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 50px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}

.hero-content {
    flex: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 32px;
    animation: fade-in-up 0.8s ease-out;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    animation: fade-in-up 0.8s ease-out 0.1s both;
}

.hero-title .gold-text {
    display: inline-block;
    animation: shimmer-text 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes shimmer-text {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray-light);
    margin-bottom: 48px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fade-in-up 0.8s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    animation: fade-in-up 0.8s ease-out 0.4s both;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    display: none;
}

/* ================================
   Section Styles
   ================================ */
section {
    padding: 120px 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 60px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   Features Section
   ================================ */
.features {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.1);
}

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

.feature-icon {
    font-size: 52px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    color: var(--gray-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

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

/* ================================
   Screenshots Section
   ================================ */
.screenshots {
    background: var(--black);
    overflow: hidden;
    padding: 120px 0;
}

.screenshot-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 40px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screenshot-carousel::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex-shrink: 0;
    scroll-snap-align: center;
    text-align: center;
}

.device-frame {
    background: linear-gradient(135deg, var(--black-lighter), var(--black));
    border-radius: 44px;
    padding: 14px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.device-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--black);
    border-radius: 3px;
}

.device-frame.iphone {
    width: 300px;
    height: 620px;
}

.device-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 60px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        0 0 60px rgba(212, 175, 55, 0.1);
}

.device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
    background: var(--black);
}

.screenshot-caption {
    margin-top: 20px;
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(212, 175, 55, 0.02) 50%, var(--bg-dark) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-6px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-color: rgba(212, 175, 55, 0.25);
}

.testimonial-card.featured:hover {
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(212, 175, 55, 0.15);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--white);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    font-size: 18px;
}

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

.author-name {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.author-title {
    color: var(--gray);
    font-size: 13px;
    margin-top: 3px;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 32px;
}

.stat-value {
    color: var(--gold);
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-display);
}

.stat-label {
    color: var(--gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================
   Comparison Section
   ================================ */
.comparison {
    padding: 120px 0;
    background: var(--bg-dark);
}

.comparison-table-wrapper {
    margin-top: 60px;
    overflow-x: auto;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 28px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table thead th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.comparison-table thead th.luxflip {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--gold);
}

.comparison-table tbody tr {
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody td {
    font-size: 14px;
    color: var(--white);
}

.comparison-table tbody td:first-child {
    font-weight: 500;
}

.comparison-table tbody td.competitor {
    color: var(--gray);
}

.comparison-table tbody td.luxflip {
    color: var(--gold);
    font-weight: 500;
    background: rgba(212, 175, 55, 0.03);
}

.comparison-table .check {
    color: #2ecc71;
    font-weight: 700;
    margin-right: 8px;
}

.comparison-table .cross {
    color: #e74c3c;
    font-weight: 700;
}

.comparison-cta {
    text-align: center;
    margin-top: 60px;
}

.comparison-cta p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 24px;
}

/* ================================
   Pricing Section
   ================================ */
.pricing {
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    padding: 120px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(212, 175, 55, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 36px;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 20px;
}

.price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price span {
    font-size: 18px;
    color: var(--gray);
    -webkit-text-fill-color: var(--gray);
}

.price-note {
    font-size: 14px;
    color: var(--gold);
    margin-top: 10px;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing-features li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.pricing-features li.included::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.pricing-features li.excluded {
    color: var(--gray);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-features li.excluded::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
}

/* ================================
   FAQ Section
   ================================ */
.faq {
    background: var(--black);
    padding: 120px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 28px;
    color: var(--gold);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 28px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ================================
   CTA Section
   ================================ */
.cta {
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    text-align: center;
    padding: 140px 24px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta p {
    color: var(--gray-light);
    font-size: 19px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta .btn {
    position: relative;
    z-index: 1;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 40px;
}

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

.footer-brand .logo-icon,
.footer-brand .logo-text {
    display: inline;
    font-family: var(--font-display);
    font-size: 26px;
}

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

.footer-brand p {
    margin-top: 20px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    padding: 10px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

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

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

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

@keyframes spin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.coin-animation {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.coin {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border-radius: 50%;
    animation: float 3s ease-in-out infinite, spin 4s linear infinite;
    box-shadow: var(--shadow-gold);
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .testimonial-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat::after {
        display: none;
    }

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

    .testimonial-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat-badge {
        flex: 1;
        min-width: 140px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    section {
        padding: 80px 0;
    }

    .comparison-table-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
    }

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

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

    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Selection styling */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Body menu open */
body.menu-open {
    overflow: hidden;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================================
   Legal Pages (Privacy, Terms)
   ================================ */
.legal-content {
    padding: 140px 0 80px;
    min-height: 100vh;
}

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

.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--gray);
    font-size: 14px;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-section h3 {
    font-size: 20px;
    color: var(--white);
    margin: 24px 0 12px;
}

.legal-section p {
    color: var(--gray-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    color: var(--gray-light);
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-section a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--white);
}

/* Summary Box */
.summary-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-icon {
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
}

/* Highlight Box */
.highlight-box {
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--gold);
    padding: 24px 32px;
    border-radius: 0 12px 12px 0;
}

.highlight-box h2 {
    border-bottom: none;
    padding-bottom: 0;
}

/* ================================
   Support Page
   ================================ */
.support-hero {
    padding: 160px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.support-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-hero p {
    color: var(--gray-light);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

/* Quick Links */
.quick-links {
    padding: 60px 0;
    background: var(--black);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.quick-link-card {
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.quick-link-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.quick-link-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
    color: var(--gold);
}

.quick-link-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
}

.quick-link-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Support FAQ */
.support-faq {
    background: var(--black-light);
    padding: 80px 0;
}

.support-faq h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gold);
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 24px;
    margin: 12px 0;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--black);
}

.contact-section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

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

/* Contact Form */
.contact-form-container {
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-info-card p {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-info-card a {
    color: var(--gold);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.contact-info-card ul {
    padding-left: 20px;
    color: var(--gray);
    font-size: 14px;
}

.contact-info-card li {
    margin-bottom: 4px;
}

/* ================================
   Press Kit Page
   ================================ */
.press-hero {
    padding: 160px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.press-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.press-hero p {
    color: var(--gray-light);
    font-size: 18px;
    margin-bottom: 32px;
}

/* Press Overview */
.press-overview {
    padding: 80px 0;
    background: var(--black);
}

.press-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .press-overview-grid {
        grid-template-columns: 1fr;
    }
}

.press-overview-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 24px;
}

.press-overview-content .lead {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.press-fact {
    background: var(--black-lighter);
    border-radius: 12px;
    padding: 20px;
}

.fact-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.fact-value {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
}

.app-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-gold);
}

.app-icon-diamond {
    font-size: 80px;
    color: var(--black);
}

/* Press Features */
.press-features {
    padding: 80px 0;
    background: var(--black-light);
}

.press-features h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 48px;
}

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

.press-feature {
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.press-feature:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.press-feature-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.press-feature h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}

.press-feature p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.7;
}

/* USP Section */
.press-usp {
    padding: 80px 0;
    background: var(--black);
}

.press-usp h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 48px;
}

.usp-list {
    max-width: 800px;
    margin: 0 auto;
}

.usp-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.usp-item:last-child {
    border-bottom: none;
}

.usp-item h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 12px;
}

.usp-item p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* Screenshots Gallery */
.press-screenshots {
    padding: 80px 0;
    background: var(--black-light);
}

.press-screenshots h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 16px;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.screenshot-placeholder {
    aspect-ratio: 9/16;
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
}

/* Brand Assets */
.press-brand {
    padding: 80px 0;
    background: var(--black);
}

.press-brand h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 16px;
}

.brand-assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.brand-asset-card {
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.brand-asset-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.brand-asset-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--black);
    border-radius: 12px;
}

.logo-preview {
    gap: 12px;
}

.logo-preview .logo-icon {
    font-size: 36px;
    color: var(--gold);
}

.logo-preview .logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
}

.icon-preview .app-icon-preview {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--black);
}

.screenshots-preview {
    gap: 8px;
}

.mini-screenshot {
    width: 40px;
    height: 80px;
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.colors-preview {
    gap: 16px;
}

.color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.color-swatch.gold {
    background: var(--gold);
}

.color-swatch.dark {
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.color-swatch.light {
    background: var(--gold-light);
}

.brand-asset-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.brand-asset-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 16px;
}

/* Full Kit Download */
.full-kit-download {
    text-align: center;
    margin-top: 60px;
    padding: 48px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.full-kit-download h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.full-kit-download p {
    color: var(--gray-light);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Brand Guidelines */
.press-guidelines {
    padding: 80px 0;
    background: var(--black-light);
}

.press-guidelines h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 48px;
}

.guidelines-grid {
    display: grid;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.guideline-section h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 24px;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

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

.color-box {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.color-name {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.color-hex {
    display: block;
    color: var(--gray);
    font-size: 12px;
    font-family: monospace;
}

.typography-samples {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.type-sample {
    display: flex;
    align-items: center;
    gap: 24px;
}

.type-name {
    width: 100px;
    color: var(--gray);
    font-size: 14px;
}

.type-font {
    color: var(--white);
}

.dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.dos, .donts {
    background: var(--black-lighter);
    border-radius: 12px;
    padding: 24px;
}

.dos h4 {
    color: #4CAF50;
    margin-bottom: 16px;
}

.donts h4 {
    color: #f44336;
    margin-bottom: 16px;
}

.dos ul, .donts ul {
    padding-left: 20px;
    color: var(--gray-light);
    font-size: 14px;
}

.dos li, .donts li {
    margin-bottom: 8px;
}

/* Press Contact */
.press-contact {
    padding: 80px 0;
    background: var(--black);
}

.press-contact h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 48px;
}

.press-contact-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .press-contact-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-details p {
    color: var(--gray-light);
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}

.contact-method:hover {
    color: var(--gold-light);
}

.contact-icon {
    font-size: 24px;
}

.response-time {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray);
}

.social-links h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: block;
    padding: 12px 24px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-light);
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* App Store Section */
.press-appstore {
    padding: 80px 0;
    background: var(--black-light);
}

.press-appstore h2 {
    font-family: var(--font-display);
    font-size: 36px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 48px;
}

.appstore-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.appstore-badge {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 24px;
    text-align: center;
}

.badge-text {
    display: block;
    font-size: 12px;
    color: var(--gray-light);
}

.badge-store {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

.appstore-details p {
    color: var(--gray-light);
    margin-bottom: 8px;
}

.appstore-details strong {
    color: var(--white);
}

/* ================================
   Notifications
   ================================ */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 48px 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-color: rgba(76, 175, 80, 0.5);
}

.notification-error {
    border-color: rgba(244, 67, 54, 0.5);
}

.notification-message {
    color: var(--white);
    font-size: 14px;
}

.notification-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
}

.notification-close:hover {
    color: var(--white);
}

/* ================================
   Animation Classes
   ================================ */
.animate-prepare {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Stagger delays for grid items */
.animate-in:nth-child(1) { transition-delay: 0s; }
.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4) { transition-delay: 0.3s; }
.animate-in:nth-child(5) { transition-delay: 0.4s; }
.animate-in:nth-child(6) { transition-delay: 0.5s; }

/* Nav link active state */
.nav-links a.active {
    color: var(--gold);
}

/* Featured card glow */
.testimonial-card.featured,
.pricing-card.featured {
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Gold shimmer effect for section titles */
.section-title .gold-text {
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        #f5d76e 25%,
        var(--gold) 50%,
        #f5d76e 75%,
        var(--gold) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.logo .logo-icon {
    color: var(--gold);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ============================================
   DUTTLABS BRANDED FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, var(--black-light) 0%, #0A0A0B 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 24px 24px;
    margin-top: 80px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
}

.brand-logo {
    font-size: 1.5rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-maker {
    color: var(--gray);
    font-size: 0.875rem;
}

.footer-maker a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-maker a:hover {
    opacity: 0.8;
}

/* ============================================
   MORE APPS SECTION
   ============================================ */

.more-apps {
    padding: 80px 24px;
    background: var(--black-light);
}

.more-apps-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.more-apps h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.more-apps-container > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.more-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.more-app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.more-app-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.more-app-icon {
    font-size: 2rem;
}

.more-app-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.more-apps-cta {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.more-apps-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .more-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 40px 16px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
