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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2A2A2A;
    background: #FEFEFE;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography with Soft Styling */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #06A099;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes quoteSlide {
    0%, 30% { opacity: 1; transform: translateY(0); }
    35%, 95% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Navigation with Glass Effect */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06A099;
    margin: 0;
}

.nav-logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #6B7280;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #06A099;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #06A099;
}

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

.cta-button {
    background: #06A099;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(6, 160, 153, 0.3);
}

.cta-button:hover {
    background: #045A54;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 160, 153, 0.4);
}

/* Modern Pill-Shaped Navigation */
.navbar-pill {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
}

.nav-pill-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-pill-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.nav-pill-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-pill-item {
    position: relative;
}

.nav-pill-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: #6B7280;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-pill-link:hover,
.nav-pill-link.active {
    color: #06A099;
    background: rgba(6, 160, 153, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #6B7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: rgba(6, 160, 153, 0.1);
    color: #06A099;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.contact-button {
    background: #06A099;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(6, 160, 153, 0.3);
}

.contact-button:hover {
    background: #045A54;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 160, 153, 0.4);
}

/* Hero Section with Parallax Effect */
.hero {
    min-height: 100vh;
    background: #F5FFFE;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 160, 153, 0.05);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Modern Button Styles */
.btn-primary {
    background: #06A099;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 160, 153, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: #045A54;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 160, 153, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    padding: 1rem 2rem;
    border: 2px solid rgba(6, 160, 153, 0.2);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(6, 160, 153, 0.1);
    border-color: #06A099;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Enhanced Phone Mockup with Realistic Design */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-screenshot {
    width: 450px;
    height: auto;
    position: relative;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-screenshot img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    background: transparent;
}

.hero-screenshot:hover img {
    transform: translateY(-5px);
}

/* Status Bar - removed as no longer needed */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px 4px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
}

.status-left .time {
    font-family: 'SF Pro Display', -apple-system, sans-serif;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.signal-bars {
    display: flex;
    gap: 2px;
    align-items: end;
    height: 12px;
}

.signal-bars span {
    width: 3px;
    background: #1F2937;
    border-radius: 1px;
}

.signal-bars span:nth-child(1) { height: 4px; }
.signal-bars span:nth-child(2) { height: 6px; }
.signal-bars span:nth-child(3) { height: 8px; }
.signal-bars span:nth-child(4) { height: 10px; }

.wifi-icon {
    font-size: 12px;
    margin: 0 2px;
}

.battery {
    width: 24px;
    height: 12px;
    border: 1px solid #1F2937;
    border-radius: 2px;
    position: relative;
}

.battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 2px;
    height: 6px;
    background: #1F2937;
    border-radius: 0 1px 1px 0;
}

.battery-level {
    width: 80%;
    height: 100%;
    background: #10B981;
    border-radius: 1px;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(6, 160, 153, 0.2);
}

.app-logo span {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
}

.app-menu {
    font-size: 20px;
    color: #6B7280;
    font-weight: bold;
}

/* Quote Container */
.quote-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.quote-carousel {
    width: 100%;
    height: 280px;
    position: relative;
}

.quote-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-slide.active {
    opacity: 1;
}

.quote-card {
    background: white;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 4px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.quote-category {
    font-size: 12px;
    font-weight: 600;
    color: #06A099;
    background: rgba(6, 160, 153, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.quote-text {
    font-size: 16px;
    font-style: italic;
    color: #1F2937;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.quote-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #F9FAFB;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #E5E7EB;
}

.action-btn:hover {
    background: #F3F4F6;
    transform: scale(1.05);
}

/* App Content - Ultra Simple Design with Optimized Animation */
.simple-quote-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
    position: relative;
}

.simple-quote-text {
    font-size: 18px;
    line-height: 1.4;
    color: #1F2937;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
    max-width: 240px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    will-change: opacity, transform;
}

.quote-category-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(6, 160, 153, 0.2);
    transition: all 0.4s ease;
    will-change: background-color, color, border-color, opacity, transform;
    background: rgba(6, 160, 153, 0.1);
    color: #06A099;
}

/* Smooth fade transitions */
.simple-quote-display.changing .simple-quote-text {
    opacity: 0;
    transform: translateY(10px);
}

.simple-quote-display.changing .quote-category-badge {
    opacity: 0;
    transform: translateY(5px) scale(0.95);
}

/* Dynamic Category Colors with smooth transitions */
.simple-quote-display[data-category="motivational"] .quote-category-badge {
    background: rgba(6, 160, 153, 0.1);
    color: #06A099;
    border-color: rgba(6, 160, 153, 0.2);
}

.simple-quote-display[data-category="love"] .quote-category-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border-color: rgba(239, 68, 68, 0.2);
}

.simple-quote-display[data-category="mindful"] .quote-category-badge {
    background: rgba(139, 92, 246, 0.1);
    color: #7C3AED;
    border-color: rgba(139, 92, 246, 0.2);
}

.simple-quote-display[data-category="success"] .quote-category-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    border-color: rgba(34, 197, 94, 0.2);
}

