/* Google Fonts Import - Branding Guide Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&family=Nunito:wght@300;400;500;600&family=Open+Sans:wght@300;400;500;600&display=swap');

/* CSS Variables for Brand Colors - Official Branding Guide */
:root {
    --heart-red: #B33A3A;           /* Primary Heart Red */
    --dark-slate: #2F2F2F;          /* Dark Slate Text */
    --warm-off-white: #F8F7F5;      /* Warm Off-White Background */
    --accent-gray: #C3C3C3;         /* Accent Gray */
    --soft-gold: #D4AF37;           /* Optional Accent Soft Gold */
    --lavender: #E6E6FA;            /* Optional Accent Lavender */
    
    /* Additional brand-compliant colors */
    --heart-red-hover: #9A2F2F;
    --heart-red-light: rgba(179, 58, 58, 0.1);
    --heart-red-glow: rgba(179, 58, 58, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-slate);
    background-color: var(--warm-off-white);
}

/* Typography */
h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 247, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(179, 58, 58, 0.1);
}

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

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

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--heart-red);
    font-weight: 400;
    transition: all 0.3s ease;
}

.logo {
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    filter: drop-shadow(0 0 12px var(--heart-red-glow)) brightness(1.1);
    animation: brandPulse 2s ease-in-out infinite;
    transform: scale(1.02);
}

/* Enhanced branding-compliant pulse animation */
@keyframes brandPulse {
    0%, 100% { 
        transform: scale(1.02);
        filter: drop-shadow(0 0 12px var(--heart-red-glow)) brightness(1.1);
    }
    50% { 
        transform: scale(1.08);
        filter: drop-shadow(0 0 20px var(--heart-red-glow)) brightness(1.15);
    }
}

/* Logo text hover enhancement */
.logo-text:hover {
    text-shadow: 0 0 8px var(--heart-red-glow);
    transition: all 0.3s ease;
}

/* Desktop Navigation Menu */
.desktop-nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.desktop-nav-menu a {
    text-decoration: none;
    color: var(--dark-slate);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.desktop-nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(179, 58, 58, 0.08), rgba(179, 58, 58, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.desktop-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--heart-red), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.desktop-nav-menu a:hover::before {
    opacity: 1;
}

.desktop-nav-menu a:hover::after {
    width: 80%;
}

.desktop-nav-menu a:hover {
    color: var(--heart-red);
    transform: translateY(-2px);
    border-color: rgba(179, 58, 58, 0.2);
    box-shadow: 0 6px 20px rgba(179, 58, 58, 0.15);
    text-shadow: 0 0 8px rgba(179, 58, 58, 0.3);
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(248, 247, 245, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem 2rem 2rem;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

/* Hide hamburger on desktop, show on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
    
    .hamburger {
        display: none;
    }
    
    .desktop-nav-menu {
        display: flex;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-slate);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Enhanced with Image Background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('images/HOME.png') center center/cover no-repeat,
                linear-gradient(135deg, var(--warm-off-white) 0%, #F0EDE8 50%, #E8E4DF 100%);
    overflow: hidden;
    /* Ensure proper mobile viewport handling */
    min-height: 100svh; /* Use small viewport height for better mobile support */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 247, 245, 0.7);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(179, 58, 58, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(179, 58, 58, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: gentleFloat 8s ease-in-out infinite;
    opacity: 0.4;
    z-index: 2;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.4; }
    33% { transform: translateY(-15px) scale(1.01) rotate(0.5deg); opacity: 0.6; }
    66% { transform: translateY(-8px) scale(1.02) rotate(-0.3deg); opacity: 0.5; }
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 900px;
    padding: 3rem 2rem;
    animation: heroContentFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    color: #B33A3A;
    margin-bottom: 2rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 2px 8px rgba(255,255,255,0.8);
    animation: titleSlideIn 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--heart-red), transparent);
    border-radius: 2px;
    opacity: 0;
    animation: underlineAppear 1s ease-out 2s both;
}

@keyframes underlineAppear {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 0.6;
        width: 60px;
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(47, 47, 47, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    animation: subtitleFadeIn 2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 1px 4px rgba(255,255,255,0.6);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
    position: relative;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(179, 58, 58, 0.3), transparent);
    opacity: 0;
    animation: subtitleAccent 1s ease-out 1.5s both;
}

@keyframes subtitleAccent {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 0.4;
        width: 30px;
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Enhanced CTA button animation in hero */
.hero-cta {
    animation: ctaButtonAppear 2.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
    position: relative;
    margin-top: 1rem;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(179, 58, 58, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-cta:hover::before {
    width: 200px;
    height: 200px;
}

@keyframes ctaButtonAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* CTA Button - Enhanced with Branding Guide Principles */
.cta-button {
    background: var(--heart-red);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(179, 58, 58, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Subtle ripple effect on click */
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:active::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: var(--heart-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--heart-red-glow);
    filter: brightness(1.05);
}

.cta-button:active {
    transform: translateY(0);
}

/* Section Styles - Enhanced with Subtle Animations */
section {
    padding: 5rem 0;
    opacity: 0;
    animation: sectionFadeIn 0.8s ease-out forwards;
}

/* Subtle fade-in animation for sections */
@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays for sections */
section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
section:nth-child(7) { animation-delay: 0.7s; }
section:nth-child(8) { animation-delay: 0.8s; }

.section-title {
    text-align: center;
    color: var(--dark-slate);
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.about-text {
    text-align: center;
    max-width: 800px;
}

.about-text h2 {
    color: var(--heart-red);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #F8F7F5, #E8E5E0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
}

/* How It Works Section - Enhanced Aesthetic */
.how-it-works {
    background: linear-gradient(135deg, #F8F7F5 0%, #F0EDE8 50%, #E8E4DF 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(179, 58, 58, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(179, 58, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works .section-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--heart-red) 70%, var(--dark-slate) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
    margin-bottom: 4rem;
}

.how-it-works .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--heart-red), transparent);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

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

.step-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(179, 58, 58, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 58, 58, 0.1);
    overflow: hidden;
    animation: cardFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.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; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--heart-red), rgba(179, 58, 58, 0.6));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 30px var(--heart-red-light);
    border-color: var(--heart-red);
}

.step-icon {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--warm-off-white), #F0EDE8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid var(--heart-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(179, 58, 58, 0.15);
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(179, 58, 58, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-icon:hover::before {
    opacity: 1;
}

.step-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px var(--heart-red-glow);
    border-color: var(--heart-red-hover);
}

.step-icon svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.step-icon:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(179, 58, 58, 0.3));
}

