/* ========================================
   StickerBot Landing Page Styles
   Aesthetic: Playful Creative Studio
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #0088cc;
    --color-primary-dark: #006699;
    --color-primary-light: #33a3d9;
    --color-accent: #FF6B6B;
    --color-accent-light: #FF8E8E;
    --color-cta: #22c55e;
    --color-cta-hover: #16a34a;
    --color-cta-glow: rgba(34, 197, 94, 0.4);

    /* Neutrals */
    --color-bg: #FAFBFF;
    --color-bg-warm: #FFF9F5;
    --color-surface: #FFFFFF;
    --color-surface-elevated: #FFFFFF;
    --color-text: #1a1a2e;
    --color-text-secondary: #5a5a7a;
    --color-text-muted: #8888a8;
    --color-border: #e8e8f0;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #E8F4FD 0%, #FFF5F5 50%, #F5F0FF 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #FAFBFF 100%);
    --gradient-cta: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);

    /* Typography */
    --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-body: 'Nunito', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px var(--color-cta-glow);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

/* ========================================
   Floating Stickers (Decorative)
   ======================================== */
.floating-stickers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-sticker {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.sticker-1 { top: 10%; left: 5%; animation-delay: 0s; }
.sticker-2 { top: 30%; right: 8%; animation-delay: -4s; }
.sticker-3 { top: 60%; left: 3%; animation-delay: -8s; }
.sticker-4 { top: 80%; right: 5%; animation-delay: -12s; }
.sticker-5 { top: 45%; left: 90%; animation-delay: -16s; }

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: pulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary-light);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    bottom: -50px;
    left: -50px;
    animation-delay: -2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: #9B59B6;
    top: 50%;
    left: 50%;
    animation-delay: -4s;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 968px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-surface);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    animation: slideDown 0.6s ease-out;
}

.badge-icon {
    font-size: 1rem;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    animation: slideUp 0.6s ease-out 0.2s both;
}

@media (min-width: 968px) {
    .hero-subtitle {
        margin-left: 0;
        margin-right: auto;
    }
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    min-height: 56px;
    animation: slideUp 0.6s ease-out 0.3s both;
}

.cta-button.primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 60px var(--color-cta-glow);
}

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

.cta-button.large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.25rem;
    min-height: 64px;
}

.telegram-icon {
    width: 24px;
    height: 24px;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
    margin-top: var(--space-xl);
    justify-content: center;
    animation: slideUp 0.6s ease-out 0.4s both;
}

@media (min-width: 968px) {
    .trust-indicators {
        justify-content: flex-start;
    }
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.trust-indicators svg {
    width: 18px;
    height: 18px;
    fill: var(--color-cta);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.8s ease-out 0.5s both;
}

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

.transform-demo {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.photo-frame {
    position: relative;
    width: 140px;
    height: 140px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform var(--transition-base);
}

.photo-frame:hover {
    transform: scale(1.05) rotate(-2deg);
}

.photo-frame.after:hover {
    transform: scale(1.05) rotate(2deg);
}

.frame-label {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 2px 8px;
    background: var(--color-text);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.photo-placeholder, .sticker-result {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.photo-placeholder svg, .sticker-result svg {
    width: 100%;
    height: 100%;
}

.sticker-result {
    background: repeating-conic-gradient(#f0f0f0 0% 25%, transparent 0% 50%) 50% / 16px 16px;
}

.transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    animation: bounce 2s ease-in-out infinite;
}

.transform-arrow svg {
    width: 32px;
    height: 32px;
}

.magic-text {
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-text-muted);
    font-size: 0.875rem;
    animation: fadeInUp 0.6s ease-out 1s both;
    cursor: pointer;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: var(--color-surface);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.step-card {
    position: relative;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--gradient-accent);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
}

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

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.step-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ========================================
   Style Gallery Section
   ======================================== */
.style-gallery {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-warm);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .styles-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.style-card {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    overflow: hidden;
}

.style-card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.style-card.featured {
    border-color: var(--color-accent);
}

.style-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: 4px 10px;
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.style-preview {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: repeating-conic-gradient(#f5f5f5 0% 25%, #fff 0% 50%) 50% / 12px 12px;
}

.before-after {
    position: relative;
    width: 100%;
    height: 100%;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity var(--transition-base);
}

.ba-image svg {
    width: 100%;
    height: 100%;
}

.ba-image.after {
    opacity: 0;
}

.style-card:hover .ba-image.before {
    opacity: 0;
}

.style-card:hover .ba-image.after {
    opacity: 1;
}

.style-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.style-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--space-4xl) 0;
    background: var(--color-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

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

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

@media (min-width: 968px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
}

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

.pricing-card.free {
    border-color: var(--color-cta);
}

.pricing-card.popular {
    border-color: var(--color-accent);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: var(--space-lg);
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-price .price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
}

.pricing-price .period {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.pricing-features {
    margin-bottom: var(--space-lg);
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.pricing-features svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: var(--color-cta);
}

.pricing-features strong {
    color: var(--color-text);
}

.pricing-button {
    display: block;
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    background: var(--gradient-cta);
    color: white;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-button.secondary {
    background: var(--color-bg);
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.pricing-button.secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-note svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: var(--space-4xl) 0;
    background: var(--color-surface);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: var(--color-text-muted);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: var(--space-lg);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-md);
    margin-top: var(--space-xl);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--color-text);
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    text-align: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md) var(--space-xl);
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
    .floating-stickers {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .scroll-indicator {
        display: none;
    }

    .photo-frame {
        width: 120px;
        height: 120px;
    }

    .transform-arrow svg {
        transform: rotate(90deg);
    }

    .transform-demo {
        flex-direction: column;
    }

    .section-subtitle {
        margin-bottom: var(--space-2xl);
    }

    .cta-button.large {
        width: 100%;
        padding: var(--space-md) var(--space-xl);
        font-size: 1.125rem;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}
