/**
 * Secondbay About Page Styles
 * Extracted from inline styles for better caching and performance
 * 
 * @author Secondbay
 * @version 2.0.0
 */

/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

:root {
    --text: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #8b8ba7;
    --border: #e4e4ed;
    --border-light: #f4f4f8;
    --bg: #f8f8fc;
    --surface: #ffffff;
    --primary: #5b4cdb;
    --primary-light: #ededfc;
    --primary-dark: #4a3cb8;
    --success: #10b981;
    --success-light: #ecfdf5;
    --warning: #f59e0b;
    --warning-light: #fffbeb;
    --danger: #ef4444;
    --danger-light: #fef2f2;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #7c6fe3 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 24px rgba(91, 76, 219, 0.25);
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { 
    scroll-behavior: smooth; 
}

/* Selection styling */
::selection { 
    background: var(--primary-light); 
    color: var(--primary-dark); 
}

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

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

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(91, 76, 219, 0.3); }
    50% { box-shadow: 0 0 40px rgba(91, 76, 219, 0.5); }
}

@keyframes floatTag {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    25% { transform: translateY(-15px) rotate(-3deg); }
    50% { transform: translateY(8px) rotate(-12deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

@keyframes floatBag {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-18px) rotate(5deg); }
    50% { transform: translateY(10px) rotate(-3deg); }
    75% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes floatStar {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
    25% { transform: scale(1.15) rotate(15deg); opacity: 0.35; }
    50% { transform: scale(0.9) rotate(-10deg); opacity: 0.15; }
    75% { transform: scale(1.1) rotate(8deg); opacity: 0.28; }
}

@keyframes floatDiscount {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(-15px) scale(1.03); }
    66% { transform: translateY(10px) scale(0.97); }
}

@keyframes floatGift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(8deg); }
    50% { transform: translateY(6px) rotate(-5deg); }
    75% { transform: translateY(-8px) rotate(4deg); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(2.2); opacity: 0.9; }
}

/* ===== BASE ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

main { 
    flex: 1; 
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    z-index: 1000;
    text-decoration: none;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    transition: top 0.15s ease;
}

.skip-link:focus { 
    top: 0; 
}

:focus-visible { 
    outline: 2px solid var(--primary); 
    outline-offset: 2px; 
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
    padding: 100px 24px 110px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 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.03'%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.5;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(91, 76, 219, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 76, 219, 0.2);
    border: 1px solid rgba(91, 76, 219, 0.4);
    color: #a5b4fc;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease-out, float 3s ease-in-out 1s infinite;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(17px, 2vw, 19px);
    color: #b4b4c8;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Brand-themed floating elements container */
.hero-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Floating price tags */
.floating-tag {
    position: absolute;
    opacity: 0.15;
    animation: floatTag 18s ease-in-out infinite;
}

.floating-tag svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(168, 158, 255, 0.8);
    stroke-width: 1.5;
}

.tag-1 {
    width: 80px;
    height: 80px;
    top: 12%;
    right: 8%;
    animation-delay: 0s;
}

.tag-2 {
    width: 55px;
    height: 55px;
    bottom: 20%;
    left: 5%;
    animation-delay: -6s;
    opacity: 0.12;
}

.tag-3 {
    width: 45px;
    height: 45px;
    top: 60%;
    right: 15%;
    animation-delay: -12s;
    opacity: 0.1;
}

/* Floating shopping bags */
.floating-bag {
    position: absolute;
    opacity: 0.12;
    animation: floatBag 20s ease-in-out infinite;
}

.floating-bag svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(168, 158, 255, 0.7);
    stroke-width: 1.5;
}

.bag-1 {
    width: 90px;
    height: 90px;
    top: 20%;
    left: 8%;
    animation-delay: -3s;
}

.bag-2 {
    width: 65px;
    height: 65px;
    bottom: 15%;
    right: 10%;
    animation-delay: -10s;
    opacity: 0.1;
}

/* Floating star ratings */
.floating-star {
    position: absolute;
    animation: floatStar 15s ease-in-out infinite;
}

.floating-star svg {
    width: 100%;
    height: 100%;
    fill: rgba(168, 158, 255, 0.2);
    stroke: none;
}

.star-1 {
    width: 28px;
    height: 28px;
    top: 25%;
    right: 22%;
    animation-delay: 0s;
}

.star-2 {
    width: 22px;
    height: 22px;
    bottom: 35%;
    left: 18%;
    animation-delay: -5s;
}

.star-3 {
    width: 18px;
    height: 18px;
    top: 55%;
    left: 12%;
    animation-delay: -10s;
}

.star-4 {
    width: 24px;
    height: 24px;
    bottom: 25%;
    right: 28%;
    animation-delay: -7s;
}

/* Floating discount badges */
.floating-discount {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: rgba(91, 76, 219, 0.15);
    animation: floatDiscount 22s ease-in-out infinite;
}

.discount-1 {
    font-size: 42px;
    top: 38%;
    right: 4%;
    animation-delay: 0s;
}