/* Bottom Navigation */
.app-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 16px 20px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-item.active {
    background: rgba(6, 160, 153, 0.1);
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
}

.nav-item.active span {
    color: #06A099;
    font-weight: 600;
}

.nav-icon {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.nav-item span {
    font-size: 10px;
    color: #6B7280;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #F5FFFE;
    position: relative;
}

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

/* =================================
   UNIFIED CARD SYSTEM
   ================================= */

/* Base card component - consistent across all cards */
.card-base {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.card-base:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(6, 160, 153, 0.12);
    border-color: rgba(6, 160, 153, 0.1);
}

/* Card with icon styling */
.card-with-icon {
    text-align: center;
    padding: 2.5rem 2rem;
}

.card-with-icon .card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(6, 160, 153, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-with-icon .card-icon svg,
.card-with-icon .card-icon img {
    width: 32px;
    height: 32px;
    color: #06A099;
}

.card-with-icon:hover .card-icon {
    background: rgba(6, 160, 153, 0.12);
    transform: scale(1.05);
}

.card-with-icon h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-with-icon p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Elevated card variant */
.card-elevated {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.08);
}

.card-elevated:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 16px 64px rgba(6, 160, 153, 0.15);
}

/* Large card variant */
.card-large {
    padding: 3rem 2.5rem;
}

/* Feature card updates */
.feature-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(6, 160, 153, 0.12);
    border-color: rgba(6, 160, 153, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(6, 160, 153, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 2rem;
}

.feature-card:hover .feature-icon {
    background: rgba(6, 160, 153, 0.12);
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1F2937;
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.step-card {
    background: #ffffff;
    text-align: center;
    padding: 3rem 2rem 2.5rem;
    border-radius: 20px;
    border: 1px solid #F3F4F6;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.3s; }
.step-card:nth-child(3) { animation-delay: 0.5s; }

.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    background: #06A099;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(6, 160, 153, 0.3);
    border: 3px solid white;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.06);
    border-color: #E5E7EB;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #F0FDFC 0%, #CCFBF1 100%);
    border: 1px solid #A7F3D0;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px rgba(6, 160, 153, 0.1);
}

.step-icon svg {
    width: 36px;
    height: 36px;
    color: #059669;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-width: 1.5;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #CCFBF1 0%, #99F6E4 100%);
    border-color: #6EE7B7;
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 20px rgba(6, 160, 153, 0.2);
}

.step-card:hover .step-icon svg {
    color: #047857;
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1F2937;
    font-weight: 600;
    line-height: 1.3;
}

.step-card p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Unified chip/tag styling - single style for all */
.chip, .example-tag, .example-keyword {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #F9FAFB;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
    cursor: default;
}

.chip:hover, .example-tag:hover, .example-keyword:hover {
    background: #F3F4F6;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-preview {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.quote-text {
    color: #374151;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
}

.quote-text::before {
    content: '"';
    color: #06A099;
    font-size: 1.2rem;
    font-weight: bold;
}

.quote-text::after {
    content: '"';
    color: #06A099;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive adjustments for step examples */
@media (max-width: 768px) {
    .step-example {
        gap: 0.5rem;
    }
    
    .chip, .example-tag, .example-keyword {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }
    
    .quote-preview {
        padding: 0.75rem;
    }
    
    .quote-text {
        font-size: 0.85rem;
    }
    
    .step-icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }
    
    .step-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .step-card::before {
        width: 32px;
        height: 32px;
        top: -12px;
        right: -12px;
        font-size: 0.875rem;
        border: 2px solid white;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.5s; }

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(6, 160, 153, 0.12);
    border-color: rgba(6, 160, 153, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: rgba(6, 160, 153, 0.2);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #06A099;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    color: #2A2A2A;
    font-weight: 600;
}

.author-info span {
    color: #6B7280;
    font-size: 0.9rem;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: #06A099;
    text-align: center;
    color: white;
}

.download .section-title {
    color: white;
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: none;
}

.download-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-width: 160px;
}

.app-store-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 3px 10px rgba(0, 0, 0, 0.15);
}

