/* ================================
   Capminton — Premium DTC Brand
   Mature, Polished, World-Class
   Cross-Browser Compatible
   Performance Optimized
   ================================ */

/* Performance: Promote animated elements to compositor */
.hero-float,
.btn-magnetic,
[data-tilt],
[data-animate],
.pricing-card,
.gallery-item,
.mobile-menu,
.header {
    will-change: transform;
}

.btn-pulse {
    will-change: box-shadow;
}

/* Layout containment for better performance */
.problem,
.solution,
.how-it-works,
.gallery,
.our-story,
.sustainability,
.testimonials,
.cta,
.faq,
.footer {
    contain: layout style;
}

/* Content-visibility for off-screen sections */
.problem,
.how-it-works,
.gallery,
.our-story,
.sustainability,
.testimonials,
.faq {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

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

/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --coral: #FF6B5B;
    --coral-dark: #E85A4A;
    --coral-light: #FF8A7D;
    --coral-glow: rgba(255, 107, 91, 0.4);

    --navy: #0F1729;
    --navy-light: #1A2744;
    --navy-medium: #243352;

    --teal: #00D4AA;
    --teal-dark: #00B894;
    --teal-glow: rgba(0, 212, 170, 0.3);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F8F7F4;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

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

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Container */
    --container-max: 1200px;
    --container-narrow: 800px;
    --container-padding: 1.5rem;
}

/* Reset */
*, *::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-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

h1 em, h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--coral);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* ================================
   Announcement Bar
   ================================ */
.announcement-bar {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.announcement-bar p {
    margin: 0;
    color: var(--white);
}

.announcement-bar a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 8px;
}

.announcement-bar a:hover {
    color: var(--coral-light);
}

/* ================================
   Header & Navigation
   ================================ */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.nav {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.logo:hover {
    opacity: 0.8;
}

.logo-mark {
    color: var(--coral);
    font-size: 1.5rem;
    margin-right: 8px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: 8px 0;
    margin-left: 32px;
    transition: color 0.2s ease;
}

.nav-links a:first-child {
    margin-left: 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--navy);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body.menu-open .mobile-menu-btn span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

body.menu-open .mobile-menu-btn span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-link {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    padding: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body.menu-open .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

body.menu-open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
body.menu-open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
body.menu-open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
body.menu-open .mobile-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-cta {
    margin-top: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}

body.menu-open .mobile-cta {
    transform: translateY(0);
    opacity: 1;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 16px var(--coral-glow);
}

.btn-primary:hover {
    background: var(--coral-dark);
    box-shadow: 0 8px 32px var(--coral-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    padding: 12px 0;
}

.btn-ghost:hover {
    color: var(--coral);
}

.btn-nav {
    padding: 10px 20px;
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
}

.btn-nav:hover {
    background: var(--navy-light);
}

.btn-large {
    padding: 18px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

/* Button Pulse Effect - Uses transform for compositor-friendly animation */
.btn-pulse {
    position: relative;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--coral);
    opacity: 0;
    z-index: -1;
    animation: btn-pulse-anim 2s ease-in-out infinite;
}

@keyframes btn-pulse-anim {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.08); opacity: 0.3; }
}

.btn-pulse:hover::after {
    animation: none;
    opacity: 0;
}

/* Button Ripple Effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ================================
   Hero Section
   ================================ */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 580px;
    padding-right: 40px;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-opacity 2s ease-in-out infinite;
    will-change: opacity;
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Visual */
.hero-image-wrapper {
    position: relative;
}

.hero-placeholder {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.hero-float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    animation: float 4s ease-in-out infinite;
}

.hero-float-1 {
    top: 10%;
    right: -20px;
}

.hero-float-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.hero-float-3 {
    bottom: -10px;
    right: 20%;
    animation-delay: 2s;
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.hero-scroll span {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--coral);
    border-radius: var(--radius-full);
    animation: scrollBounce 1.5s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ================================
   Marquee
   ================================ */
.marquee {
    background: var(--navy);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: marquee 20s linear infinite;
    width: max-content;
    will-change: transform;
}

.marquee-track span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding: 0 16px;
}

.marquee-dot {
    color: var(--coral);
    font-size: 8px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================
   Image Placeholders
   ================================ */
.image-placeholder {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-300);
    position: relative;
    overflow: hidden;
    /* Aspect ratio fallback */
    padding-top: 75%; /* 4:3 ratio */
}

.placeholder-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.placeholder-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 12px;
}

