/* ========================================
   HOW TO CHANGE LOGO SIZE
   ========================================
   Scroll down to the :root section below and find:

   --logo-navbar-scale: 2.5;         <- Change this number to make logo bigger/smaller
                                         (2.5 = 250% of base size)
                                         Higher = Bigger, Lower = Smaller

   --logo-navbar-base-height: 40px;  <- Base logo height (affects navbar capsule size)
   --logo-footer-height: 140px;      <- Footer logo size

   Just edit these values to resize the logo!
   ======================================== */

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

:root {
    /* Brand Colors */
    --primary-color: #00F7D4;
    --primary-soft: #33FFE6;
    --primary-hover: #33FFE6;

    /* Surface Colors */
    --surface-background: #05060A;
    --surface-section: #0B1220;
    --surface-card: #0F1A2A;

    /* Legacy mappings (for compatibility) */
    --bg-primary: #05060A;
    --secondary-color: #0B1220;
    --dark-bg: #05060A;
    --darker-bg: #05060A;
    --card-bg: #0F1A2A;

    /* Text Colors */
    --text-primary: #E9F1FF;
    --text-secondary: #B6C2D9;
    --text-muted: #7D8AA8;

    /* Status Colors */
    --status-success: #3DF57A;
    --status-warning: #F2C94C;

    /* Other */
    --border-color: rgba(0, 247, 212, 0.12);
    --gradient-start: #00F7D4;
    --gradient-end: #33FFE6;

    /* Logo Sizing - ADJUST THESE TO CHANGE LOGO SIZE */
    --logo-navbar-base-height: 40px;      /* Base height (affects navbar capsule size) */
    --logo-navbar-scale: 4.2;             /* Scale multiplier (makes logo bigger visually) */
    --logo-navbar-scale-tablet: 3.2;      /* Scale for tablets */
    --logo-navbar-scale-mobile: 2.2;      /* Scale for mobile */
    --logo-footer-height: 140px;          /* Footer logo size */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 6, 10, 0.95);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: var(--spacing-md) 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.logo-icon {
    font-size: 1.75rem;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--gradient-end));
    color: var(--darker-bg);
    box-shadow: 0 4px 15px rgba(0, 247, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 247, 212, 0.4);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
}

.btn-primary.large,
.btn-outline.large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

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

.arrow {
    transition: transform var(--transition-fast);
}

.btn-primary:hover .arrow,
.btn-secondary:hover .arrow,
.btn-outline:hover .arrow {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 247, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.hero-subdescription {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.small-hero {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
}

/* Product Hero */
.product-hero {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.product-hero-text {
    text-align: left;
}

.product-badge-large {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.product-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screenshot-large {
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 247, 212, 0.2));
    border-radius: var(--radius-lg);
}

/* Sections */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-dark {
    background: var(--darker-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.section-subtitle-2 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

.section-tagline {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-xl);
    font-weight: 500;
}

.section-tagline.large {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.section-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: var(--spacing-xl);
    font-style: italic;
}

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

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

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

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Product Cards */
.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-2xl);
}

.product-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-card.reverse .product-content {
    order: 2;
}

.product-card.reverse .product-image {
    order: 1;
}

.product-badge {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.product-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.bullet {
    color: var(--primary-color);
    font-weight: 600;
}

.feature span:last-child {
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screenshot {
    max-width: 350px;
    filter: drop-shadow(0 15px 30px rgba(0, 247, 212, 0.2));
    border-radius: var(--radius-lg);
}

/* Why Section */
.why-section {
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.why-item {
    padding: var(--spacing-xl);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.why-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

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

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: var(--spacing-xl);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-normal);
}

.process-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-secondary);
}

.process-arrow {
    font-size: 2rem;
    color: var(--text-muted);
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.audience-item {
    padding: var(--spacing-lg);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-normal);
}

.audience-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.audience-item p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons-center {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Consultation Page */
.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 16px;
    border: 1px solid rgba(0, 247, 212, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 247, 212, 0.15);
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 247, 212, 0.25);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
}

.benefit-text p {
    color: var(--text-secondary);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.9375rem;
}

.form-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: var(--spacing-xl);
    border-radius: 24px;
    border: 1px solid rgba(0, 247, 212, 0.3);
    position: sticky;
    top: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 247, 212, 0.2);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: var(--spacing-md);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.service-card {
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 20px;
    border: 1px solid rgba(0, 247, 212, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 247, 212, 0.2);
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 247, 212, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-secondary);
    font-family: 'Instrument Sans', sans-serif;
}

