/* ============================================
   SoftFocus — Neumorphic Design System
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Base Colors */
    --bg-primary: #e8e4df;
    --bg-secondary: #d8d4cf;
    --text-primary: #4a4744;
    --text-secondary: #7a7774;
    --text-muted: #9a9794;
    
    /* Accent Colors */
    --accent-sage: #9db5a0;
    --accent-sage-light: #b5c9b8;
    --accent-sage-dark: #7a947d;
    --accent-terracotta: #c4a589;
    --accent-terracotta-light: #d9bc9f;
    --accent-lavender: #b8a9c9;
    --accent-lavender-light: #ccc0db;
    
    /* Neumorphic Shadows */
    --shadow-light: #f5f2ed;
    --shadow-dark: #c5c1bc;
    --shadow-inset-light: rgba(245, 242, 237, 0.8);
    --shadow-inset-dark: rgba(197, 193, 188, 0.6);
    
    /* Elevation Shadows */
    --elevation-1: 
        4px 4px 8px var(--shadow-dark),
        -4px -4px 8px var(--shadow-light);
    --elevation-2: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
    --elevation-3: 
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light);
    
    /* Inset Shadows */
    --inset-1: 
        inset 3px 3px 6px var(--shadow-inset-dark),
        inset -3px -3px 6px var(--shadow-inset-light);
    --inset-2: 
        inset 5px 5px 10px var(--shadow-inset-dark),
        inset -5px -5px 10px var(--shadow-inset-light);
    --inset-3: 
        inset 8px 8px 16px var(--shadow-inset-dark),
        inset -8px -8px 16px var(--shadow-inset-light);
    
    /* Typography */
    --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
    --transition-slower: 0.6s ease;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--accent-sage);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    box-shadow: var(--inset-1);
}

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

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-lg);
    transition: all var(--transition-base);
}

.nav.scrolled {
    background-color: rgba(232, 228, 223, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--elevation-1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    background-color: var(--bg-primary);
    box-shadow: var(--elevation-1);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-sage);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background-color: rgba(157, 181, 160, 0.15);
    box-shadow: var(--inset-1);
}

.nav-cta {
    padding: var(--space-xs) var(--space-md);
    border: none;
    border-radius: var(--radius-full);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--elevation-1);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    box-shadow: var(--elevation-2);
    transform: translateY(-1px);
}

.nav-cta:active {
    box-shadow: var(--inset-1);
    transform: translateY(0);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--accent-sage-dark) 100%);
    color: white;
    box-shadow: 
        4px 4px 8px rgba(122, 148, 125, 0.4),
        -4px -4px 8px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        6px 6px 12px rgba(122, 148, 125, 0.5),
        -6px -6px 12px rgba(255, 255, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        inset 3px 3px 6px rgba(0, 0, 0, 0.2),
        inset -3px -3px 6px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: var(--elevation-1);
}

.btn-secondary:hover {
    box-shadow: var(--elevation-2);
    transform: translateY(-2px);
}

.btn-secondary:active {
    box-shadow: var(--inset-1);
    transform: translateY(0);
}

.btn-large {
    padding: var(--space-sm) var(--space-lg);
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

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

.play-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-sage);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--space-3xl) + 80px) var(--space-lg) var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    background-color: var(--bg-primary);
    box-shadow: var(--inset-1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: var(--accent-sage);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.accent-sage {
    color: var(--accent-sage);
}

.accent-terracotta {
    color: var(--accent-terracotta);
}

.accent-lavender {
    color: var(--accent-lavender);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--bg-secondary);
    box-shadow: var(--inset-1);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background-color: var(--bg-primary);
    border-radius: 45px;
    box-shadow: var(--elevation-3);
    padding: 12px;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--inset-2);
}

.breathing-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.breath-ring {
    position: absolute;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent-sage);
    opacity: 0.3;
}

.ring-1 {
    inset: 0;
    animation: breathe-ring 6s infinite ease-in-out;
}