.placeholder-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.placeholder-desc {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    max-width: 180px;
}

.placeholder-product {
    padding-top: 100%; /* 1:1 ratio */
}

.placeholder-gallery {
    padding-top: 100%; /* 1:1 ratio */
    border-radius: var(--radius-lg);
}

.placeholder-gallery .placeholder-icon {
    font-size: 2.5rem;
}

/* ================================
   Section Styling
   ================================ */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header > p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ================================
   Problem Section
   ================================ */
.problem {
    background: var(--white);
    text-align: center;
}

.problem-content {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.problem-lead {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-top: 16px;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.problem-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--gray-700);
    font-style: italic;
}

.problem-punchline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

/* ================================
   Solution Section
   ================================ */
.solution {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.solution-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 64px;
}

.solution-visual {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
}

.solution-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.solution-image-wrapper {
    position: relative;
}

.solution-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 8px;
}

.solution-content h2 {
    margin-bottom: 24px;
}

.solution-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--teal-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
    margin-top: 2px;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    color: var(--teal-dark);
}

/* ================================
   How It Works Section
   ================================ */
.how-it-works {
    background: var(--white);
}

.steps-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 80px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.step {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
    padding: 32px;
    position: relative;
}

.step-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    margin-bottom: 12px;
    color: var(--navy);
}

.step p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================
   Gallery Section
   ================================ */
.gallery {
    background: var(--gray-50);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item .image-placeholder {
    transition: transform 0.6s ease;
}

.gallery-item:hover .image-placeholder {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 41, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--coral);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
    width: fit-content;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.125rem;
}

.gallery-item-featured {
    grid-row: span 2;
}

.gallery-item-featured .image-placeholder {
    padding-top: calc(200% + 24px);
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* ================================
   Our Story Section
   ================================ */
.our-story {
    background: var(--white);
}

.story-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 64px;
}

.story-visual {
    flex: 1;
    min-width: 300px;
    max-width: 440px;
}

.story-content {
    flex: 1;
    min-width: 300px;
    max-width: 560px;
}

.story-image-wrapper {
    position: relative;
}

.placeholder-story {
    padding-top: 120%;
    border-radius: var(--radius-2xl);
}

.story-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.badge-flag {
    font-size: 1.25rem;
    margin-right: 8px;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 20px;
}

.story-content > p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.story-content > p strong {
    color: var(--navy);
}

.story-social {
    text-align: center;
    margin-top: 24px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.story-social p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.social-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--coral);
    transition: color 0.2s ease;
}

.social-cta:hover {
    color: var(--coral-dark);
}

.story-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 8px;
}

.story-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.signature-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    font-family: var(--font-serif);
    font-style: italic;
}