.step-card h3 {
    color: var(--dark-slate);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
}

.step-card ul {
    list-style: none;
    text-align: left;
    background: rgba(179, 58, 58, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(179, 58, 58, 0.08);
}

.step-card li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    padding: 0.75rem 0;
    padding-left: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.step-card li:hover {
    color: var(--dark-slate);
}

.step-card li::before {
    content: '●';
    color: var(--heart-red);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    top: 0.75rem;
    font-size: 0.8rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Experience Modes Section - Enhanced Aesthetic */
.experience-modes {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F7F5 50%, #F0EDE8 100%);
    position: relative;
    overflow: hidden;
}

.experience-modes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(179, 58, 58, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(179, 58, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.experience-modes .section-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--heart-red) 70%, var(--dark-slate) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
    margin-bottom: 4rem;
}

.experience-modes .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--heart-red), transparent);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

.modes-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mode-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: rgba(248, 247, 245, 0.8);
    border-radius: 60px;
    padding: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 58, 58, 0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.tab-button {
    background: transparent;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #666;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--heart-red), rgba(179, 58, 58, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.tab-button:hover::before {
    opacity: 0.1;
}

.tab-button.active {
    background: linear-gradient(135deg, var(--heart-red), rgba(179, 58, 58, 0.9));
    color: white;
    box-shadow: 0 4px 20px rgba(179, 58, 58, 0.4);
    transform: translateY(-2px);
}

.tab-button.active::before {
    opacity: 0;
}

.beta-tag {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.tab-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 58, 58, 0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--heart-red), rgba(179, 58, 58, 0.6));
    border-radius: 24px 24px 0 0;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel h3 {
    color: var(--heart-red);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tab-panel p {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

.tab-panel ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    background: rgba(179, 58, 58, 0.02);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(179, 58, 58, 0.08);
}

.tab-panel li {
    color: #555;
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.tab-panel li:hover {
    color: var(--dark-slate);
}

.tab-panel li::before {
    content: '●';
    color: var(--heart-red);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    top: 0.75rem;
    font-size: 0.8rem;
    animation: pulse 2s ease-in-out infinite;
}

.mode-features {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 2px solid var(--heart-red);
    text-align: center;
    box-shadow: 0 10px 40px rgba(179, 58, 58, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mode-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(179, 58, 58, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.mode-features p {
    color: var(--dark-slate);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.mode-features p:last-child {
    margin-bottom: 0;
}

.mode-features strong {
    color: var(--heart-red);
    font-weight: 600;
}

/* Coming Soon Section - Enhanced Aesthetic */
.coming-soon {
    background: linear-gradient(135deg, #F8F7F5 0%, #F0EDE8 50%, #E8E4DF 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 25%, rgba(179, 58, 58, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(179, 58, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.coming-soon .section-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--heart-red) 70%, var(--dark-slate) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
    margin-bottom: 4rem;
}

.coming-soon .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--heart-red), transparent);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(179, 58, 58, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 58, 58, 0.1);
    overflow: hidden;
    animation: cardFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--heart-red), rgba(179, 58, 58, 0.6));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 30px var(--heart-red-light);
    border-color: var(--heart-red);
}

.feature-icon {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--warm-off-white), #F0EDE8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid var(--heart-red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(179, 58, 58, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(179, 58, 58, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px var(--heart-red-glow);
    border-color: var(--heart-red-hover);
}

.feature-icon svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.feature-icon:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(179, 58, 58, 0.3));
}

.feature-card h3 {
    color: var(--dark-slate);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
}

.coming-soon-tag {
    background: linear-gradient(135deg, var(--heart-red), rgba(179, 58, 58, 0.9));
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    box-shadow: 0 4px 15px rgba(179, 58, 58, 0.3);
    animation: pulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Section - Enhanced Aesthetic */
.faq {
    background: linear-gradient(135deg, #F8F7F5 0%, #F0EDE8 50%, #E8E4DF 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(179, 58, 58, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(179, 58, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq .section-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.08);
    color: var(--dark-slate);
    margin-bottom: 4rem;
}

.faq .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--heart-red);
    border-radius: 2px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(179, 58, 58, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
    border: 1px solid rgba(179, 58, 58, 0.1);
    opacity: 1;
    transform: none;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--heart-red);
    border-radius: 20px 20px 0 0;
    opacity: 1;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem 2.5rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--heart-red);
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(179, 58, 58, 0.1);
    box-shadow: 0 4px 15px rgba(179, 58, 58, 0.15);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--heart-red);
    color: white;
    box-shadow: 0 6px 20px rgba(179, 58, 58, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(248, 247, 245, 0.5);
    margin: 0 1px 1px 1px;
    border-radius: 0 0 19px 19px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
    margin-top: 1rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.faq-answer p strong {
    color: var(--heart-red);
    font-weight: 600;
}

/* Pricing Section - Enhanced Aesthetic */
.pricing {
    background: linear-gradient(135deg, #F8F7F5 0%, #F0EDE8 50%, #E8E4DF 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 35%, rgba(179, 58, 58, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 75% 65%, rgba(179, 58, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing .section-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--heart-red) 70%, var(--dark-slate) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
    margin-bottom: 4rem;
}

.pricing .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--heart-red), transparent);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.pricing-info,
.subscription-info,
.additional-options {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(179, 58, 58, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(179, 58, 58, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-info:nth-child(1) { animation-delay: 0.1s; }
.subscription-info:nth-child(2) { animation-delay: 0.3s; }
.additional-options:nth-child(3) { animation-delay: 0.5s; }

.pricing-info::before,
.subscription-info::before,
.additional-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--heart-red), rgba(179, 58, 58, 0.6));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-info:hover::before,
.subscription-info:hover::before,
.additional-options:hover::before {
    opacity: 1;
}

.pricing-info:hover,
.subscription-info:hover,
.additional-options:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 30px var(--heart-red-light);
    border-color: var(--heart-red);
}