.app-store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: white;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store-subtitle {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 1px;
}

.app-store-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* Sticky CTA Footer */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(6, 160, 153, 0.1);
    padding: 1rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-content span {
    font-weight: 500;
    color: #374151;
}

/* Support Page Styles */
.support-hero {
    padding: 10rem 0 4rem;
    background: #F5FFFE;
    text-align: center;
}

/* Help Overview Section */
.help-overview {
    padding: 4rem 0;
    background: white;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(6, 160, 153, 0.12);
    border-color: rgba(6, 160, 153, 0.1);
}

.help-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #06A099, #15FFF4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.help-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.help-card:hover .help-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #045A54, #06A099);
}

.help-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1C2130;
    margin-bottom: 1rem;
}

.help-card p {
    color: #718E9C;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #F5FFFE;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(6, 160, 153, 0.08);
    border-color: rgba(6, 160, 153, 0.1);
}

.faq-question {
    color: #1C2130;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: #718E9C;
    line-height: 1.6;
}

/* Troubleshooting Section */
.troubleshooting-section {
    padding: 4rem 0;
    background: white;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.troubleshooting-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.troubleshooting-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(6, 160, 153, 0.08);
    border-color: rgba(6, 160, 153, 0.1);
}

.troubleshooting-item h3 {
    color: #1C2130;
    margin-bottom: 1rem;
}

.troubleshooting-item ul {
    list-style: none;
    padding-left: 0;
}

.troubleshooting-item li {
    color: #718E9C;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.troubleshooting-item li:before {
    content: "•";
    color: #06A099;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
    background: #F5FFFE;
}

.form-description {
    text-align: center;
    color: #718E9C;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1C2130;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #F2F5F6;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06A099;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Messages and Loading States */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
}

.form-message.success {
    background: #F0FDF4;
    color: #15803D;
    border-color: #BBF7D0;
}

.form-message.error {
    background: #FEF2F2;
    color: #DC2626;
    border-color: #FECACA;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.btn-primary.loading .btn-text {
    opacity: 0;
}

.btn-primary.loading .btn-loading {
    display: inline;
}

/* Footer */
footer {
    background: #1C2130;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #718E9C;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #718E9C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #06A099;
}