.discount-1::after {
    content: '-70%';
}

.discount-2 {
    font-size: 28px;
    bottom: 42%;
    left: 2%;
    animation-delay: -8s;
    opacity: 0.8;
}

.discount-2::after {
    content: '-50%';
}

/* Floating gift boxes */
.floating-gift {
    position: absolute;
    opacity: 0.12;
    animation: floatGift 19s ease-in-out infinite;
}

.floating-gift svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(168, 158, 255, 0.7);
    stroke-width: 1.5;
}

.gift-1 {
    width: 60px;
    height: 60px;
    top: 45%;
    right: 25%;
    animation-delay: -4s;
}

.gift-2 {
    width: 45px;
    height: 45px;
    bottom: 30%;
    left: 22%;
    animation-delay: -11s;
    opacity: 0.1;
}

/* Sparkle dots */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(168, 158, 255, 0.6);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 18%; left: 15%; animation-delay: 0s; }
.sparkle-2 { top: 35%; right: 18%; animation-delay: -0.5s; }
.sparkle-3 { bottom: 28%; left: 30%; animation-delay: -1s; }
.sparkle-4 { top: 65%; right: 32%; animation-delay: -1.5s; }
.sparkle-5 { bottom: 45%; left: 10%; animation-delay: -2s; }
.sparkle-6 { top: 28%; right: 38%; animation-delay: -2.5s; }

/* ===== MAIN CONTAINER ===== */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== STATS ===== */
.stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    animation: scaleIn 0.5s ease-out both;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    transition: all var(--transition-base);
}

.stat-card:hover .stat-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.stat-icon svg {
    width: 26px;
    height: 26px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.story-content .lead {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 600;
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-image-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.story-image-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gradient);
    color: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-primary);
    animation: float 3s ease-in-out infinite;
}

.story-image-badge strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.story-image-badge span {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== VALUES ===== */
.values-section {
    padding: 80px 24px;
    background: var(--surface);
    margin: 0 -24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
}

.value-card:hover {
    background: var(--surface);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--surface);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.value-icon svg {
    width: 32px;
    height: 32px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== SUSTAINABILITY ===== */
.sustainability-section {
    padding: 100px 0;
}

.sustainability-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 32px;
    padding: 64px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sustainability-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

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

.sustainability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.sustainability-badge svg {
    width: 18px;
    height: 18px;
}

.sustainability-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sustainability-content p {
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 32px;
}

.sustainability-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.sustainability-stat {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-base);
}

.sustainability-stat:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.sustainability-stat-number {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.sustainability-stat-label {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== PROCESS ===== */
.process-section {
    padding: 80px 24px;
    background: var(--surface);
    margin: 0 -24px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 96px;
    height: 96px;
    background: var(--bg);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    transition: all var(--transition-base);
    border: 2px solid var(--border-light);
}

.process-step:hover .process-icon {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: scale(1.05);
}

.process-icon svg {
    width: 40px;
    height: 40px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== GUARANTEES ===== */
.guarantees-section {
    padding: 80px 0;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.guarantee-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
}

.guarantee-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: all var(--transition-base);
}

.guarantee-card:hover .guarantee-icon {
    background: var(--primary);
    color: white;
}

.guarantee-icon svg {
    width: 28px;
    height: 28px;
}

.guarantee-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-card {
    background: var(--surface);
    border-radius: 32px;
    padding: 64px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(91, 76, 219, 0.35);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .story-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-card {
        grid-template-columns: 1fr;
        padding: 48px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid::before {
        display: none;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    /* Hide complex animations on mobile */
    .floating-tag,
    .floating-bag,
    .floating-star,
    .floating-discount,
    .floating-gift,
    .sparkle {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: -40px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .story-content h2,
    .section-header h2,
    .sustainability-content h2,
    .cta-card h2 {
        font-size: 28px;
    }
    
    .story-image-badge {
        position: static;
        margin-top: 16px;
        display: inline-block;
    }
    
    .sustainability-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin: 0 auto;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== REDUCED MOTION ===== */
@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;
    }
    
    .hero-badge,
    .story-image-badge,
    .floating-tag,
    .floating-bag,
    .floating-star,
    .floating-discount,
    .floating-gift,
    .sparkle {
        animation: none;
    }
    
    .stat-card,
    .value-card,
    .guarantee-card,
    .process-step:hover .process-icon,
    .stat-card:hover .stat-icon {
        transform: none;
    }
}

/* ===== PRINT ===== */
@media print {
    .hero {
        background: #1a1a2e !important;
        padding: 40px 24px;
    }
    
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .stats-section {
        margin-top: 24px;
    }
    
    .stat-card,
    .value-card,
    .guarantee-card {
        break-inside: avoid;
    }
    
    .sustainability-card {
        background: #10b981 !important;
    }
    
    .floating-tag,
    .floating-bag,
    .floating-star,
    .floating-discount,
    .floating-gift,
    .sparkle {
        display: none !important;
    }
}