.pricing-info h3,
.subscription-info h3,
.additional-options h3 {
    color: var(--heart-red);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pricing-factors,
.subscription-features,
.additional-features {
    list-style: none;
    padding: 0;
}

.pricing-factors li,
.subscription-features li,
.additional-features li {
    color: #555;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.pricing-factors li:hover,
.subscription-features li:hover,
.additional-features li:hover {
    color: var(--dark-slate);
    padding-left: 2.5rem;
}

.pricing-factors li:before,
.subscription-features li:before,
.additional-features li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--heart-red);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 1.4rem;
    box-shadow: 0 0 10px rgba(179, 58, 58, 0.3);
    transition: all 0.3s ease;
}

.pricing-factors li:hover:before,
.subscription-features li:hover:before,
.additional-features li:hover:before {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(179, 58, 58, 0.5);
}

.pricing-factors li:last-child,
.subscription-features li:last-child,
.additional-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, var(--heart-red), #8B2E2E);
    color: white;
    padding: 4rem 3rem;
    border-radius: 24px;
    margin-top: 3rem;
    box-shadow: 0 15px 50px rgba(179, 58, 58, 0.3);
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    animation-delay: 0.7s;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-cta h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pricing-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.pricing-cta .cta-button {
    background: white;
    color: var(--heart-red);
    border: 2px solid white;
    position: relative;
    z-index: 2;
    font-weight: 600;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.pricing-cta .cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #F8F7F5, #F0EDE8);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.contact-info {
    max-width: 800px;
}

.contact-info h2 {
    color: var(--heart-red);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(179, 58, 58, 0.08);
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--heart-red), rgba(179, 58, 58, 0.6));
    border-radius: 24px 24px 0 0;
}

.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
}

.form-submit .cta-button {
    background: linear-gradient(135deg, var(--heart-red), #c53030);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(179, 58, 58, 0.2);
}

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

.form-submit .cta-button:hover::before {
    left: 100%;
}

.form-submit .cta-button:hover {
    background: linear-gradient(135deg, #a03333, #9b2c2c);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(179, 58, 58, 0.3);
}

.form-submit .cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(179, 58, 58, 0.4);
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--dark-slate);
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-align: left;
    opacity: 0.8;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(248, 250, 252, 0.5);
    font-family: 'Inter', sans-serif;
    color: var(--dark-slate);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--heart-red);
    background: white;
    box-shadow: 0 0 0 4px rgba(179, 58, 58, 0.08);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0,0,0,0.4);
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

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