/* Product Pages */
.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 20px;
    border: 1px solid rgba(0, 247, 212, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 247, 212, 0.2);
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 247, 212, 0.3);
}

.feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    font-family: 'Instrument Sans', sans-serif;
}

.audience-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.audience-card {
    padding: var(--spacing-xl);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.audience-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.audience-card p {
    color: var(--text-secondary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.industry-card {
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 20px;
    border: 1px solid rgba(0, 247, 212, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 247, 212, 0.2);
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 247, 212, 0.3);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.industry-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
}

.industry-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-family: 'Instrument Sans', sans-serif;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: var(--spacing-2xl) auto;
}

.timeline-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.timeline-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.timeline-content li {
    color: var(--text-muted);
    padding-left: var(--spacing-md);
    position: relative;
}

.timeline-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Pricing */
.pricing-card {
    max-width: 800px;
    margin: var(--spacing-2xl) auto;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    border: 1px solid var(--border-color);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.pricing-feature {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.pricing-feature .check {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.pricing-feature span:last-child {
    color: var(--text-secondary);
}

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

.pricing-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: var(--spacing-md);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 20px;
    border: 1px solid rgba(0, 247, 212, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 247, 212, 0.2);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 247, 212, 0.3);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-secondary);
    font-family: 'Instrument Sans', sans-serif;
}

/* Build Process */
.build-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
    flex-wrap: wrap;
}

.build-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: var(--spacing-xl);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 20px;
    border: 1px solid rgba(0, 247, 212, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 247, 212, 0.2);
}

.build-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 247, 212, 0.3);
}

.build-step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Inter Tight', sans-serif;
    margin: 0 auto var(--spacing-md);
}

.build-step h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-family: 'Inter Tight', sans-serif;
    color: var(--primary-color);
}

.build-step p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-family: 'Instrument Sans', sans-serif;
}

