/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Christmas Color Palette */
    --primary-red: #C41E3A;
    --deep-red: #8B0000;
    --christmas-green: #165B33;
    --forest-green: #0F4C29;
    --gold: #FFD700;
    --light-gold: #FFECB3;
    --silver: #C0C0C0;
    --white: #FFFFFF;
    --snow-white: #FFFAFA;
    --cream: #FFF8E7;
    --dark-navy: #1a1f3a;
    --soft-gray: #F5F7FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    
    /* Modern Gradients */
    --gradient-christmas: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    --gradient-winter: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-snow: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--snow-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly tap targets */
a, button, .btn {
    -webkit-tap-highlight-color: rgba(196, 30, 58, 0.2);
    touch-action: manipulation;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   ANIMATED SNOW BACKGROUND
   =================================== */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-christmas);
    transition: var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-red);
}

/* Hamburger Menu (hidden by default) */
.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-christmas);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
}

.btn-hero {
    background: var(--gradient-christmas);
    color: var(--white);
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 8rem 0 6rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: linear-gradient(180deg, var(--cream) 0%, var(--snow-white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--deep-red) 50%, var(--christmas-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Hero Image & Phone Mockup */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--cream);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 80%;
}

.animated-card {
    animation: cardFloat 3s ease-in-out infinite;
}

.card-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.sample-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sample-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-icon:nth-child(1) {
    top: 10%;
    left: 10%;
}

.float-icon:nth-child(2) {
    top: 60%;
    right: 10%;
}

.float-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
}

.float-icon:nth-child(4) {
    top: 30%;
    right: 20%;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-winter);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--soft-gray);
    position: relative;
    z-index: 2;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-christmas);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    z-index: 2;
}

.step-visual {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.step:hover .step-visual {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-navy);
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-red), var(--christmas-green));
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--christmas-green);
    font-size: 1.5rem;
}

/* ===================================
   TEMPLATES SECTION
   =================================== */
.templates {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.templates-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--soft-gray);
    background: var(--white);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-dark);
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-christmas);
    color: var(--white);
    border-color: var(--primary-red);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.template-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    background: var(--white);
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.template-image {
    position: relative;
    overflow: hidden;
    background: var(--soft-gray);
}

.template-preview {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preview-content {
    text-align: center;
    padding: 2rem;
}

/* Template Theme Styles */
.modern-preview {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.modern-preview .preview-content {
    color: var(--white);
}

.traditional-preview {
    background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
}

.traditional-preview .preview-content {
    color: var(--white);
}

.photo-preview {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.silver-preview {
    background: linear-gradient(135deg, #bdc3c7 0%, #2c3e50 100%);
}

.silver-preview .preview-content {
    color: var(--white);
}

.tree-preview {
    background: linear-gradient(135deg, #134E5E 0%, #71B280 100%);
}

.tree-preview .preview-content {
    color: var(--white);
}

.photo-foil-preview {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.foil-accent {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.foil-accent.gold {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.foil-accent.silver {
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.8));
}

.santa-icon, .tree-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.photo-placeholder {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.preview-content h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.preview-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.template-info {
    padding: 1.5rem;
}

.template-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.template-tag {
    display: inline-block;
    background: var(--light-gold);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.templates-cta {
    text-align: center;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-snow);
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark-navy);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--soft-gray);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-christmas);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author h4 {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--soft-gray);
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--soft-gray);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-navy);
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: var(--transition-fast);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-christmas);
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-section::before {
    content: '❄️ ⭐ 🎄 ❄️ ⭐ 🎄 ❄️ ⭐ 🎄';
    position: absolute;
    top: 50%;
    left: -10%;
    right: -10%;
    font-size: 3rem;
    opacity: 0.1;
    transform: translateY(-50%);
    white-space: nowrap;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn-download {
    background: var(--white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.download-icon {
    font-size: 2rem;
}

.btn-download small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    text-align: left;
}

.btn-download strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-subtext {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: var(--spacing-lg) 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-column ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes snowfall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) translateX(100px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Snowflake styling */
.snowflake {
    position: fixed;
    top: -10vh;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation: snowfall linear infinite;
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet - Large Mobile Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }
    
    .step-connector::after {
        content: '↓';
        right: auto;
        left: 50%;
        top: auto;
        bottom: -15px;
        transform: translateX(-50%);
    }
    
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile - Portrait and Small Tablets */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-content {
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .btn-hero,
    .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
        padding: 10px;
    }
    
    .sample-card {
        padding: 1.5rem;
    }
    
    .card-image {
        font-size: 3rem;
    }
    
    .sample-card h3 {
        font-size: 1.2rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    /* Features */
    .features {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    /* How It Works */
    .how-it-works {
        padding: 3rem 0;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-visual {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        font-size: 3rem;
    }
    
    .step h3 {
        font-size: 1.25rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    /* Templates */
    .templates {
        padding: 3rem 0;
    }
    
    .templates-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .template-preview {
        height: 300px;
    }
    
    .preview-content h4 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    /* Benefits */
    .benefits {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    /* FAQ */
    .faq {
        padding: 3rem 0;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
        max-width: 85%;
    }
    
    .faq-icon {
        font-size: 1.25rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .cta-content > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
    
    .cta-subtext {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Small Mobile - Portrait */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
        padding: 8px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-card h3,
    .step h3 {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-download {
        padding: 0.875rem 1.5rem;
    }
    
    .download-icon {
        font-size: 1.5rem;
    }
    
    .btn-download small {
        font-size: 0.7rem;
    }
    
    .btn-download strong {
        font-size: 1rem;
    }
    
    .template-preview {
        height: 250px;
    }
    
    .filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        order: 0;
    }
    
    .phone-frame {
        width: 180px;
        height: 360px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