.ring-2 {
    inset: 30px;
    animation: breathe-ring 6s infinite ease-in-out 0.5s;
}

.ring-3 {
    inset: 60px;
    animation: breathe-ring 6s infinite ease-in-out 1s;
}

.breath-center {
    position: absolute;
    inset: 80px;
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--accent-sage-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--elevation-2);
    animation: breathe-center 6s infinite ease-in-out;
}

.breath-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

@keyframes breathe-ring {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes breathe-center {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s infinite ease-in-out;
}

.fe-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: -60px;
    animation-delay: 0s;
}

.fe-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: -40px;
    animation-delay: 2s;
}

.fe-3 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: -50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ============================================
   Section Styles
   ============================================ */

.section {
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    background-color: var(--bg-primary);
    box-shadow: var(--inset-1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   Experience Section
   ============================================ */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.exp-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background-color: var(--bg-primary);
    box-shadow: var(--elevation-1);
    transition: all var(--transition-base);
    text-align: center;
}

.exp-card:hover {
    box-shadow: var(--elevation-2);
    transform: translateY(-4px);
}

.exp-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background-color: var(--bg-primary);
    box-shadow: var(--elevation-1);
    color: var(--accent-sage);
}

.exp-icon svg {
    width: 36px;
    height: 36px;
}

.exp-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.exp-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Features Section
   ============================================ */

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-content {
    max-width: 500px;
}

.feature-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.feature-tag.accent-terracotta {
    background-color: rgba(196, 165, 137, 0.2);
    color: var(--accent-terracotta);
}

.feature-tag.accent-lavender {
    background-color: rgba(184, 169, 201, 0.2);
    color: var(--accent-lavender);
}

.feature-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.feature-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background-color: var(--accent-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--elevation-1);
}

.feature-check svg {
    width: 14px;
    height: 14px;
    color: white;
}

/* Feature Visuals */
.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-card {
    width: 280px;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background-color: var(--bg-primary);
    box-shadow: var(--elevation-2);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 181, 160, 0.1) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.card-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    margin-bottom: var(--space-xs);
}

.card-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.card-progress {
    display: flex;
    justify-content: flex-end;
}

.progress-ring {
    width: 50px;
    height: 50px;
    position: relative;
}

.progress-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    color: var(--accent-sage);
}

.progress-ring span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.moon-phase {
    width: 50px;
    height: 50px;
    margin-left: auto;
    color: var(--accent-lavender);
}

.moon-phase svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Practice Section
   ============================================ */

.practice-showcase {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--elevation-2);
    padding: var(--space-lg);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
}

.showcase-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.showcase-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    background-color: transparent;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

.showcase-btn:hover {
    background-color: rgba(157, 181, 160, 0.1);
    color: var(--text-primary);
}

.showcase-btn.active {
    background-color: var(--bg-primary);
    box-shadow: var(--inset-1);
    color: var(--text-primary);
}

.btn-indicator {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: var(--text-muted);
    transition: all var(--transition-fast);
}

.showcase-btn.active .btn-indicator {
    background-color: var(--accent-sage);
}

.showcase-display {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    width: 100%;
}

.showcase-panel.active {
    display: grid;
}

