/* ==========================================
   KINFIT LANDING PAGE STYLES
   Color Theme: Orange, Blue, Green, Light Grey
   ========================================== */

/* CSS Variables - Design System */
:root {
    /* Primary Brand Colors - Richer & deeper */
    --color-orange: #FF6B35;
    --color-orange-light: #FF9B71;
    --color-orange-dark: #E85D2A;
    --color-blue: #2D7DD2;
    --color-blue-light: #6BAAF7;
    --color-blue-dark: #1A5FA8;
    --color-green: #00BFA6;
    --color-green-light: #52E0CE;
    --color-green-dark: #009682;

    /* Modern Neutral Palette */
    --color-bg-dark: #0F172A;
    --color-bg-card: #1E293B;
    --color-text-main: #F1F5F9;
    --color-text-muted: #94A3B8;
    --color-border: #334155;

    /* Glassmorphism Variables */
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --blur-strength: 16px;

    /* Sophisticated Gradients */
    --gradient-glow: radial-gradient(circle at top left, rgba(255, 107, 53, 0.15), transparent 40%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF9B71 100%);
    --gradient-accent: linear-gradient(135deg, #2D7DD2 0%, #00BFA6 100%);

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-2xl: 8rem;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Modern Shadows */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    /* Animation */
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.3s;
    --duration-normal: 0.5s;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-strength));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.section-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   BUTTONS
   ========================================== */

/* ==========================================
   BUTTONS
   ========================================== */

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--duration-fast) var(--ease-smooth);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF9B71 0%, #FF6B35 100%);
    z-index: -1;
    transition: opacity var(--duration-fast);
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
    background: rgba(255, 107, 53, 0.1);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ==========================================
   NAVIGATION
   ========================================== */

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--duration-normal);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    background: var(--glass-bg);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--glass-border);
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    transition: color var(--duration-fast);
}

.nav-links a:hover {
    color: var(--color-white);
}

.nav-cta {
    display: flex;
    gap: var(--spacing-sm);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: 0.3s;
}