.build-arrow {
    font-size: 2rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-section a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-section p {
    color: var(--text-secondary);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Core Features */
.core-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.core-feature-block {
    padding: var(--spacing-xl);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.core-feature-block:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.core-feature-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.core-feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.core-feature-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.core-feature-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.core-feature-list li {
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

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

.core-feature-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: var(--spacing-md);
}

/* Two Column Content */
.two-column-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.content-block {
    padding: var(--spacing-xl);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.content-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.content-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.content-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.content-list li {
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

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

.content-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: var(--spacing-md);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .product-hero-content,
    .product-card,
    .product-card.reverse,
    .consultation-content {
        grid-template-columns: 1fr;
    }

    .product-card.reverse .product-content,
    .product-card.reverse .product-image {
        order: unset;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .form-card {
        position: static;
    }

    .two-column-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-buttons,
    .cta-buttons,
    .cta-buttons-center {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-outline,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .process-steps,
    .build-process {
        flex-direction: column;
    }

    .form-card {
        padding: 24px;
    }

    .form-card h3 {
        font-size: 1.25rem;
    }

    .consultation-info h2 {
        font-size: 1.5rem;
    }

    .benefit-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .benefit-text h3 {
        font-size: 1rem;
    }

    .benefit-text p {
        font-size: 0.875rem;
    }

    .section {
        padding: 40px 0;
    }

    .gradient-text {
        display: inline;
    }

    .container {
        padding: 0 20px;
    }

    .small-hero,
    .product-hero {
        padding: 100px 0 var(--spacing-lg);
    }

    .product-hero-image img {
        max-width: 100%;
        height: auto;
    }

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

    .product-hero-text .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .process-arrow,
    .build-arrow {
        transform: rotate(90deg);
    }

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

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header {
    animation: fadeIn 0.8s ease;
}

/* Logo Image Styles */
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
}

/* Hero App Section */
.hero-app {
    padding: 120px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-app-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.hero-app-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-app-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 247, 212, 0.2);
    transition: transform var(--transition-normal);
}

.main-app-image:hover {
    transform: scale(1.05);
}

.app-widgets {
    margin-top: var(--spacing-md);
}

.widget-link {
    display: inline-block;
}

.download-widgets {
    max-width: 400px;
    height: auto;
    transition: transform var(--transition-normal);
}

.download-widgets:hover {
    transform: scale(1.05);
}

/* Responsive for App-Focused Layout */
@media (max-width: 968px) {
    .hero-app-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .hero-app {
        padding: 100px 0 var(--spacing-xl);
        min-height: auto;
    }

    .main-app-image {
        max-width: 400px;
    }

    .download-widgets {
        max-width: 300px;
    }

    .logo-image {
        height: 40px;
    }
}

@media (max-width: 640px) {
    .main-app-image {
        max-width: 300px;
    }

    .download-widgets {
        max-width: 250px;
    }
}

/* ========================================
   MODERN PROFESSIONAL SAAS DESIGN
   ======================================== */

/* Container */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Logo in Top Left */
.logo-container {
    position: absolute;
    top: -60px;
    left: 40px;
    z-index: 1001;
}

.logo-topleft {
    height: 210px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo-topleft:hover {
    transform: scale(1.05);
}

/* Navigation - Modern */
.navbar-new {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 6, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: fit-content;
    height: 68px;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* App Store Navigation - Top Right Corner */
.app-store-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 0;
    z-index: 999;
}

.app-store-nav .app-download-btn {
    transform: scale(0.6);
    transform-origin: top right;
}

.app-store-nav .app-download-btn:hover {
    transform: scale(0.6) translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-wrapper .mobile-menu-btn {
    display: none;
}

.nav-buttons {
    display: flex;
    gap: 16px;
}

.nav-btn-primary,
.nav-btn-secondary {
    padding: 10px 22px;
    border-radius: 10px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.nav-btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.nav-btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.nav-btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(0, 247, 212, 0.1);
}

/* Hero Section - Modern */
.hero-modern {
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #0B1220 0%, #05060A 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-headline {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 72px;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4),
                 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.headline-line {
    display: block;
}

.headline-accent {
    background: linear-gradient(90deg, #33D9FF 0%, #0066CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(0, 247, 212, 0.4))
            drop-shadow(0 8px 24px rgba(0, 247, 212, 0.3));
}

.hero-subheadline {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.gradient-text-new {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(0, 247, 212, 0.5));
}

.hero-subtext {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 540px;
}

.hero-cta {
    margin-top: 40px;
}

.widgets-large {
    max-width: 450px;
    height: auto;
    transition: transform 0.3s ease;
}

.widgets-large:hover {
    transform: scale(1.05);
}

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

.app-showcase {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6),
                0 40px 80px rgba(0, 247, 212, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.app-showcase:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7),
                0 60px 120px rgba(0, 247, 212, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Social Proof */
.social-proof {
    padding: 100px 0;
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-number {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-shadow: 0 4px 12px rgba(0, 247, 212, 0.6),
                 0 8px 24px rgba(0, 247, 212, 0.4);
}

.stat-label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 18px;
    color: var(--text-secondary);
}

/* Transparent Divider */
.transparent-divider {
    padding: 60px 0;
    background: transparent;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 247, 212, 0.3) 50%, transparent 100%);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Modern */
.features-modern {
    padding: 140px 0;
    background: var(--dark-bg);
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.section-headline {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-subhead {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-block {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                0 1px 3px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateZ(0);
}

.feature-block:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) translateZ(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6),
                0 30px 60px rgba(0, 247, 212, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-block .feature-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-block .feature-desc {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* CTA Modern */
.cta-modern {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-content-new {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-headline {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 56px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-subtext {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 40px;
    border-radius: 12px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 4px 12px rgba(0, 247, 212, 0.3),
                0 8px 24px rgba(0, 247, 212, 0.2),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 247, 212, 0.5),
                0 16px 60px rgba(0, 247, 212, 0.3),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-cta-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 247, 212, 0.4),
                inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(0, 247, 212, 0.1);
}

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

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

/* Footer Logo - uses same variable system */
.footer-logo-new {
    height: var(--logo-footer-height);
    width: auto;
    margin-bottom: 20px;
    transition: height 0.3s ease;
}

.footer-tagline {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 247, 212, 0.1);
    border: 1px solid rgba(0, 247, 212, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 247, 212, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom-new {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 900px;
}

.footer-copy {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-headline {
        font-size: 56px;
    }

    .section-headline {
        font-size: 40px;
    }

    .cta-headline {
        font-size: 48px;
    }
}

@media (max-width: 968px) {
    .container-wide {
        padding: 0 24px;
    }

    .nav-buttons {
        gap: 12px;
    }

    .nav-btn-primary,
    .nav-btn-secondary {
        padding: 8px 18px;
        font-size: 13px;
    }

    .hero-modern {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero-cosmic {
        padding: 100px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-headline {
        font-size: 48px;
    }

    .hero-headline-cosmic {
        font-size: 48px;
    }

    .hero-subtext {
        max-width: 100%;
    }

    .hero-image-container {
        max-width: 450px;
    }

    .hero-feature-bullets {
        gap: 20px 30px;
    }

    .app-showcase {
        max-width: 400px;
    }

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

    .features-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 40px;
    }

    .section-headline {
        font-size: 32px;
    }

    .cta-headline {
        font-size: 36px;
    }

    .hero-feature-bullets {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto;
        padding: 0 20px;
    }

    .hero-subtext {
        font-size: 17px;
    }

    .hero-cosmic {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-headline-cosmic {
        font-size: 32px;
        padding: 0 20px;
    }

    .hero-subheadline {
        font-size: 16px;
        padding: 0 20px;
    }

    .hero-subtext-cosmic {
        font-size: 16px;
        padding: 0 20px;
    }

    .headline-line {
        display: block;
    }

    .hero-centered {
        text-align: left;
        padding: 0 20px;
    }

    .hero-showcase {
        padding: 0 10px;
    }

    .hero-image-container {
        max-width: 280px;
    }

    .container-wide {
        padding: 0 16px;
    }

    .widgets-large {
        max-width: 300px;
    }

    .app-showcase {
        max-width: 300px;
    }

    .hero-widgets-cosmic {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .hero-tagline {
        font-size: 14px;
        padding: 0 20px;
        text-align: center;
    }

    .hero-features-box {
        padding: 0 10px;
    }

    .stat-number {
        font-size: 42px;
    }

    .feature-block {
        padding: 28px;
    }

    .feature-title {
        font-size: 20px;
    }

    .features-modern,
    .cta-modern {
        padding: 80px 0;
    }

    .social-proof {
        padding: 60px 0;
    }
}

/* ========================================
   COSMIC HERO SECTION
   ======================================== */

.hero-cosmic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        /* Subtle noise texture for depth */
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px),
        /* Premium dark gradient with brand colors */
        radial-gradient(ellipse at top right, #0B1220 0%, #05060A 40%, #000000 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background-orb {
    position: absolute;
    top: 0;
    right: -20%;
    width: 70%;
    height: 120%;
    background:
        /* Gradient mesh effect */
        radial-gradient(ellipse at 30% 40%, rgba(0, 247, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 150, 200, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 30%, rgba(100, 120, 140, 0.03) 0%, transparent 60%);
    filter: blur(30px);
    opacity: 0.5;
    z-index: 0;
}

.hero-background-orb::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle at center, rgba(0, 247, 212, 0.12) 0%, transparent 60%);
    filter: blur(35px);
    border-radius: 50%;
}

.hero-background-orb::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 30%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle at center, rgba(0, 150, 200, 0.08) 0%, transparent 65%);
    filter: blur(30px);
    border-radius: 50%;
}

@keyframes meshFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, -20px) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-centered {
    text-align: left;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 0 30px 0;
}

.hero-headline-cosmic {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 80px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    text-shadow:
        0 3px 6px rgba(0, 200, 200, 0.15),
        0 6px 12px rgba(0, 180, 180, 0.1),
        0 10px 20px rgba(0, 150, 150, 0.08);
}

.gradient-text-cosmic {
    background: linear-gradient(180deg, #00FFF0 0%, #00E5D4 30%, #00C9B8 70%, #00A89C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter:
        drop-shadow(0 0 20px rgba(0, 255, 240, 0.9))
        drop-shadow(0 0 40px rgba(0, 247, 212, 0.7))
        drop-shadow(0 0 60px rgba(0, 230, 200, 0.5))
        drop-shadow(0 0 80px rgba(0, 200, 180, 0.4))
        drop-shadow(0 5px 15px rgba(0, 150, 140, 0.3));
}

.hero-headline-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    margin-bottom: 40px;
    margin-top: -40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transform: scaleX(1.15);
}

.hero-subtext-cosmic {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-widgets-cosmic {
    margin-top: 0;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: #FFFFFF;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter Tight', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.download-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.download-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #000000;
}

.download-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

/* Store Buttons */
.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(0, 247, 212, 0.1) 0%, rgba(0, 247, 212, 0.05) 100%);
    border: 1px solid rgba(0, 247, 212, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.store-button:hover::before {
    left: 100%;
}

.store-button:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 247, 212, 0.6);
    box-shadow: 0 8px 24px rgba(0, 247, 212, 0.2),
                0 0 0 1px rgba(0, 247, 212, 0.1);
    background: linear-gradient(135deg, rgba(0, 247, 212, 0.15) 0%, rgba(0, 247, 212, 0.08) 100%);
}

.store-button:active {
    transform: translateY(-1px);
}

.store-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.app-store-btn .store-icon {
    color: var(--text-primary);
}

.google-play-btn .store-icon {
    color: var(--primary-color);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.store-label {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2px;
}

/* Hero Showcase - Two Column Layout */
.hero-showcase {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 20px auto 0;
}

.hero-phone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-feature-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.feature-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.bullet-content h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.bullet-content p {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.hero-features-box {
    max-width: 1200px;
    width: 100%;
}

.hero-features-bullets-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 60px;
    margin-bottom: 40px;
    padding: 0 40px;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    max-width: 280px;
    text-align: left;
}

.hero-feature-item:hover {
    opacity: 0.8;
}

.hero-app-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto;
    padding: 40px 0 0;
}

/* Hero Feature Bullets */
.hero-features-bullets {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-feature-bullet {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.hero-feature-content {
    flex: 1;
}

.hero-feature-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.hero-feature-desc {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.app-cosmic-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* App Callouts */
.app-callout {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 10;
}

.callout-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    position: relative;
}

.callout-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 247, 212, 0.6);
}

.callout-content {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 247, 212, 0.2);
    white-space: nowrap;
}

.callout-content h4 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    margin: 0 0 4px 0;
}

.callout-content p {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

/* Callout Positions */
.callout-1 {
    top: 20%;
    left: -180px;
    flex-direction: row;
}

.callout-2 {
    top: 42%;
    right: -180px;
    flex-direction: row-reverse;
}

.callout-2 .callout-line {
    background: linear-gradient(270deg, var(--primary-color), transparent);
}

.callout-2 .callout-line::before {
    left: auto;
    right: 0;
}

.callout-3 {
    top: 72%;
    left: -180px;
    flex-direction: row;
}

.hero-tagline {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 32px;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-cosmic {
    max-width: 400px;
    height: auto;
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

/* Ground reflection */
.app-reflection {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 140px;
    background:
        radial-gradient(ellipse at center top,
            rgba(0, 247, 212, 0.1) 0%,
            rgba(0, 247, 212, 0.05) 30%,
            transparent 65%);
    filter: blur(25px);
    opacity: 0.5;
    z-index: 1;
}

/* Hover state */
.app-cosmic-wrapper:hover .app-cosmic {
    transform: translateY(-20px) scale(1.03);
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.6));
}

.app-cosmic-wrapper:hover .app-reflection {
    opacity: 0.7;
    filter: blur(30px);
    transform: translateX(-50%) scaleX(1.1);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: -40px auto 0;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
}

@keyframes floatApp {
    0%, 100% {
        transform: perspective(1500px) rotateX(8deg) rotateY(-2deg) translateZ(20px) translateY(0);
    }
    50% {
        transform: perspective(1500px) rotateX(8deg) rotateY(-2deg) translateZ(20px) translateY(-18px);
    }
}

@keyframes pulseReflection {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 0.65;
        transform: translateX(-50%) scaleX(1.06);
    }
}

/* Responsive Cosmic Hero */
@media (max-width: 1200px) {
    .hero-headline-cosmic {
        font-size: 64px;
    }

    .hero-headline-image {
        max-width: 540px;
        margin-bottom: 35px;
    }

    .hero-background-orb {
        right: -25%;
        width: 75%;
    }
}

@media (max-width: 968px) {
    .logo-container {
        top: -20px;
        left: 20px;
    }

    .logo-topleft {
        height: 160px;
    }

    .hero-cosmic {
        padding: 100px 0 60px;
        min-height: 90vh;
    }

    .hero-headline-cosmic {
        font-size: 48px;
    }

    .hero-headline-image {
        max-width: 420px;
        margin-top: -30px;
        margin-bottom: 30px;
    }

    .hero-subtext-cosmic {
        font-size: 18px;
    }

    .hero-showcase {
        gap: 40px;
        margin-top: 20px;
    }

    .hero-features-bullets-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 30px;
    }

    .hero-feature-item {
        max-width: 100%;
    }

    .app-download-btn {
        padding: 14px 28px;
    }

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

    .download-name {
        font-size: 18px;
    }

    .hero-feature-title {
        font-size: 22px;
    }

    .hero-feature-desc {
        font-size: 14px;
        max-width: 190px;
    }

    .store-button {
        padding: 9px 18px;
        gap: 8px;
    }

    .store-icon {
        width: 22px;
        height: 22px;
    }

    .store-label {
        font-size: 8px;
    }

    .store-name {
        font-size: 13px;
    }

    .app-cosmic {
        max-width: 340px;
        filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    }

    .hero-image-container {
        max-width: 350px;
        padding: 0 20px;
    }

    .hero-image {
        max-width: 100%;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    }

    .app-reflection {
        bottom: -80px;
        height: 120px;
        filter: blur(20px);
    }

    .app-callout {
        display: none;
    }

    @keyframes floatApp {
        0%, 100% {
            transform: perspective(1300px) rotateX(6deg) rotateY(-1deg) translateZ(18px) translateY(0);
        }
        50% {
            transform: perspective(1300px) rotateX(6deg) rotateY(-1deg) translateZ(18px) translateY(-14px);
        }
    }

    .hero-background-orb {
        right: -30%;
        width: 80%;
        height: 100%;
    }

    .app-store-nav {
        display: none;
    }

    .logo-container {
        top: -36px;
        left: 12px;
        z-index: 1002;
    }

    .logo-topleft {
        height: 150px;
    }

    .navbar-new {
        position: fixed;
        top: 12px;
        right: 12px;
        left: auto;
        padding: 4px 6px;
        width: auto;
        max-width: none;
        transform: none;
        height: auto;
        border-radius: 25px;
        background: rgba(0, 247, 212, 0.15);
        border: 1px solid var(--primary-color);
        box-shadow: 0 2px 10px rgba(0, 247, 212, 0.3);
        z-index: 9999;
        pointer-events: auto;
    }

    .app-store-nav {
        display: none;
    }

    .nav-wrapper {
        gap: 0;
        width: auto;
        justify-content: flex-end;
        padding-left: 0;
        position: relative;
        pointer-events: auto;
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 3px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px 6px;
        z-index: 10000;
        pointer-events: auto;
        position: relative;
        outline: none;
        -webkit-tap-highlight-color: rgba(0, 247, 212, 0.2);
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
    }

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

    .mobile-menu-btn span {
        width: 16px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 1px;
        box-shadow: 0 0 6px rgba(0, 247, 212, 0.5);
        transition: all 0.3s ease;
        pointer-events: none;
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-buttons {
        display: none;
        position: fixed;
        top: 50px;
        right: 12px;
        background: rgba(5, 6, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 247, 212, 0.3);
        border-radius: 12px;
        padding: 8px;
        flex-direction: column;
        gap: 6px;
        min-width: 160px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
        z-index: 9998;
        pointer-events: auto;
    }

    .nav-buttons.active {
        display: flex !important;
    }

    .nav-btn-primary,
    .nav-btn-secondary {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
        width: 100%;
        text-align: center;
        display: block;
        border-radius: 8px;
        pointer-events: auto;
        cursor: pointer;
    }
}

@media (max-width: 640px) {
    .logo-container {
        top: -30px;
        left: 10px;
    }

    .logo-topleft {
        height: 135px;
    }

    .navbar-new {
        top: 10px;
        right: 10px;
        padding: 4px 6px;
        background: rgba(0, 247, 212, 0.15);
        border: 1px solid var(--primary-color);
        box-shadow: 0 2px 10px rgba(0, 247, 212, 0.3);
        z-index: 9999;
        pointer-events: auto;
    }

    .app-store-nav {
        display: none;
    }

    .mobile-menu-btn {
        padding: 4px 5px !important;
        display: flex !important;
        cursor: pointer;
        pointer-events: auto;
        z-index: 10000;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: rgba(0, 247, 212, 0.2);
        gap: 2px;
    }

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

    .mobile-menu-btn span {
        width: 14px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 1px;
        box-shadow: 0 0 5px rgba(0, 247, 212, 0.5);
        pointer-events: none;
        display: block;
    }

    .nav-buttons {
        top: 45px;
        right: 10px;
        min-width: 150px;
        padding: 6px;
        gap: 5px;
    }

    .nav-btn-primary,
    .nav-btn-secondary {
        padding: 7px 12px;
        font-size: 11px;
    }

    .hero-headline-cosmic {
        font-size: 36px;
    }

    .hero-headline-image {
        max-width: 350px;
        padding: 0 20px;
        margin-top: -20px;
        margin-bottom: 25px;
    }

    .hero-subtext-cosmic {
        font-size: 16px;
    }

    .hero-showcase {
        margin-top: 15px;
        gap: 30px;
    }

    .hero-features-bullets-container {
        gap: 40px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .hero-feature-item {
        padding: 24px;
        width: 100%;
        max-width: 320px;
    }

    .hero-feature-item:nth-child(1),
    .hero-feature-item:nth-child(2),
    .hero-feature-item:nth-child(3) {
        transform: perspective(1000px) rotateX(5deg) rotateY(0deg);
    }

    .hero-feature-item:nth-child(1):hover,
    .hero-feature-item:nth-child(2):hover,
    .hero-feature-item:nth-child(3):hover {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px) translateZ(20px);
    }

    .hero-feature-title {
        font-size: 22px;
    }

    .hero-feature-desc {
        font-size: 14px;
        max-width: 200px;
    }

    .hero-widgets-cosmic {
        gap: 12px;
        margin-top: 0;
        flex-direction: column;
        width: 100%;
    }

    .store-button {
        padding: 12px 24px;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

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

    .store-label {
        font-size: 8px;
    }

    .store-name {
        font-size: 12px;
    }

    .app-cosmic {
        max-width: 300px;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    }

    .app-reflection {
        bottom: -70px;
        height: 100px;
        filter: blur(18px);
    }

    @keyframes floatApp {
        0%, 100% {
            transform: perspective(1100px) rotateX(5deg) rotateY(-1deg) translateZ(15px) translateY(0);
        }
        50% {
            transform: perspective(1100px) rotateX(5deg) rotateY(-1deg) translateZ(15px) translateY(-12px);
        }
    }

    .hero-app-bottom {
        padding: 30px 0 0;
    }

    .logo-container {
        top: -45px;
        left: 15px;
    }

    .logo-topleft {
        height: 165px;
    }

    .navbar-new {
        position: fixed;
        top: 15px;
        right: 15px;
        left: auto;
        padding: 5px 8px;
        width: auto;
        max-width: none;
        background: rgba(0, 247, 212, 0.15);
        border: 1px solid var(--primary-color);
        box-shadow: 0 2px 10px rgba(0, 247, 212, 0.3);
        z-index: 9999;
        pointer-events: auto;
    }

    .nav-wrapper {
        justify-content: flex-end;
        padding-left: 0;
        pointer-events: auto;
    }

    .mobile-menu-btn {
        padding: 5px 7px !important;
        display: flex !important;
        cursor: pointer;
        pointer-events: auto;
        z-index: 10000;
        touch-action: manipulation;
        user-select: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: rgba(0, 247, 212, 0.2);
        gap: 3px;
    }

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

    .mobile-menu-btn span {
        width: 15px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 1px;
        box-shadow: 0 0 6px rgba(0, 247, 212, 0.5);
        pointer-events: none;
        display: block;
    }

    .nav-buttons {
        min-width: 160px;
        top: 50px;
        right: 15px;
        padding: 8px;
        gap: 6px;
    }

    .nav-btn-primary,
    .nav-btn-secondary {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero-background-orb {
        right: -35%;
        width: 90%;
        height: 90%;
    }

    .hero-background-orb::before,
    .hero-background-orb::after {
        filter: blur(50px);
    }
}

/* ========================================
   ADDITIONAL LANDING PAGE SECTIONS
   ======================================== */

/* What We Do Grid */
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-block-large {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 56px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
}

.feature-block-large::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2),
        rgba(100, 220, 255, 0.15),
        rgba(255, 255, 255, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.feature-block-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(100, 220, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

@keyframes meshMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-5%, -5%) rotate(120deg);
    }
    66% {
        transform: translate(5%, 5%) rotate(240deg);
    }
}

.feature-block-large:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(100, 220, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-block-large:hover::before {
    opacity: 0.5;
}

.feature-block-large:hover::after {
    opacity: 1;
}

.feature-block-large .feature-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 200, 255, 0.15);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(100, 220, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent) 1;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

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

.feature-block-large .feature-desc {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.96);
    text-shadow:
        0 3px 8px rgba(0, 0, 0, 0.18),
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(100, 220, 255, 0.1);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.feature-checklist {
    list-style: none;
    margin-top: 32px;
    padding: 0;
    position: relative;
    z-index: 1;
}

.feature-checklist li {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    padding: 16px 0 16px 56px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 1;
}

.feature-checklist li:hover {
    transform: translateX(4px);
    color: #ffffff;
}

.feature-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(100, 220, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 200, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-checklist li::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid rgba(255, 255, 255, 0.9);
    border-width: 0 2.5px 2.5px 0;
    transform: translateY(-60%) rotate(45deg);
    transition: all 0.3s ease;
}

.feature-checklist li:hover::before {
    transform: translateY(-50%) scale(1.05);
    background: rgba(100, 230, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.feature-checklist li:hover::after {
    border-color: #ffffff;
}

/* Process Timeline Vertical */
.process-timeline-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--primary-color);
    display: flex;
    gap: 40px;
    align-items: flex-start;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--primary-color),
        0 0 20px rgba(0, 247, 212, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2),
        rgba(100, 220, 255, 0.15),
        rgba(255, 255, 255, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(100, 220, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--primary-color),
        0 0 40px rgba(0, 247, 212, 0.4);
    border-color: var(--primary-color);
}

.process-card:hover::before {
    opacity: 0.5;
}

.process-card:hover::after {
    opacity: 1;
}

.process-number {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(0, 247, 212, 0.08);
    box-shadow:
        0 0 0 2px var(--primary-color),
        0 0 0 6px rgba(0, 247, 212, 0.2),
        0 0 0 10px rgba(0, 247, 212, 0.1),
        0 0 30px rgba(0, 247, 212, 0.3),
        inset 0 0 20px rgba(0, 247, 212, 0.1);
    z-index: 1;
}

.process-content {
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.process-desc {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.process-details {
    margin-top: 24px;
}

.process-details p {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.process-details ul {
    list-style: none;
    padding: 0;
}

.process-details li {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 6px 0 6px 24px;
    position: relative;
}

.process-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Audience Grid Expanded */
.audience-grid-expanded {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.audience-block {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 36px;
    border-radius: 24px;
    border: 1px solid var(--primary-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--primary-color),
        0 0 20px rgba(0, 247, 212, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
}

.audience-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2),
        rgba(100, 220, 255, 0.15),
        rgba(255, 255, 255, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.audience-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(100, 220, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.audience-block:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--primary-color),
        0 0 40px rgba(0, 247, 212, 0.4);
    border-color: var(--primary-color);
}

.audience-block:hover::before {
    opacity: 0.5;
}

.audience-block:hover::after {
    opacity: 1;
}

.audience-block h3 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.audience-block p {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.pricing-card-new {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--primary-color),
        0 0 20px rgba(0, 247, 212, 0.3);
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
}

.pricing-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2),
        rgba(100, 220, 255, 0.15),
        rgba(255, 255, 255, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.pricing-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(100, 220, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.pricing-card-new:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--primary-color),
        0 0 40px rgba(0, 247, 212, 0.4);
    border-color: var(--primary-color);
}

.pricing-card-new:hover::before {
    opacity: 0.5;
}

.pricing-card-new:hover::after {
    opacity: 1;
}

.pricing-card-new.featured {
    border-color: var(--primary-color);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px var(--primary-color),
        0 0 30px rgba(0, 247, 212, 0.35);
}

.pricing-card-new.featured:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.45),
        0 0 0 1px var(--primary-color),
        0 0 50px rgba(0, 247, 212, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 6px 20px;
    border-radius: 20px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pricing-desc {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.pricing-features-list {
    flex-grow: 1;
    margin-bottom: 32px;
}

.pricing-feature {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 10px 0 10px 28px;
    position: relative;
    margin: 0;
}

.pricing-feature::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-pricing:hover {
    border-color: var(--primary-color);
    background: rgba(0, 247, 212, 0.1);
    transform: translateY(-2px);
}

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

.btn-pricing.primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 10px 25px rgba(0, 247, 212, 0.3);
}

.pricing-note {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 24px;
}

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

.btn-pricing-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing-secondary:hover {
    background: rgba(0, 247, 212, 0.1);
    box-shadow: 0 6px 20px rgba(0, 247, 212, 0.2);
}

.store-icon-small {
    width: 20px;
    height: 20px;
}

.pricing-title,
.pricing-desc,
.pricing-features-list {
    position: relative;
    z-index: 1;
}

/* FAQ Accordion */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-accordion {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-accordion:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question-accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

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

.faq-question-accordion h3 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 247, 212, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

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

.faq-item-accordion.active .faq-answer-accordion {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer-accordion p {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 36px;
    border-radius: 24px;
    border: 1px solid var(--primary-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--primary-color),
        0 0 20px rgba(0, 247, 212, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2),
        rgba(100, 220, 255, 0.15),
        rgba(255, 255, 255, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(100, 220, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--primary-color),
        0 0 40px rgba(0, 247, 212, 0.4);
    border-color: var(--primary-color);
}

.faq-item:hover::before {
    opacity: 0.5;
}

.faq-item:hover::after {
    opacity: 1;
}

.faq-question {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.faq-answer {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Dark Section Helper */
.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive Updates */
@media (max-width: 968px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-block-large {
        padding: 32px;
    }

    .process-card {
        flex-direction: column;
        padding: 36px;
    }

    .process-number {
        font-size: 36px;
        width: 80px;
        height: 80px;
    }

    .audience-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 640px) {
    .feature-block-large {
        padding: 24px;
    }

    .process-card {
        padding: 24px;
    }

    .process-number {
        font-size: 28px;
        width: 70px;
        height: 70px;
    }

    .process-content h3 {
        font-size: 22px;
    }

    .audience-grid-expanded {
        grid-template-columns: 1fr;
    }

    .pricing-card-new {
        padding: 32px;
    }

    .faq-item {
        padding: 24px;
    }

    .section {
        padding: 60px 0;
    }
}