.signature-title {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ================================
   Sustainability Section
   ================================ */
.sustainability {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

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

.sustainability-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.sustain-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.sustainability-card h3 {
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.sustainability-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials {
    background: var(--white);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.stars {
    color: var(--coral);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.reviews-summary span {
    font-size: 15px;
    color: var(--gray-500);
}

.testimonial-slider {
    overflow: visible;
}

.testimonial-track,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.testimonial-featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
    border: none;
}

.testimonial-stars {
    color: var(--coral);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial blockquote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.testimonial-featured blockquote {
    color: rgba(255, 255, 255, 0.9);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.testimonial-featured .author-avatar {
    background: var(--teal);
    color: var(--navy);
}

.author-info {
    flex: 1;
}

.author-info cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.testimonial-featured .author-info cite {
    color: var(--white);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.testimonial-featured .author-info span {
    color: var(--gray-400);
}

.verified {
    font-size: 12px;
    font-weight: 500;
    color: var(--teal);
    flex-shrink: 0;
}

/* ================================
   CTA Section
   ================================ */
.cta {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

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

.cta .section-header {
    margin-bottom: 48px;
}

.cta .section-eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta h2 em {
    color: var(--white);
}

.cta .section-header > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 48px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.pricing-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    transition: background 0.3s ease;
}

.pricing-product {
    position: relative;
    padding: 32px 32px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.product-image {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.product-image-double {
    gap: 12px;
}

.placeholder-pricing {
    width: 120px;
    height: 120px;
    padding-top: 0;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.placeholder-pricing .placeholder-icon {
    font-size: 2.5rem;
    margin: 0;
}

.pricing-card:hover .placeholder-pricing {
    transform: translateY(-8px) rotate(-3deg);
}

.product-image-double .placeholder-pricing:last-of-type {
    transform: rotate(6deg);
}

.pricing-card:hover .product-image-double .placeholder-pricing:last-of-type {
    transform: translateY(-8px) rotate(3deg);
}

.placeholder-pricing-offset {
    margin-left: -20px;
}

.product-colors {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.color-dot:hover {
    transform: scale(1.2);
}

.color-dot-more {
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.savings-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--teal);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    animation: pulse-tag 2s ease-in-out infinite;
}

@keyframes pulse-tag {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing-body {
    position: relative;
    z-index: 1;
    padding: 24px 32px 32px;
}

.pricing-card-featured {
    border: 3px solid var(--coral);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.07);
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 40px;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px var(--coral-glow);
    z-index: 10;
}

.pricing-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 12px 0;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 8px;
    margin-right: 4px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 8px;
}

.pricing-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.compare-original {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.compare-savings {
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    background: var(--teal-glow);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.pricing-features {
    margin-bottom: 24px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--gray-700);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    opacity: 0;
    transform: translateX(-10px);
    animation: slideIn 0.3s ease forwards;
}

.pricing-card:hover .pricing-features li {
    opacity: 1;
    transform: translateX(0);
}

.pricing-features li:last-child {
    border-bottom: none;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pricing-features li {
    opacity: 1;
    transform: translateX(0);
}

.feature-check {
    width: 22px;
    height: 22px;
    background: var(--teal-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-check svg {
    width: 12px;
    height: 12px;
    color: var(--teal-dark);
}

.feature-check-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.feature-check-gold svg {
    color: var(--white);
}

.card-popular {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
}

.popular-icon {
    animation: bounce 1s ease infinite;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.25rem;
}

/* Section Header Light (for dark backgrounds) */
.section-header-light h2 {
    color: var(--white);
}

.section-header-light h2 em {
    color: var(--white);
}

.section-header-light > p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header-light .section-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   FAQ Section
   ================================ */
.faq {
    background: var(--gray-50);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
}

.faq-header {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.faq-list {
    flex: 1.5;
    min-width: 300px;
}

.faq-header h2 {
    margin-bottom: 16px;
}

.faq-header > p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item[open] {
    border-color: var(--coral);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--coral);
}

.faq-item summary span:first-child {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--coral);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 11px;
    left: 5px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 5px;
    left: 11px;
}

.faq-item[open] .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.logo-footer {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-flex;
}

.logo-footer .logo-mark {
    color: var(--coral);
}

.footer-brand > p {
    color: var(--gray-400);
    font-size: 15px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-column {
    min-width: 120px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    font-size: 15px;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--teal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ================================
   Back to Top
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--coral);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ================================
   Animations
   ================================ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="scale-up"] {
    transform: scale(0.95);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Text Reveal Animation */
.text-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 0.8s ease forwards;
}

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

/* Price Pop Animation */
.price-pop {
    animation: pricePop 0.6s ease 0.3s both;
}

@keyframes pricePop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Hover lift effect for cards */
.problem-card,
.step,
.sustainability-card,
.testimonial,
.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Interactive cursor style */
.pricing-card,
.gallery-item,
.problem-card,
.sustainability-card {
    cursor: pointer;
}

/* Smooth image zoom on hover */
.gallery-item img,
.image-placeholder {
    transition: transform 0.5s ease;
}

/* Gradient text effect on hover */
.logo:hover .logo-text {
    background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav link underline animation */
.nav-links a::after {
    transform-origin: right;
    transform: scaleX(0);
}

.nav-links a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

/* Stat value animation */
.stat-value {
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat:hover .stat-value {
    transform: scale(1.1);
    color: var(--coral);
}

/* FAQ item hover enhancement */
.faq-item:hover summary {
    background: var(--gray-50);
}

/* Testimonial card tilt on hover */
.testimonial:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.testimonial-featured:hover {
    transform: translateY(-8px) rotate(1deg);
}

/* Step icon bounce on hover */
.step:hover .step-icon {
    animation: iconBounce 0.5s ease;
}

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

/* Sustainability card icon spin */
.sustainability-card:hover .sustain-icon {
    animation: iconSpin 0.6s ease;
}

@keyframes iconSpin {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(360deg); }
}

/* Problem card shake on hover */
.problem-card:hover .card-icon {
    animation: iconShake 0.5s ease;
}

@keyframes iconShake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 48px;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-float {
        display: none;
    }

    .solution-grid {
        flex-direction: column;
        text-align: center;
    }

    .solution-visual {
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .solution-content {
        max-width: 100%;
    }

    .feature-list li {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-featured {
        grid-row: auto;
    }

    .gallery-item-featured .image-placeholder {
        padding-top: 100%;
    }

    .testimonial-track,
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-featured {
        order: -1;
    }

    .faq-grid {
        flex-direction: column;
    }

    .faq-header {
        max-width: 100%;
        text-align: center;
    }

    .faq-header .btn {
        display: none;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        text-align: center;
    }

    .story-grid {
        flex-direction: column;
        text-align: center;
    }

    .story-visual {
        max-width: 360px;
        margin: 0 auto 40px;
    }

    .story-content {
        max-width: 100%;
    }

    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-card {
        min-width: 100%;
        max-width: 400px;
    }

    .pricing-card-featured {
        transform: none;
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: none;
    }

    .trust-badges {
        gap: 20px;
    }

    .trust-item {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    section {
        padding: 64px 0;
    }

    .announcement-bar {
        font-size: 12px;
        padding: 8px 12px;
    }

    .header {
        top: 36px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 48px;
    }

    .hero-scroll {
        display: none;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .problem-grid {
        flex-direction: column;
        align-items: center;
    }

    .problem-card {
        max-width: 320px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .steps-line {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-amount {
        font-size: 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
    }

    .placeholder-pricing {
        width: 100px;
        height: 100px;
    }

    .pricing-ribbon {
        font-size: 10px;
        padding: 6px 30px;
        left: -30px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .stat-divider {
        display: none;
    }

    .hero-stats {
        justify-content: space-around;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ================================
   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;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    .marquee-track {
        animation: none;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background-color: var(--coral);
    color: var(--white);
}

/* ================================
   Legal Pages (Privacy & Terms)
   ================================ */
.header-simple {
    position: relative;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.nav-links-legal {
    display: flex;
}

/* Legal Hero */
.legal-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.legal-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.legal-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.legal-hero .legal-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    border: none;
    padding: 0;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 24px;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--teal);
}

/* Legal Page Layout */
.legal-page {
    padding: 60px 0 100px;
    min-height: calc(100vh - 200px);
}

.legal-layout {
    display: flex;
    gap: 64px;
}

/* Table of Contents */
.legal-toc {
    width: 240px;
    flex-shrink: 0;
}

.toc-sticky {
    position: sticky;
    top: 100px;
}

.legal-toc h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.legal-toc li {
    margin-bottom: 0;
}

.legal-toc a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-left: 2px solid transparent;
    padding-left: 12px;
    margin-left: -12px;
    transition: all 0.2s ease;
}

.legal-toc a:hover {
    color: var(--coral);
}

.legal-toc a.active {
    color: var(--coral);
    border-left-color: var(--coral);
    font-weight: 500;
}

.toc-cta {
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
}

.toc-cta p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

/* Legal Content */
.legal-content {
    flex: 1;
    max-width: 720px;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.legal-section h3 {
    font-size: 1.125rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--navy);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.legal-section a {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-section a:hover {
    color: var(--coral-dark);
}

/* Legal Lists */
.legal-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
}

.legal-list li strong {
    color: var(--navy);
}

.legal-list-check li::before {
    content: '✓';
    background: none;
    color: var(--teal);
    font-weight: 700;
    font-size: 14px;
    top: 2px;
    width: auto;
    height: auto;
}

.legal-list-x li::before {
    content: '✕';
    background: none;
    color: var(--coral);
    font-weight: 700;
    font-size: 12px;
    top: 4px;
    width: auto;
    height: auto;
}

/* Legal Highlights */
.legal-highlight {
    background: var(--gray-50);
    border-left: 4px solid var(--coral);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
}

.legal-highlight p {
    margin: 0;
    color: var(--navy);
}

.legal-highlight-success {
    border-left-color: var(--teal);
    background: rgba(0, 212, 170, 0.08);
}

/* Legal Grid */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.legal-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-700);
}

.grid-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Legal Note */
.legal-note {
    background: rgba(255, 107, 91, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 20px 0;
}

.legal-note p {
    margin: 0;
    font-size: 14px;
}

/* Timeline */
.timeline {
    margin: 24px 0;
    padding-left: 24px;
    border-left: 2px solid var(--gray-200);
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
    padding-left: 24px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -35px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.timeline-content strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
}

.timeline-content p {
    margin: 0;
    font-size: 14px;
}

/* Contact Card */
.contact-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 24px;
    margin-top: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 1rem;
    color: var(--navy);
}

.contact-item a {
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--coral);
}

.footer-bottom-simple {
    padding-top: 32px;
    border-top: none;
}

/* Legal Pages Responsive */
@media (max-width: 1024px) {
    .legal-layout {
        flex-direction: column;
    }

    .legal-toc {
        width: 100%;
        margin-bottom: 32px;
    }

    .toc-sticky {
        position: static;
    }

    .legal-toc ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .legal-toc a {
        padding: 8px 16px;
        background: var(--gray-100);
        border-radius: var(--radius-full);
        border-left: none;
        margin-left: 0;
        padding-left: 16px;
    }

    .legal-toc a.active {
        background: var(--coral);
        color: var(--white);
        border-left: none;
    }

    .toc-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links-legal {
        display: none;
    }

    .legal-hero {
        padding: 100px 0 48px;
    }

    .legal-hero-content h1 {
        font-size: 2rem;
    }

    .legal-hero-subtitle {
        font-size: 1rem;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .timeline {
        padding-left: 16px;
    }

    .timeline-item {
        padding-left: 16px;
    }

    .timeline-marker {
        left: -27px;
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* ================================
   Blog Styles
   ================================ */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.blog-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.blog-hero-content > p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Blog Page */
.blog-page {
    padding: 60px 0 100px;
    background: var(--gray-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card-featured {
    grid-column: span 3;
}

.blog-card-featured .blog-card-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-card-link {
    display: block;
    text-decoration: none;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.placeholder-blog {
    padding-top: 66%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.blog-card-featured .placeholder-blog {
    padding-top: 100%;
}

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--coral);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-featured .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.blog-card h2 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-featured h2 {
    font-size: 1.75rem;
}

.blog-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--coral);
    transition: color 0.2s ease;
}

.blog-card:hover .blog-cta {
    color: var(--coral-dark);
}

/* Blog Newsletter */
.blog-newsletter {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.newsletter-content > p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* Article Hero */
.article-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 100%);
    padding: 140px 0 60px;
}

.article-hero-content {
    max-width: 800px;
}

.article-hero .breadcrumb {
    margin-bottom: 24px;
}

.article-hero .breadcrumb ol {
    justify-content: flex-start;
}

.article-tag {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.article-hero h1 {
    color: var(--white);
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.author-name {
    display: block;
    color: var(--white);
    font-weight: 600;
}

.author-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.article-details {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Article Page */
.article-page {
    padding: 60px 0 100px;
}

.article-page > .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

/* Article Content */
.article-content {
    max-width: 720px;
}

.article-lead {
    font-size: 1.25rem;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 32px;
}

.article-content h2 {
    font-size: 1.75rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--navy);
}

.article-content h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--navy);
}

.article-content > p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.article-content a {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--coral-dark);
}

/* Table of Contents */
.table-of-contents {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 40px;
}

.table-of-contents h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    font-size: 15px;
    color: var(--gray-600);
    text-decoration: none;
}

.table-of-contents a:hover {
    color: var(--coral);
}

/* Location Card */
.location-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.location-info p {
    font-size: 15px;
    margin-bottom: 8px;
}

.location-info p:last-child {
    margin-bottom: 0;
}

/* Pro Tip */
.pro-tip {
    display: flex;
    gap: 16px;
    background: rgba(0, 212, 170, 0.08);
    border-left: 4px solid var(--teal);
    padding: 20px 24px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 32px 0;
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pro-tip p {
    margin: 0;
    font-size: 15px;
}

/* Comparison Table */
.comparison-table {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 32px 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.comparison-header {
    background: var(--navy);
}

.comparison-header .comparison-cell {
    color: var(--white);
    font-weight: 600;
}

.comparison-cell {
    padding: 16px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

.comparison-row:not(.comparison-header):nth-child(even) {
    background: var(--gray-50);
}

/* Article Conclusion */
.article-conclusion {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-top: 48px;
}

.article-conclusion h2 {
    margin-top: 0;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    margin-top: 48px;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 2rem;
    flex-shrink: 0;
}

.author-bio h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.author-bio p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.author-bio a {
    font-size: 14px;
    font-weight: 600;
    color: var(--coral);
    text-decoration: none;
}

/* Related Posts */
.related-posts {
    margin-top: 48px;
}

.related-posts h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

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

.related-card {
    display: block;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: background 0.2s ease;
}

.related-card:hover {
    background: var(--gray-100);
}

.related-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--coral);
    margin-bottom: 8px;
}

.related-card h4 {
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.4;
}

/* Article Sidebar */
.article-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-cta {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
}

.sidebar-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.sidebar-cta h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.sidebar-cta > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .article-page > .container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        display: none;
    }

    .blog-card-featured {
        grid-column: span 2;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 60px;
    }

    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-featured {
        grid-column: span 1;
    }

    .blog-card-featured .blog-card-link {
        grid-template-columns: 1fr;
    }

    .blog-card-featured .placeholder-blog {
        padding-top: 56%;
    }

    .blog-newsletter {
        padding: 40px 24px;
    }

    .article-hero {
        padding: 120px 0 48px;
    }

    .article-hero h1 {
        font-size: 1.75rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-bottom: none;
        padding: 12px 16px;
    }

    .comparison-row:not(.comparison-header) .comparison-cell:first-child {
        background: var(--gray-100);
        font-weight: 600;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar-large {
        margin: 0 auto;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}