/* Footer - Enhanced Aesthetic */
.footer {
    background: linear-gradient(135deg, var(--dark-slate) 0%, #1F1F1F 50%, #0F0F0F 100%);
    color: white;
    padding: 4rem 0 2rem;
    border-radius: 20px 20px 0 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(179, 58, 58, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(179, 58, 58, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--heart-red), transparent);
    opacity: 0.7;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

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

.footer-text p {
    color: var(--accent-gray);
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--accent-gray);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    font-weight: 500;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(179, 58, 58, 0.1), rgba(179, 58, 58, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-links a:hover {
    color: var(--heart-red);
    transform: translateY(-3px);
    text-shadow: 0 0 10px var(--heart-red-glow);
    border-color: rgba(179, 58, 58, 0.3);
    box-shadow: 0 8px 25px rgba(179, 58, 58, 0.2);
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    /* Hide desktop navigation on mobile */
    .desktop-nav-menu {
        display: none;
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Close button for mobile menu */
    .mobile-menu-close {
        position: fixed;
        top: 1rem;
        left: 1rem;
        background: rgba(248, 247, 245, 0.9);
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
        z-index: 1001;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobile menu header with logo */
    .mobile-menu-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(179, 58, 58, 0.1);
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .mobile-menu-close:hover {
        background: rgba(179, 58, 58, 0.1);
        transform: scale(1.1);
    }
    
    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
        stroke: var(--dark-slate);
        transition: stroke 0.3s ease;
    }
    
    .mobile-menu-close:hover svg {
        stroke: var(--heart-red);
    }
    
    .mobile-menu-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .mobile-menu-logo .logo {
        height: 50px;
        width: auto;
    }
    
    .mobile-menu-logo .logo-text {
        font-family: 'DM Serif Display', serif;
        font-size: 1.5rem;
        color: var(--heart-red);
        font-weight: 400;
        text-align: center;
    }
    
    /* Mobile menu navigation links */
    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        flex: 1;
        justify-content: center;
        width: 100%;
        padding: 1rem 0;
    }
    
    /* Mobile menu footer */
    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        padding: 0.5rem 0 1rem 0;
        border-top: 1px solid rgba(179, 58, 58, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-footer p {
        color: #999;
        font-size: 0.9rem;
        font-weight: 300;
        margin: 0;
    }
    

    
    /* Mobile menu overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-nav a {
        padding: 1rem;
        text-align: center;
        border-radius: 12px;
        width: 100%;
        text-decoration: none;
        color: var(--dark-slate);
        font-weight: 500;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-menu-nav a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(179, 58, 58, 0.08), rgba(179, 58, 58, 0.04));
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 12px;
    }
    
    .mobile-menu-nav a:hover::before {
        opacity: 1;
    }
    
    .mobile-menu-nav a:hover {
        color: var(--heart-red);
        transform: translateY(-2px);
        border-color: rgba(179, 58, 58, 0.2);
        box-shadow: 0 6px 20px rgba(179, 58, 58, 0.15);
        text-shadow: 0 0 8px rgba(179, 58, 58, 0.3);
    }
    
    .hamburger {
        display: flex;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hamburger:hover {
        transform: scale(1.1);
    }
    
    .hamburger span {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }
    
    .hamburger.active {
        transform: rotate(180deg);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--heart-red);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--heart-red);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Enhanced Mobile Hero Section */
    .hero {
        min-height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.8rem, 9vw, 3.8rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        padding: 0 0.5rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1rem;
        width: auto;
        min-width: 200px;
    }
    
    /* About Section - Mobile */
    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .about-text {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .about-text h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    
    .about-text p {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        line-height: 1.6;
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 3.5rem;
        margin: 0 auto;
    }
    
    /* How It Works Section - Mobile */
    .how-it-works {
        padding: 3rem 0;
    }
    
    .how-it-works .section-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .step-card h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .step-card p {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
        padding: 0 0.25rem;
    }
    
    .step-card ul {
        padding: 1rem;
        margin: 0;
    }
    
    .step-card li {
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        padding: 0.4rem 0;
        line-height: 1.4;
        padding-left: 1.5rem;
    }
    
    /* Experience Modes Section - Mobile */
    .experience-modes {
        padding: 3rem 0;
    }
    
    .experience-modes .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 2.5rem;
    }
    
    .modes-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .mode-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        margin-bottom: 2rem;
        border-radius: 16px;
    }
    
    .tab-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
        text-align: center;
    }
    
    .tab-content {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .tab-panel h3 {
        font-size: clamp(1.2rem, 4vw, 1.3rem);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .tab-panel p {
        font-size: clamp(1rem, 3vw, 1.05rem);
        margin-bottom: 1.5rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .tab-panel ul {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .tab-panel li {
        font-size: clamp(0.9rem, 3vw, 0.95rem);
        padding: 0.5rem 0;
        text-align: left;
    }
    
    .mode-features {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .mode-features p {
        font-size: clamp(1rem, 3vw, 1.05rem);
        margin-bottom: 0.75rem;
    }
    
    /* Coming Soon Section - Mobile */
    .coming-soon {
        padding: 3rem 0;
    }
    
    .coming-soon .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        position: relative;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: clamp(1.2rem, 4vw, 1.3rem);
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: clamp(1rem, 3vw, 1.05rem);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .coming-soon-tag {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        top: 1rem;
        right: 1rem;
        border-radius: 20px;
    }
    
    /* FAQ Section - Mobile */
    .faq {
        padding: 3rem 0;
    }
    
    .faq .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .faq-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .faq-item {
        margin-bottom: 1.25rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: clamp(1rem, 4vw, 1.1rem);
        flex-direction: row;
        gap: 1rem;
        text-align: left;
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background: rgba(179, 58, 58, 0.02);
    }
    
    .faq-question span:first-child {
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 1.4rem;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
        max-height: 500px;
        transition: all 0.4s ease;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .faq-answer p {
        font-size: clamp(0.95rem, 3.5vw, 1rem);
        line-height: 1.6;
        margin-top: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Pricing Section - Mobile */
    .pricing {
        padding: 3rem 0;
    }
    
    .pricing .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .pricing-info,
    .subscription-info,
    .additional-options {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin-bottom: 1rem;
    }
    
    .pricing-info h3,
    .subscription-info h3,
    .additional-options h3 {
        font-size: clamp(1.25rem, 4vw, 1.4rem);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .pricing-factors li,
    .subscription-features li,
    .additional-features li {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        padding: 0.875rem 0;
        padding-left: 1.75rem;
    }
    
    .pricing-cta {
        padding: 3rem 2rem;
        margin-top: 2rem;
        border-radius: 20px;
    }
    
    .pricing-cta h3 {
        font-size: clamp(1.4rem, 4.5vw, 1.6rem);
        margin-bottom: 1.25rem;
    }
    
    .pricing-cta p {
        font-size: clamp(1rem, 3.5vw, 1.15rem);
        margin-bottom: 2rem;
    }
    
    .pricing-cta .cta-button {
        padding: 1.25rem 2.5rem;
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        width: 100%;
        max-width: 300px;
    }
    
    /* Contact Section - Mobile */
    .contact {
        padding: 3rem 0;
    }
    
    .contact .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 2rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .contact-content {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .contact-info h2 {
        font-size: clamp(1.5rem, 4.5vw, 1.8rem);
        margin-bottom: 1.25rem;
    }
    
    .contact-info p {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        max-width: 100%;
        padding: 2rem 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        border-radius: 20px;
        margin: 0 0.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group.full-width {
        grid-column: 1;
        margin-top: 0.5rem;
    }
    
    .form-group label {
        font-size: clamp(0.85rem, 3vw, 0.9rem);
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 0.875rem;
        font-size: clamp(0.85rem, 3vw, 0.9rem);
        border-radius: 10px;
        min-height: 44px;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .form-submit {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .form-submit .cta-button {
        padding: 1.25rem 2.5rem;
        font-size: clamp(0.95rem, 3.5vw, 1rem);
        width: 100%;
        max-width: 280px;
        border-radius: 12px;
        min-height: 44px;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
        border-radius: 16px 16px 0 0;
    }
    
    .footer-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
        gap: 0.75rem;
    }
    
    .footer-logo .logo-text {
        font-size: clamp(1.5rem, 4.5vw, 1.8rem);
    }
    
    .footer-text p {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        margin-bottom: 0.75rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .footer-text p:last-child {
        margin-bottom: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .footer-links a {
        padding: 1rem 1.25rem;
        font-size: clamp(0.95rem, 3.5vw, 1rem);
        border-radius: 10px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
        text-align: center;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .copyright {
        font-size: clamp(0.85rem, 3vw, 0.9rem);
        padding: 0 1rem;
        line-height: 1.4;
        margin-top: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        padding: 2rem;
        max-width: 800px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        margin-bottom: 2.5rem;
        max-width: 85%;
    }
    
    /* About Section - Tablet */
    .about-content {
        padding: 0 2rem;
        gap: 2.5rem;
    }
    
    .about-text {
        max-width: 700px;
    }
    
    .about-text h2 {
        font-size: clamp(2rem, 3.5vw, 2.5rem);
        margin-bottom: 1.25rem;
    }
    
    .about-text p {
        font-size: clamp(1.05rem, 2.5vw, 1.15rem);
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    /* FAQ Section - Tablet */
    .faq {
        padding: 4rem 0;
    }
    
    .faq .section-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 3rem;
        padding: 0 2rem;
        text-align: center;
    }
    
    .faq-container {
        max-width: 800px;
        padding: 0 2rem;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
        border-radius: 16px;
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    }
    
    .faq-question {
        padding: 1.75rem 2rem;
        font-size: clamp(1.1rem, 2.5vw, 1.15rem);
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background: rgba(179, 58, 58, 0.02);
    }
    
    .faq-question span:first-child {
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.6rem;
        transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 2rem 1.75rem 2rem;
        transition: all 0.4s ease;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .faq-answer p {
        font-size: clamp(1rem, 2.2vw, 1.05rem);
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Pricing Section - Tablet */
    .pricing {
        padding: 4rem 0;
    }
    
    .pricing .section-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 3rem;
        padding: 0 2rem;
    }
    
    .pricing-content {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .pricing-info,
    .subscription-info,
    .additional-options {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .pricing-info h3,
    .subscription-info h3,
    .additional-options h3 {
        font-size: clamp(1.3rem, 3vw, 1.5rem);
        margin-bottom: 1.75rem;
    }
    
    .pricing-factors li,
    .subscription-features li,
    .additional-features li {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        padding: 1rem 0;
        padding-left: 2rem;
    }
    
    .pricing-cta {
        padding: 3.5rem 2.5rem;
        margin-top: 2.5rem;
        border-radius: 20px;
    }
    
    .pricing-cta h3 {
        font-size: clamp(1.6rem, 3.5vw, 1.8rem);
        margin-bottom: 1.5rem;
    }
    
    .pricing-cta p {
        font-size: clamp(1.1rem, 2.8vw, 1.2rem);
        margin-bottom: 2.25rem;
    }
    
    .pricing-cta .cta-button {
        padding: 1.25rem 3rem;
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        max-width: 350px;
    }
    
    /* Contact Section - Tablet */
    .contact {
        padding: 4rem 0;
    }
    
    .contact .section-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 2.5rem;
        padding: 0 2rem;
    }
    
    .contact-content {
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .contact-info h2 {
        font-size: clamp(1.6rem, 3.5vw, 1.8rem);
        margin-bottom: 1.5rem;
    }
    
    .contact-info p {
        font-size: clamp(1.05rem, 2.8vw, 1.15rem);
        line-height: 1.7;
    }
    
    .contact-form {
        padding: 2.5rem 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        border-radius: 20px;
        margin: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: clamp(1rem, 2.5vw, 1.05rem);
        border-radius: 12px;
    }
    
    .form-submit .cta-button {
        padding: 1.25rem 3rem;
        font-size: clamp(1rem, 2.5vw, 1.05rem);
        max-width: 300px;
    }
    
    /* Footer - Tablet */
    .footer {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-content {
        padding: 0 2rem;
    }
    
    .footer-text p {
        font-size: clamp(1.05rem, 2.8vw, 1.15rem);
        margin-bottom: 1rem;
    }
    
    .footer-text p:last-child {
        margin-bottom: 2.25rem;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 2.25rem;
    }
    
    .footer-links a {
        padding: 0.875rem 1.5rem;
        font-size: clamp(1rem, 2.5vw, 1.05rem);
        max-width: none;
        width: auto;
        display: inline-block;
    }
    

    
    .about-text p {
        font-size: clamp(1rem, 2vw, 1.1rem);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
        font-size: 3.5rem;
    }
    
    /* How It Works Section - Tablet */
    .how-it-works .section-title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        margin-bottom: 3rem;
    }
    
    .steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-top: 2.5rem;
    }
    
    .step-card {
        padding: 2.5rem 2rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.75rem;
    }
    
    .step-card h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.35rem);
        margin-bottom: 1.25rem;
    }
    
    .step-card p {
        font-size: clamp(1rem, 1.8vw, 1.05rem);
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }
    
    .step-card ul {
        padding: 1.25rem;
    }
    
    .step-card li {
        font-size: clamp(0.95rem, 1.6vw, 1rem);
        padding: 0.5rem 0;
    }
    
    /* Experience Modes Section - Tablet */
    .experience-modes {
        padding: 4rem 0;
    }
    
    .experience-modes .section-title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        margin-bottom: 3rem;
    }
    
    .modes-container {
        max-width: 750px;
        padding: 0 2rem;
    }
    
    .mode-tabs {
        padding: 0.6rem;
        margin-bottom: 2.5rem;
    }
    
    .tab-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .tab-content {
        padding: 3rem 2.5rem;
        border-radius: 20px;
    }
    
    .tab-panel h3 {
        font-size: clamp(1.3rem, 2.5vw, 1.4rem);
        margin-bottom: 1.25rem;
    }
    
    .tab-panel p {
        font-size: clamp(1rem, 2vw, 1.05rem);
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }
    
    .tab-panel ul {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1.75rem;
    }
    
    .tab-panel li {
        font-size: clamp(0.95rem, 1.8vw, 1rem);
        padding: 0.6rem 0;
    }
    
    .mode-features {
        margin-top: 2.5rem;
        padding: 2rem;
        border-radius: 16px;
    }
    
    .mode-features p {
        font-size: clamp(1rem, 2vw, 1.05rem);
        margin-bottom: 0.75rem;
    }
    
    /* Coming Soon Section - Tablet */
    .coming-soon {
        padding: 4rem 0;
    }
    
    .coming-soon .section-title {
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
        margin-bottom: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-top: 2.5rem;
        padding: 0 2rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.75rem;
    }
    
    .feature-card h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.35rem);
        margin-bottom: 1.25rem;
    }
    
    .feature-card p {
        font-size: clamp(1rem, 1.8vw, 1.05rem);
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }
    
    .coming-soon-tag {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        top: 1.25rem;
        right: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Enhanced Small Mobile Hero Section */
    .hero {
        min-height: 100vh;
        min-height: 100svh; /* Better mobile viewport support */
        padding: 0;
        align-items: center;
    }
    
    .hero-content {
        padding: 1rem 0.75rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
        margin-bottom: 1.25rem;
        line-height: 1.1;
        padding: 0 0.25rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.05rem);
        margin-bottom: 2rem;
        line-height: 1.5;
        padding: 0 0.25rem;
        max-width: 95%;
        word-wrap: break-word;
    }
    
    .hero-cta {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        margin-top: 0.5rem;
        min-width: 180px;
        /* Ensure button is touch-friendly */
         min-height: 44px;
         touch-action: manipulation;
     }
}

/* Extra Small Mobile Devices */
@media (max-width: 320px) {
    .hero-content {
        padding: 0.75rem 0.5rem;
    }
    
    .hero-title {
          font-size: clamp(2rem, 7.5vw, 2.6rem);
          margin-bottom: 1rem;
          padding: 0;
      }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
        margin-bottom: 1.5rem;
        padding: 0;
        max-width: 100%;
    }
    
    .hero-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    /* About Section - Extra Small Mobile */
    .about-content {
        padding: 0 0.5rem;
        gap: 1.25rem;
    }
    
    .about-text h2 {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }
    
    .about-text p {
        font-size: clamp(0.9rem, 3vw, 1rem);
        line-height: 1.4;
        margin-bottom: 0.875rem;
    }
    
    .image-placeholder {
        width: 180px;
        height: 180px;
        font-size: 2.5rem;
    }
    
    /* How It Works Section - Extra Small Mobile */
    .how-it-works {
        padding: 2rem 0;
    }
    
    .how-it-works .section-title {
        font-size: clamp(1.2rem, 5vw, 1.75rem);
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .steps {
        gap: 1.25rem;
        margin-top: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .step-card {
        padding: 1.25rem 0.875rem;
        border-radius: 14px;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }
    
    .step-card h3 {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }
    
    .step-card p {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .step-card ul {
        padding: 0.75rem;
    }
    
    .step-card li {
        font-size: clamp(0.8rem, 2.8vw, 0.9rem);
        padding: 0.25rem 0;
        line-height: 1.2;
        padding-left: 1rem;
    }
    
    /* Experience Modes Section - Extra Small Mobile */
    .experience-modes {
        padding: 2rem 0;
    }
    
    .experience-modes .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .modes-container {
        padding: 0 0.5rem;
    }
    
    .mode-tabs {
        padding: 0.3rem;
        gap: 0.3rem;
        margin-bottom: 1.25rem;
        border-radius: 10px;
    }
    
    .tab-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .tab-content {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }
    
    .tab-panel h3 {
        font-size: clamp(1rem, 4vw, 1.15rem);
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }
    
    .tab-panel p {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .tab-panel ul {
        padding: 1rem;
        gap: 0.6rem;
        border-radius: 8px;
    }
    
    .tab-panel li {
        font-size: clamp(0.8rem, 2.8vw, 0.85rem);
        padding: 0.25rem 0;
        line-height: 1.2;
        padding-left: 1rem;
    }
    
    .mode-features {
        margin-top: 1.25rem;
        padding: 1.25rem 1rem;
        border-radius: 8px;
    }
    
    .mode-features p {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    /* Coming Soon Section - Extra Small Mobile */
    .coming-soon {
        padding: 2rem 0;
    }
    
    .coming-soon .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .features-grid {
        gap: 1.25rem;
        margin-top: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 1.25rem 1rem;
        border-radius: 10px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: clamp(1rem, 4vw, 1.15rem);
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }
    
    .feature-card p {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .coming-soon-tag {
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
        top: 0.5rem;
        right: 0.5rem;
        border-radius: 12px;
    }
    
    /* FAQ Section - Extra Small Mobile */
    .faq {
        padding: 2rem 0;
    }
    
    .faq .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .faq-container {
        padding: 0 0.5rem;
    }
    
    .faq-item {
        margin-bottom: 0.875rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .faq-question {
        padding: 1rem 1rem;
        font-size: clamp(0.9rem, 4vw, 1rem);
        gap: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background: rgba(179, 58, 58, 0.02);
    }
    
    .faq-question span:first-child {
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .faq-icon {
        width: 22px;
        height: 22px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
        transition: all 0.4s ease;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .faq-answer p {
        font-size: clamp(0.85rem, 3vw, 0.9rem);
        line-height: 1.4;
        margin-top: 0.4rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Pricing Section - Extra Small Mobile */
    .pricing {
        padding: 2rem 0;
    }
    
    .pricing .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .pricing-info,
    .subscription-info,
    .additional-options {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
        margin-bottom: 0.75rem;
    }
    
    .pricing-info h3,
    .subscription-info h3,
    .additional-options h3 {
        font-size: clamp(1.1rem, 4vw, 1.25rem);
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .pricing-factors li,
    .subscription-features li,
    .additional-features li {
        font-size: clamp(0.85rem, 3.2vw, 0.95rem);
        padding: 0.75rem 0;
        padding-left: 1.5rem;
        line-height: 1.4;
    }
    
    .pricing-cta {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
        border-radius: 16px;
    }
    
    .pricing-cta h3 {
        font-size: clamp(1.25rem, 4.5vw, 1.4rem);
        margin-bottom: 1rem;
    }
    
    .pricing-cta p {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .pricing-cta .cta-button {
        padding: 1rem 2rem;
        font-size: clamp(0.9rem, 3.2vw, 0.95rem);
        width: 100%;
        max-width: 250px;
        border-radius: 10px;
    }
    
    /* Contact Section - Extra Small Mobile */
    .contact {
        padding: 2rem 0;
    }
    
    .contact .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-info {
        padding: 0 0.25rem;
    }
    
    .contact-info h2 {
        font-size: clamp(1.25rem, 4.5vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .contact-form {
        padding: 1.5rem 1.25rem;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        border-radius: 16px;
        margin: 0 0.25rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: clamp(0.8rem, 3vw, 0.85rem);
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 0.75rem;
        font-size: clamp(0.8rem, 2.8vw, 0.85rem);
        border-radius: 8px;
        min-height: 40px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .form-submit {
        margin-top: 1.25rem;
    }
    
    .form-submit .cta-button {
        padding: 1rem 2rem;
        font-size: clamp(0.9rem, 3.2vw, 0.95rem);
        width: 100%;
        max-width: 240px;
        border-radius: 10px;
        min-height: 40px;
    }
    
    /* Footer - Extra Small Mobile */
    .footer {
        padding: 2.5rem 0 1.25rem;
        border-radius: 12px 12px 0 0;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .footer-logo {
        margin-bottom: 1.25rem;
        gap: 0.5rem;
    }
    
    .footer-logo .logo-text {
        font-size: clamp(1.25rem, 4.5vw, 1.5rem);
    }
    
    .footer-text p {
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        margin-bottom: 0.5rem;
        padding: 0 0.25rem;
        line-height: 1.3;
    }
    
    .footer-text p:last-child {
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .footer-links a {
        padding: 0.875rem 1rem;
        font-size: clamp(0.85rem, 3vw, 0.9rem);
        border-radius: 8px;
        max-width: 180px;
        min-height: 40px;
    }
    

}

@media (max-width: 480px) {
    /* About Section - Small Mobile */
    .about-content {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .about-text {
        padding: 0;
    }
    
    .about-text h2 {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
        margin-bottom: 0.875rem;
        line-height: 1.2;
        padding: 0;
    }
    
    .about-text p {
        font-size: clamp(0.95rem, 3.2vw, 1.05rem);
        line-height: 1.5;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    /* How It Works Section - Small Mobile */
    .how-it-works {
        padding: 2.5rem 0;
    }
    
    .how-it-works .section-title {
        font-size: clamp(1.35rem, 5.5vw, 2rem);
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .steps {
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }
    
    .step-card h3 {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
        margin-bottom: 0.875rem;
        line-height: 1.2;
    }
    
    .step-card p {
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        margin-bottom: 1.25rem;
        line-height: 1.4;
        padding: 0;
    }
    
    .step-card ul {
        padding: 0.875rem;
    }
    
    .step-card li {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        padding: 0.3rem 0;
        line-height: 1.3;
        padding-left: 1.25rem;
    }
    
    .step-card,
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .step-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .tab-content {
        padding: 2rem 1.5rem;
    }
    
    /* Experience Modes Section - Small Mobile */
    .experience-modes {
        padding: 2.5rem 0;
    }
    
    .experience-modes .section-title {
        font-size: clamp(1.35rem, 5.5vw, 1.8rem);
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .modes-container {
        padding: 0 0.75rem;
    }
    
    .mode-tabs {
        padding: 0.4rem;
        gap: 0.4rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .tab-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .tab-content {
        padding: 2rem 1.2rem;
        border-radius: 12px;
    }
    
    .tab-panel h3 {
        font-size: clamp(1.1rem, 4.5vw, 1.25rem);
        margin-bottom: 0.875rem;
    }
    
    .tab-panel p {
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .tab-panel ul {
        padding: 1.2rem;
        gap: 0.8rem;
        border-radius: 10px;
    }
    
    .tab-panel li {
        font-size: clamp(0.85rem, 3vw, 0.9rem);
        padding: 0.3rem 0;
        line-height: 1.3;
    }
    
    .mode-features {
        margin-top: 1.5rem;
        padding: 1.5rem 1.2rem;
        border-radius: 10px;
    }
    
    .mode-features p {
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        margin-bottom: 0.6rem;
    }
    
    /* Coming Soon Section - Small Mobile */
    .coming-soon {
        padding: 2.5rem 0;
    }
    
    .coming-soon .section-title {
        font-size: clamp(1.35rem, 5.5vw, 1.8rem);
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .features-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .feature-card {
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: clamp(1.1rem, 4.5vw, 1.25rem);
        margin-bottom: 0.875rem;
        line-height: 1.2;
    }
    
    .feature-card p {
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .coming-soon-tag {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        top: 0.75rem;
        right: 0.75rem;
        border-radius: 16px;
    }
    
    /* FAQ Section - Small Mobile */
    .faq {
        padding: 2.5rem 0;
    }
    
    .faq .section-title {
        font-size: clamp(1.35rem, 5.5vw, 1.8rem);
        margin-bottom: 2rem;
        padding: 0 0.75rem;
        text-align: center;
    }
    
    .faq-container {
        padding: 0 0.75rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 22px rgba(0,0,0,0.08);
    }
    
    .faq-question {
        padding: 1.25rem 1.2rem;
        font-size: clamp(0.95rem, 4vw, 1.05rem);
        gap: 0.75rem;
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background: rgba(179, 58, 58, 0.02);
    }
    
    .faq-question span:first-child {
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.25rem 1.2rem;
        transition: all 0.4s ease;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .faq-answer p {
        font-size: clamp(0.9rem, 3.2vw, 0.95rem);
        line-height: 1.5;
        margin-top: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Enhanced touch targets for mobile */
    .faq-question {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .faq-icon {
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .feature-card p {
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .coming-soon-tag {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        top: 0.75rem;
        right: 0.75rem;
        border-radius: 16px;
    }
    
    .tab-panel ul {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1.25rem 1rem;
    }
    
    /* Pricing Section - Small Mobile */
    .pricing {
        padding: 2.5rem 0;
    }
    
    .pricing .section-title {
        font-size: clamp(1.35rem, 5.5vw, 1.8rem);
        margin-bottom: 2rem;
        padding: 0 0.75rem;
        text-align: center;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .pricing-info,
    .subscription-info,
    .additional-options {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }
    
    .pricing-info h3,
    .subscription-info h3,
    .additional-options h3 {
        font-size: clamp(1.15rem, 4.2vw, 1.3rem);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .pricing-factors li,
    .subscription-features li,
    .additional-features li {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        padding: 0.8rem 0;
        padding-left: 1.6rem;
        line-height: 1.5;
    }
    
    .pricing-cta {
        padding: 2.5rem 1.75rem;
        margin-top: 1.75rem;
        border-radius: 16px;
    }
    
    .pricing-cta h3 {
        font-size: clamp(1.3rem, 4.8vw, 1.5rem);
        margin-bottom: 1.125rem;
    }
    
    .pricing-cta p {
        font-size: clamp(0.98rem, 3.8vw, 1.1rem);
        margin-bottom: 1.75rem;
        line-height: 1.5;
    }
    
    .pricing-cta .cta-button {
        padding: 1.125rem 2.25rem;
        font-size: clamp(0.92rem, 3.5vw, 1rem);
        width: 100%;
        max-width: 260px;
        border-radius: 12px;
    }
    
    /* Contact Section - Small Mobile */
    .contact {
        padding: 2.5rem 0;
    }
    
    .contact .section-title {
        font-size: clamp(1.35rem, 5.5vw, 1.8rem);
        margin-bottom: 1.75rem;
        padding: 0 0.75rem;
        text-align: center;
    }
    
    .contact-content {
        gap: 1.75rem;
        padding: 0 0.75rem;
    }
    
    .contact-info {
        padding: 0 0.5rem;
    }
    
    .contact-info h2 {
        font-size: clamp(1.3rem, 4.8vw, 1.6rem);
        margin-bottom: 1.125rem;
    }
    
    .contact-info p {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        line-height: 1.5;
        margin-bottom: 0.875rem;
    }
    
    .contact-form {
        padding: 1.75rem 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        border-radius: 16px;
        margin: 0 0.5rem;
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
    
    .form-group label {
        font-size: clamp(0.82rem, 3.2vw, 0.88rem);
        margin-bottom: 0.45rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 0.8rem;
        font-size: clamp(0.82rem, 3vw, 0.9rem);
        border-radius: 10px;
        min-height: 42px;
    }
    
    .form-group textarea {
        min-height: 110px;
    }
    
    .form-submit {
        margin-top: 1.375rem;
    }
    
    .form-submit .cta-button {
        padding: 1.125rem 2.25rem;
        font-size: clamp(0.92rem, 3.5vw, 1rem);
        width: 100%;
        max-width: 250px;
        border-radius: 12px;
        min-height: 42px;
    }
    
    /* Footer - Small Mobile */
    .footer {
        padding: 2.5rem 0 1.25rem;
        border-radius: 14px 14px 0 0;
    }
    
    .footer-content {
        padding: 0 0.75rem;
    }
    
    .footer-logo {
        margin-bottom: 1.375rem;
        gap: 0.6rem;
    }
    
    .footer-text p {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
        margin-bottom: 0.625rem;
        padding: 0 0.375rem;
        line-height: 1.35;
    }
    
    .footer-text p:last-child {
        margin-bottom: 1.75rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 1.75rem;
        padding: 0 0.75rem;
    }
    
    .footer-links a {
        padding: 0.9rem 1.125rem;
        font-size: clamp(0.88rem, 3.2vw, 0.95rem);
        border-radius: 10px;
        max-width: 190px;
        min-height: 42px;
    }
    

    
    section {
        padding: 2.5rem 0;
    }
}