.panel-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.orb {
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-large {
    width: 200px;
    height: 200px;
    background-color: var(--bg-primary);
    box-shadow: var(--elevation-2);
}

.orb-inner {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--accent-sage-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--elevation-1);
    animation: gentle-pulse 4s infinite ease-in-out;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.orb-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Focus Visual */
.focus-rings {
    position: relative;
    width: 200px;
    height: 200px;
}

.f-ring {
    position: absolute;
    border-radius: var(--radius-full);
    border: 2px solid var(--accent-terracotta);
    opacity: 0.4;
}

.f-ring:nth-child(1) {
    inset: 0;
    animation: focus-ring 3s infinite ease-in-out;
}

.f-ring:nth-child(2) {
    inset: 40px;
    animation: focus-ring 3s infinite ease-in-out 0.5s;
}

.f-ring:nth-child(3) {
    inset: 80px;
    animation: focus-ring 3s infinite ease-in-out 1s;
}

@keyframes focus-ring {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* Sleep Visual */
.stars-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.star {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-lavender);
    border-radius: var(--radius-full);
    box-shadow: var(--elevation-1);
}

.s1 { top: 20%; left: 30%; animation: twinkle 2s infinite; }
.s2 { top: 40%; left: 70%; animation: twinkle 2s infinite 0.5s; }
.s3 { top: 60%; left: 20%; animation: twinkle 2s infinite 1s; }
.s4 { top: 30%; left: 50%; animation: twinkle 2s infinite 1.5s; }
.s5 { top: 70%; left: 60%; animation: twinkle 2s infinite 0.3s; }

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

/* Move Visual */
.flow-line {
    width: 200px;
    height: 4px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-full);
    position: relative;
    box-shadow: var(--inset-1);
    overflow: hidden;
}

.flow-dot {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background-color: var(--accent-sage);
    box-shadow: var(--elevation-1);
    animation: flow-move 3s infinite ease-in-out;
}

@keyframes flow-move {
    0%, 100% { left: 0; }
    50% { left: calc(100% - 20px); }
}

/* Panel Info */
.panel-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.panel-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.panel-meta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: var(--radius-full);
    background-color: var(--text-muted);
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background-color: var(--bg-primary);
    box-shadow: var(--elevation-1);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--elevation-2);
    transform: translateY(-4px);
}

.testimonial-quote {
    width: 40px;
    height: 40px;
    color: var(--accent-sage);
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--accent-sage-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--elevation-1);
}

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

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background-color: var(--bg-primary);
    box-shadow: var(--elevation-1);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--elevation-2);
    transform: translateY(-4px);
}

.pricing-featured {
    box-shadow: var(--elevation-2);
    border: 2px solid var(--accent-sage);
}

.pricing-featured:hover {
    box-shadow: var(--elevation-3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--accent-sage-dark) 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--elevation-1);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--bg-secondary);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: var(--space-sm);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

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

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-sage);
}

.pricing-feature.disabled .feature-icon {
    color: var(--text-muted);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: var(--space-3xl) var(--space-lg);
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    background-color: var(--bg-primary);
    box-shadow: var(--elevation-2);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.cta-form {
    max-width: 400px;
}

.input-group {
    display: flex;
    gap: var(--space-xs);
    padding: var(--space-xs);
    border-radius: var(--radius-full);
    background-color: var(--bg-primary);
    box-shadow: var(--inset-1);
}

.input-field {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-full);
    background-color: transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
}

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

.btn-submit {
    padding: var(--space-sm) var(--space-md);
    white-space: nowrap;
}

.form-note {
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Visual */
.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.soft-orb {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-full);
    background-color: var(--bg-primary);
    box-shadow: var(--inset-3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.orb-glow {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--accent-lavender) 50%, var(--accent-terracotta) 100%);
    opacity: 0.6;
    filter: blur(40px);
    animation: glow-shift 8s infinite ease-in-out;
}

@keyframes glow-shift {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: var(--space-3xl) var(--space-lg) var(--space-xl);
    background-color: var(--bg-secondary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--bg-primary);
    box-shadow: var(--elevation-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    box-shadow: var(--elevation-2);
    transform: translateY(-2px);
    color: var(--accent-sage);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-column a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--space-xl);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--space-3xl) + 120px);
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: var(--space-2xl);
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .feature-reverse {
        direction: ltr;
    }
    
    .practice-showcase {
        grid-template-columns: 1fr;
    }
    
    .showcase-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .showcase-panel.active {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-form {
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2.5rem;
        --space-2xl: 3.5rem;
        --space-3xl: 5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* ============================================
   Accessibility
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent-sage);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --bg-primary: #ffffff;
        --bg-secondary: #f0f0f0;
    }
}