/* ==========================================
   HERO SECTION
   ========================================== */

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: radial-gradient(circle at top right, #1E293B 0%, #0F172A 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #FF6B35;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #2D7DD2;
    top: 40%;
    right: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 550px;
    height: 550px;
    background: #00BFA6;
    bottom: -150px;
    left: 40%;
    animation-delay: 14s;
    opacity: 0.3;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -60px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-text {
    z-index: 2;
    padding-right: var(--spacing-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
    margin-bottom: var(--spacing-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-green-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--glass-border);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.app-screenshots-stack {
    position: relative;
    height: 700px;
    width: 100%;
    transform-style: preserve-3d;
}

.screenshot-img {
    position: absolute;
    width: 320px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.screen-1 {
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateZ(60px);
}

.screen-2 {
    z-index: 2;
    left: 15%;
    top: 45%;
    transform: translateZ(20px) rotateY(15deg) rotateZ(-5deg);
    opacity: 0.7;
    filter: brightness(0.7);
}

.screen-3 {
    z-index: 1;
    right: 15%;
    top: 55%;
    transform: translateZ(0) rotateY(-15deg) rotateZ(5deg);
    opacity: 0.5;
    filter: brightness(0.5);
}

.app-screenshots-stack:hover .screen-1 {
    transform: translate(-50%, -52%) translateZ(80px);
    box-shadow: 0 40px 80px -12px rgba(0, 191, 166, 0.2);
}

.app-screenshots-stack:hover .screen-2 {
    left: 10%;
    opacity: 0.9;
    filter: brightness(0.9);
    transform: translateZ(40px) rotateY(25deg) rotateZ(-8deg);
}

.app-screenshots-stack:hover .screen-3 {
    right: 10%;
    opacity: 0.9;
    filter: brightness(0.9);
    transform: translateZ(20px) rotateY(-25deg) rotateZ(8deg);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    border-radius: 50%;
}

/* ==========================================
   APP ACTION SECTION
   ========================================== */

.app-action {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.screenshots-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
}

.showcase-item {
    background: var(--color-grey-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--color-grey);
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange);
}

.showcase-image {
    padding: var(--spacing-lg);
    background: var(--gradient-hero);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.showcase-image img {
    height: 100%;
    width: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.showcase-content {
    padding: var(--spacing-xl);
    text-align: center;
}

.showcase-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.showcase-content p {
    color: var(--color-text-light);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-dark);
    position: relative;
}

/* Background decoration for features */
.features::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 125, 210, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.orange-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #FF9B71 100%);
}

.blue-gradient {
    background: linear-gradient(135deg, #2D7DD2 0%, #6BAAF7 100%);
}

.green-gradient {
    background: linear-gradient(135deg, #00BFA6 0%, #52E0CE 100%);
}

.ai-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #2D7DD2 50%, #00BFA6 100%);
}

.featured-ai {
    border: 1px solid rgba(255, 107, 53, 0.3) !important;
    background: rgba(255, 107, 53, 0.05) !important;
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-white);
}

.feature-description {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */

.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: #111827;
    position: relative;
    overflow: hidden;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 191, 166, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    transition: transform 0.4s ease;
    transform: rotate(-5deg);
}

.step:hover .step-number {
    transform: rotate(0deg) scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.step-description {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-connector {
    display: none;
}

/* ==========================================
   BENEFITS SPLIT SECTION
   ========================================== */

.benefits-split {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.benefit-column {
    padding: 3rem;
    border-radius: var(--radius-xl);
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.benefit-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gym-owners {
    border-top: 4px solid var(--color-orange);
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, rgba(30, 41, 59, 0.4) 100%);
}

.members {
    border-top: 4px solid var(--color-blue);
    background: linear-gradient(180deg, rgba(45, 125, 210, 0.05) 0%, rgba(30, 41, 59, 0.4) 100%);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: 2.5rem;
}

.benefit-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-header h3 {
    font-size: 1.75rem;
    color: var(--color-white);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.benefit-list li span {
    flex: 1;
}

.benefit-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* ==========================================
   PRICING SECTION
   ========================================== */

/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing {
    padding: var(--spacing-3xl) 0;
    background: #0F172A;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(45, 125, 210, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(30, 41, 59, 0.6);
}

.pricing-card.featured {
    border: 1px solid rgba(255, 107, 53, 0.5);
    background: rgba(30, 41, 59, 0.6);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.plan-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2.5rem;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--color-text-muted);
    margin-right: 4px;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--color-text-muted);
    display: block;
    margin-top: 0.5rem;
}

.amount-custom {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-main);
    font-size: 1rem;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.4);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #FCD34D;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25rem;
    border: 1px solid var(--glass-border);
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.125rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================
   FAQ SECTION
   ========================================== */

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--color-white);
    background: transparent;
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    color: var(--color-orange);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(15, 23, 42, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FF6B35 0%, #E85D2A 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: #0B1120;
    color: var(--color-text-muted);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-description {
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    color: var(--color-white);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.footer-heading {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-orange);
    transform: translateX(4px);
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.app-button-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.app-button-content {
    display: flex;
    flex-direction: column;
}

.app-button-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    line-height: 1;
    margin-bottom: 2px;
}

.app-button-store {
    font-weight: 600;
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a:hover {
    color: var(--color-orange);
}

/* ==========================================
   FORM PAGES (DEMO & TRIAL)
   ========================================== */

/* ==========================================
   FORM PAGES (DEMO & TRIAL)
   ========================================== */

.form-page {
    background: var(--color-bg-dark);
    min-height: 100vh;
}

.page-content {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.4);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.form-header h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.form-header p {
    color: var(--color-text-muted);
    font-size: 1.15rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: rgba(15, 23, 42, 0.6);
    color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    background: rgba(15, 23, 42, 0.8);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.input-hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.form-check input[type="checkbox"] {
    margin-top: 4px;
    background: rgba(15, 23, 42, 0.6);
    border-color: var(--glass-border);
    width: 1.25rem;
    height: 1.25rem;
    appearance: none;
    display: grid;
    place-content: center;
}

.form-check input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em white;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.form-check input[type="checkbox"]:checked {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

.form-check input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.form-footer-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.form-footer-text a {
    color: var(--color-orange);
    font-weight: 600;
}

.full-width {
    width: 100%;
}

/* Split Layout for Trial Page */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.trial-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(0, 191, 166, 0.15);
    color: var(--color-green-light);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.benefit-list-simple {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-list-simple li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

/* ==========================================
   RESPONSIVE DESIGN & MEDIA QUERIES
   ========================================== */

/* Large Tablets & Small Laptops (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    :root {
        --spacing-3xl: 4rem;
        --spacing-2xl: 6rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-visual {
        transform: scale(0.8);
        transform-origin: right center;
    }

    .container {
        padding: 0 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {

    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
        /* Above nav-links */
        position: relative;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-content {
        justify-content: space-between;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0;
        z-index: 1001;
        border: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--color-white);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for links */
    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-cta {
        display: none;
        /* Can be moved inside nav-links via JS if needed, for now hiding */
    }

    /* Hero Section */
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 4rem;
        display: block;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        margin: 0 auto 2rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        border-top: 1px solid var(--glass-border);
        padding-top: 2rem;
        margin-top: 2rem;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat {
        text-align: center;
        min-width: 100px;
    }

    .hero-visual {
        transform: scale(1);
        width: 100%;
        height: 400px;
        margin-top: 2rem;
        perspective: none;
        /* Remove 3D for simpler mobile view */
    }

    .app-screenshots-stack {
        height: 400px;
        transform: scale(0.9);
        transform-origin: center top;
        left: 0;
    }

    .screen-1 {
        transform: translate(-50%, -50%) !important;
        width: 280px;
    }

    /* Reposition secondary screens for mobile to just peak out or hide */
    .screen-2 {
        display: none;
    }

    .screen-3 {
        display: none;
    }

    /* Mockup glow center */
    .mockup-glow {
        width: 300px;
        height: 300px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Benefits Split */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-column {
        padding: 2rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
        /* Show popular plan first */
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    /* Footer */
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        margin: 0 auto 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-heading {
        margin-bottom: 1rem;
    }

    .footer-links {
        align-items: center;
    }

    .app-download-buttons {
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .app-button {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-legal {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* CTA Section */
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Form Pages */
    .form-container {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
    }

    .pricing-price .amount {
        font-size: 3.5rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
}