.footer-bottom {
    border-top: 1px solid #718E9C;
    padding-top: 1rem;
    text-align: center;
    color: #718E9C;
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 4rem 0;
    background: white;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-text h2 {
    color: #1C2130;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-text p {
    color: #718E9C;
    margin-bottom: 1.5rem;
}

.privacy-text ul {
    color: #718E9C;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

.privacy-text a {
    color: #06A099;
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

.privacy-text strong {
    color: #1C2130;
}

/* Enhanced Responsive Design for Modern Look */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
        padding: 6rem 2rem 4rem;
    }
    
    .hero-screenshot {
        width: 280px;
        margin: 0 auto;
    }
    
    .quote-text {
        font-size: 14px;
    }
    
    .quote-card {
        padding: 20px 16px;
    }
    
    .app-header {
        padding: 12px 16px 8px;
    }
    
    .app-logo span {
        font-size: 16px;
    }
    
    .quote-container {
        padding: 16px;
    }
    
    .quote-carousel {
        height: 240px;
    }
    
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    /* Screenshot showcase - tablet view: 2-3 columns */
    .screenshot-curve {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        align-items: center;
        justify-items: center;
        min-height: auto;
        perspective: none;
    }
    
    .screenshot-item {
        transform: none;
        z-index: auto;
    }
    
    .screenshot-item:nth-child(1),
    .screenshot-item:nth-child(2),
    .screenshot-item:nth-child(3),
    .screenshot-item:nth-child(4),
    .screenshot-item:nth-child(5) {
        transform: none;
        z-index: auto;
    }
    
    /* Center the middle item in the bottom row */
    .screenshot-item:nth-child(4) {
        grid-column: 2;
    }
    
    .screenshot-item:nth-child(5) {
        grid-column: 3;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 6rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .quote-slide p {
        font-size: 1rem;
    }
    
    .step-card,
    .feature-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-form {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 3rem;
    }
    
    /* Screenshot showcase - mobile view: 2 columns */
    .screenshot-showcase {
        padding: 4rem 0;
    }
    
    .screenshot-curve {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        align-items: center;
        justify-items: center;
        min-height: auto;
        perspective: none;
    }
    
    .screenshot-item {
        transform: none;
        z-index: auto;
    }
    
    .screenshot-item:nth-child(1),
    .screenshot-item:nth-child(2),
    .screenshot-item:nth-child(3),
    .screenshot-item:nth-child(4),
    .screenshot-item:nth-child(5) {
        transform: none;
        z-index: auto;
    }
    
    /* Center the last item */
    .screenshot-item:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
    }
    
    .screenshot-frame {
        width: 180px;
    }
    
    .screenshots-container {
        padding: 0 1rem;
    }
    
    .showcase-header .section-title {
        font-size: 2rem;
    }
    
    .showcase-header .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 5rem 1rem 3rem;
        gap: 2rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .quote-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .quote-card {
        padding: 16px 12px;
    }
    
    .quote-carousel {
        height: 200px;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .app-bottom-nav {
        padding: 8px 12px 16px;
    }
    
    .nav-item {
        padding: 6px 8px;
    }
    
    .nav-icon {
        font-size: 16px;
    }
    
    .nav-item span {
        font-size: 9px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-content p::before {
        font-size: 3rem;
        top: -0.5rem;
        left: -0.5rem;
    }
    
    .app-store-btn {
        padding: 0.875rem 1.5rem;
    }
    
    .app-store-btn span {
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .hero-screenshot {
        width: 220px;
        margin: 0 auto;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .hero {
        background: #1a1a2e;
    }
    
    .hero-subtitle {
        color: #9CA3AF;
    }
    
    .navbar {
        background: rgba(31, 41, 55, 0.85);
    }
    
    .nav-link {
        color: #9CA3AF;
    }
    
    .nav-link:hover {
        color: #667eea;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .phone-mockup {
        animation: none;
    }
    
    .hero-content,
    .hero-image {
        animation: none;
    }
    
    .quote-slide {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        border: 2px solid #000;
        color: #000;
    }
    
    .feature-card,
    .step-card,
    .testimonial-card {
        border: 2px solid #333;
    }
}

/* Print styles */
@media print {
    .navbar,
    .sticky-cta,
    .hero-buttons,
    .download {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        color: #000 !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
    }
    
    .section-title {
        color: #000 !important;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.pricing-header {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 4rem;
}

.pricing-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #06A099;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-description {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.75;
    max-width: 32rem;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto 4rem;
    align-items: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured {
    background: #1F2937;
    border-color: #374151;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(6, 160, 153, 0.15);
    transform: scale(1.02);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(6, 160, 153, 0.12);
    border-color: rgba(6, 160, 153, 0.1);
}

.pricing-card.featured:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 16px 64px rgba(6, 160, 153, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #06A099;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-name {
    font-size: 1rem;
    font-weight: 600;
    color: #06A099;
    margin-bottom: 1rem;
}

.pricing-card.featured .tier-name {
    color: #4ECDC4;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #1F2937;
}

.pricing-card.featured .price {
    color: white;
}

.period {
    color: #6B7280;
    font-size: 1rem;
}

.pricing-card.featured .period {
    color: #9CA3AF;
}

.savings-badge {
    background: rgba(6, 160, 153, 0.1);
    color: #06A099;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-card.featured .savings-badge {
    background: rgba(76, 205, 196, 0.2);
    color: #4ECDC4;
}

.tier-description {
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.pricing-card.featured .tier-description {
    color: #D1D5DB;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6B7280;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    position: relative;
}

.pricing-card.featured .feature-item {
    color: #D1D5DB;
}

.feature-item.coming-soon {
    opacity: 0.7;
}

.feature-item.coming-soon .check-icon.disabled {
    color: #9CA3AF;
}

.pricing-card.featured .feature-item.coming-soon .check-icon.disabled {
    color: #6B7280;
}

.coming-soon-badge {
    position: absolute;
    right: 0;
    background: #F59E0B;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 8px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.check-icon {
    width: 1.25rem;
    height: 1rem;
    flex-shrink: 0;
    color: #06A099;
}

.pricing-card.featured .check-icon {
    color: #4ECDC4;
}

.tier-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: #06A099;
    border: 1px solid #E5E7EB;
}

.tier-button:hover {
    border-color: #06A099;
    background: rgba(6, 160, 153, 0.05);
}

.pricing-card.featured .tier-button {
    background: #06A099;
    color: white;
    border-color: #06A099;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.pricing-card.featured .tier-button:hover {
    background: #045A54;
    border-color: #045A54;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem 0;
    background: #F9FAFB;
    border-radius: 2rem;
    border: 1px solid #E5E7EB;
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.coming-soon-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
    position: relative;
}

.coming-soon-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: #D1D5DB;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    height: 4rem;
    line-height: 4rem;
    background: #F3F4F6;
    border-radius: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: 4rem;
    transition: all 0.3s ease;
}

.coming-soon-card:hover .feature-icon {
    transform: scale(1.05);
    background: #E5E7EB;
}

.coming-soon-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.coming-soon-card p {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Add a subtle "Coming Soon" badge to each card */
.coming-soon-card::after {
    content: 'Coming Soon';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #374151;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    opacity: 0.8;
}

/* Screenshot Showcase Section */
.screenshot-showcase {
    padding: 6rem 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.showcase-header .section-title {
    color: #1F2937;
    margin-bottom: 1rem;
}

.showcase-header .section-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card-Based Gallery */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.screenshot-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.screenshot-image {
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
       border-radius: 0;
    box-shadow: none;
}

.screenshot-content {
    padding: 2rem;
}

.screenshot-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.screenshot-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.screenshot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #06A099;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
}

/* Split Layout Showcase (Alternative Option 2) */
.screenshot-split-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.split-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.split-item.reverse .split-content {
    order: 2;
}

.split-item.reverse .split-image {
    order: 1;
}

.split-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #06A099;
    margin-bottom: 1rem;
}

.split-description {
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.split-features {
    list-style: none;
    padding: 0;
}

.split-features li {
    color: #4B5563;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.split-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #06A099;
    font-weight: bold;
}

.split-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Interactive Tabs (Alternative Option 3) */
.screenshot-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(6, 160, 153, 0.1);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn.active {
    background: #06A099;
    color: white;
    box-shadow: 0 4px 12px rgba(6, 160, 153, 0.3);
}

.tab-content-area {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(6, 160, 153, 0.1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.tab-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #06A099;
    margin-bottom: 1rem;
}

.tab-info p {
    color: #6B7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-item strong {
    color: #1F2937;
    font-weight: 600;
    font-size: 0.95rem;
}

.highlight-item span {
    color: #6B7280;
    font-size: 0.85rem;
}

.screenshot-item {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.screenshot-item:nth-child(1) {
    transform: translateY(40px) rotateY(15deg) scale(0.85);
    z-index:  1;
}

.screenshot-item:nth-child(2) {
    transform: translateY(20px) rotateY(8deg) scale(0.92);
    z-index: 2;
}

.screenshot-item:nth-child(3) {
    transform: translateY(0px) rotateY(0deg) scale(1);
    z-index: 5;
}

.screenshot-item:nth-child(4) {
    transform: translateY(20px) rotateY(-8deg) scale(0.92);
    z-index: 2;
}

.screenshot-item:nth-child(5) {
    transform: translateY(40px) rotateY(-15deg) scale(0.85);
    z-index: 1;
}

.screenshot-item.featured {
    transform: translateY(-10px) scale(1.05) !important;
    z-index: 10 !important;
}

.screenshot-frame {
    width: 280px;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
    transition: all 0.4s ease;
    border: none;
}

.screenshot-frame::before {
    display: none;
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    transition: all 0.4s ease;
    display: block;
    background: transparent;
    box-shadow: none;
    border: none;
}

.screenshot-item:hover .screenshot-frame {
    transform: translateY(-8px);
    box-shadow: none;
}

.screenshot-label {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(6, 160, 153, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.screenshot-item:hover .screenshot-label {
    opacity: 1;
    bottom: -30px;
}

.label-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1F2937;
    letter-spacing: 0.02em;
}

.showcase-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(6, 160, 153, 0.1);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #374151;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

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

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

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    .navbar-pill {
        width: calc(100% - 2rem);
        top: 10px;
        padding: 0;
    }
    
    .nav-pill-container {
        border-radius: 20px;
        padding: 0.75rem 1rem;
    }
    
    /* Screenshot showcase - tablet view: 2-3 columns */
    .screenshot-curve {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        align-items: center;
        justify-items: center;
        min-height: auto;
        perspective: none;
    }
    
    .screenshot-item {
        transform: none;
        z-index: auto;
    }
    
    .screenshot-item:nth-child(1),
    .screenshot-item:nth-child(2),
    .screenshot-item:nth-child(3),
    .screenshot-item:nth-child(4),
    .screenshot-item:nth-child(5) {
        transform: none;
        z-index: auto;
    }
    
    /* Center the middle item in the bottom row */
    .screenshot-item:nth-child(4) {
        grid-column: 2;
    }
    
    .screenshot-item:nth-child(5) {
        grid-column: 3;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 6rem 1rem 4rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .quote-slide p {
        font-size: 1rem;
    }
    
    .step-card,
    .feature-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-form {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 3rem;
    }
    
    /* Screenshot showcase - mobile view: 2 columns */
    .screenshot-showcase {
        padding: 4rem 0;
    }
    
    .screenshot-curve {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        align-items: center;
        justify-items: center;
        min-height: auto;
        perspective: none;
    }
    
    .screenshot-item {
        transform: none;
        z-index: auto;
    }
    
    .screenshot-item:nth-child(1),
    .screenshot-item:nth-child(2),
    .screenshot-item:nth-child(3),
    .screenshot-item:nth-child(4),
    .screenshot-item:nth-child(5) {
        transform: none;
        z-index: auto;
    }
    
    /* Center the last item */
    .screenshot-item:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
    }
    
    .screenshot-frame {
        width: 180px;
    }
    
    .screenshots-container {
        padding: 0 1rem;
    }
    
    .showcase-header .section-title {
        font-size: 2rem;
    }
    
    .showcase-header .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 5rem 1rem 3rem;
        gap: 2rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .quote-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .quote-card {
        padding: 16px 12px;
    }
    
    .quote-carousel {
        height: 200px;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .app-bottom-nav {
        padding: 8px 12px 16px;
    }
    
    .nav-item {
        padding: 6px 8px;
    }
    
    .nav-icon {
        font-size: 16px;
    }
    
    .nav-item span {
        font-size: 9px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-content p::before {
        font-size: 3rem;
        top: -0.5rem;
        left: -0.5rem;
    }
    
    .app-store-btn {
        padding: 0.875rem 1.5rem;
    }
    
    .app-store-btn span {
        font-size: 1.5rem;
    }
}

/* Hero Screenshot Responsive Styles */
@media (max-width: 768px) {
    .hero-screenshot {
        width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-screenshot {
        width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 360px) {
    .hero-screenshot {
        width: 260px;
        margin: 0 auto;
    }
}