/* PlexiFrames Landing */

/* tokens */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #fafafa;
    --color-bg-dark: #0a0a0a;
    --color-text: #171717;
    --color-text-secondary: #525252;
    --color-text-muted: #a3a3a3;
    --color-border: #e5e5e5;
    --color-border-light: #f0f0f0;
    --color-accent: #1e3a5f;
    --color-accent-light: #2d5a8e;
    --color-accent-subtle: #eef4fb;
    --color-success: #16a34a;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'DM Serif Display', Georgia, serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.08);
    --container-max: 1200px;
    --container-narrow: 800px;
    --transition: 150ms ease;
}

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

body.plexiframes-landing {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

/* sections */
.section {
    padding: 100px 0;
}
.section-alt {
    background: var(--color-bg-alt);
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 12px;
}
.section-title em {
    font-style: italic;
}
.section-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-bg-dark);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
    background: #262626;
    transform: translateY(-1px);
}
.btn-primary.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: var(--radius-xl);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    color: var(--color-text-secondary);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover {
    border-color: var(--color-text);
    color: var(--color-text);
}

/* --
   HERO
-- */
.hero {
    padding: 140px 0 100px;
    overflow: hidden;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-title em {
    font-style: italic;
    color: var(--color-accent);
}
.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-proof {
    display: flex;
    gap: 24px;
    align-items: center;
}
.hero-proof-item {
    display: flex;
    flex-direction: column;
}
.proof-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}
.proof-label {
    font-size: 13px;
    color: var(--color-text-muted);
}
.proof-divider {
    width: 1px;
    height: 36px;
    background: var(--color-border);
}

/* Hero visual — 3-frame acrylic showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.hero-showcase {
    position: relative;
    width: 500px;
    height: 540px;
}

/* Soft glow behind the frames */
.showcase-glow {
    position: absolute;
    top: 15%;
    left: 10%;
    right: 10%;
    bottom: 15%;
    background: radial-gradient(ellipse at 50% 50%, rgba(30,58,95,.10) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
    pointer-events: none;
}

/* Shared frame base */
.showcase-frame {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.5s ease;
}

.showcase-frame .frame-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.showcase-frame .frame-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Glass overlay — subtle gloss across the acrylic */
.showcase-frame .frame-glass {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.30) 0%,
        rgba(255,255,255,0) 45%,
        rgba(255,255,255,0) 55%,
        rgba(255,255,255,0.06) 100%
    );
}

/* Reflection under the main frame */
.frame-reflection {
    position: absolute;
    bottom: -30px;
    left: 15%;
    right: 15%;
    height: 30px;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(0,0,0,.05), transparent);
    filter: blur(8px);
    border-radius: 0 0 50% 50%;
    pointer-events: none;
}

/* ── Secondary frame: bottom-left (BEHIND, rendered first) ── */
.frame-bl {
    width: 180px;
    height: 245px;
    left: 10px;
    bottom: 40px;
    transform: rotate(-7deg);
    z-index: 1;
    box-shadow:
        0 12px 30px rgba(0,0,0,.10),
        0 1px 3px rgba(0,0,0,.04);
}

.hero-showcase:hover .frame-bl {
    transform: rotate(-8deg) translate(-6px, 6px);
}

/* ── Secondary frame: top-right (BEHIND, rendered second) ── */
.frame-tr {
    width: 190px;
    height: 260px;
    right: 10px;
    top: 10px;
    transform: rotate(5deg);
    z-index: 2;
    box-shadow:
        0 12px 30px rgba(0,0,0,.10),
        0 1px 3px rgba(0,0,0,.04);
}

.hero-showcase:hover .frame-tr {
    transform: rotate(6deg) translate(6px, -6px);
}

/* ── Main frame (FRONT, on top) ── */
.main-frame {
    width: 280px;
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow:
        0 25px 50px rgba(0,0,0,.16),
        0 2px 8px rgba(0,0,0,.06);
}

.hero-showcase:hover .main-frame {
    transform: translate(-50%, -52%);
    box-shadow:
        0 30px 60px rgba(0,0,0,.20),
        0 2px 8px rgba(0,0,0,.06);
}

/* Subtle float animation */
@keyframes heroFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50%      { transform: translate(-50%, -52%); }
}

.main-frame {
    animation: heroFloat 5s ease-in-out infinite;
}

.hero-showcase:hover .main-frame {
    animation: none;
}

/* --
   PRODUCT (What is a PlexiFrame)
-- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.split-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.split-content .section-label {
    text-align: left;
}
.split-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}
.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}
.product-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #f5f5f5;
}
.product-frame img {
    width: 100%;
    display: block;
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
}
.checklist-item svg {
    flex-shrink: 0;
    color: var(--color-success);
}

/* --
   FEATURES
-- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 32px 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    opacity: 0;
    transform: translateY(20px);
}
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-card:hover {
    border-color: var(--color-text-muted);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--color-accent);
}
.feature-icon svg {
    width: 100%;
    height: 100%;
}
.feature-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* --
   GALLERY
-- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 480px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f0f0f0;
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-left {
    grid-row: 1 / -1;
}

/* --
   HOW IT WORKS
-- */
.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.step-card {
    flex: 1;
    padding: 36px 32px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}
.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.step-card:hover {
    box-shadow: var(--shadow-md);
}
.step-num {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-border);
    font-family: var(--font-heading);
    margin-bottom: 16px;
    line-height: 1;
}
.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}
.step-connector-h {
    width: 40px;
    height: 1px;
    background: var(--color-border);
    flex-shrink: 0;
    align-self: center;
    margin: 0 -1px;
}

/* --
   SIZES & PRICING
-- */
.sizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.size-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    opacity: 0;
    transform: translateY(16px);
}
.size-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.size-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.size-card-popular {
    border-color: var(--color-accent);
    background: var(--color-accent-subtle);
}
.size-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 20px;
}
.size-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.size-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 6px;
}
.size-desc {
    font-size: 13px;
    color: var(--color-text-muted);
}
.sizes-note {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
}
.sizes-note a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --
   SHIPPING / INFO CARDS
-- */
.info-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info-card {
    padding: 36px 32px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.info-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.info-card-icon {
    width: 36px;
    height: 36px;
    color: var(--color-accent);
    margin-bottom: 20px;
}
.info-card-icon svg {
    width: 100%;
    height: 100%;
}
.info-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}
.info-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}
.info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.info-list-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border-light);
}
.info-list-row:last-child {
    border-bottom: 0;
}
.info-list-row span:first-child {
    color: var(--color-text-secondary);
}
.info-list-row span:last-child {
    font-weight: 600;
    color: var(--color-text);
}
.info-list-highlight span:last-child {
    color: var(--color-success);
}

/* --
   CANCELLATION
-- */
.cancellation-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 48px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.cancellation-banner.visible {
    opacity: 1;
    transform: translateY(0);
}
.cancellation-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.cancellation-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}
.cancellation-text a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --
   FAQ
-- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--color-text-muted);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] summary::after {
    content: '\2212';
}
.faq-item summary:hover {
    color: var(--color-accent);
}
.faq-answer {
    padding: 0 0 20px;
}
.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}
.faq-answer a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --
   FINAL CTA
-- */
.section-cta {
    padding: 100px 0;
    background: var(--color-bg-dark);
    color: #fff;
}
.cta-block {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.cta-block.visible {
    opacity: 1;
    transform: translateY(0);
}
.cta-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #a3a3a3;
    margin-bottom: 36px;
}
.section-cta .btn-primary {
    background: #fff;
    color: var(--color-bg-dark);
}
.section-cta .btn-primary:hover {
    background: #e5e5e5;
}

/* --
   FOOTER
-- */
.pf-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: 64px 0 32px;
}
.pf-footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}
.pf-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}
.pf-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.pf-footer-logo .logo-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.pf-footer-logo .logo-text strong {
    font-weight: 700;
}
.pf-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 300px;
}
.pf-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.pf-footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}
.pf-footer-column a {
    display: block;
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 4px 0;
    transition: color var(--transition);
}
.pf-footer-column a:hover {
    color: var(--color-text);
}
.pf-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}
.pf-footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
}
.pf-footer-bottom-links {
    display: flex;
    gap: 20px;
}
.pf-footer-bottom-links a {
    font-size: 13px;
    color: var(--color-text-muted);
    transition: color var(--transition);
}
.pf-footer-bottom-links a:hover {
    color: var(--color-text);
}

/* --
   SCROLL TO TOP
-- */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background var(--transition);
    z-index: 90;
    box-shadow: var(--shadow-sm);
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    background: var(--color-bg-alt);
}

/* --
   LOGO (shared navbar + footer)
-- */
.nav-logo .logo-text,
.pf-footer-logo .logo-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--color-text);
}
.nav-logo .logo-text strong,
.pf-footer-logo .logo-text strong {
    font-weight: 700;
}

/* --
   RESPONSIVE
-- */

/* Tablet */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 36px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-proof {
        justify-content: center;
    }
    .hero-showcase {
        width: 420px;
        height: 460px;
    }
    .main-frame {
        width: 240px;
        height: 330px;
    }
    .frame-tr {
        width: 160px;
        height: 220px;
    }
    .frame-bl {
        width: 150px;
        height: 200px;
    }
    .split-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .split-content .section-label,
    .split-content .section-title {
        text-align: center;
    }
    .section-text {
        text-align: center;
    }
    .checklist {
        align-items: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sizes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .info-cards-row {
        grid-template-columns: 1fr;
    }
    .cancellation-banner {
        flex-direction: column;
        text-align: center;
    }
    .gallery-grid {
        height: 420px;
    }
    .pf-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }
    .hero {
        padding: 120px 0 72px;
    }
    .hero-title {
        font-size: clamp(30px, 8vw, 42px);
    }
    .hero-proof {
        flex-direction: column;
        gap: 12px;
    }
    .proof-divider {
        width: 40px;
        height: 1px;
    }
    .hero-showcase {
        width: 320px;
        height: 380px;
    }
    .main-frame {
        width: 200px;
        height: 275px;
    }
    .frame-tr {
        width: 130px;
        height: 180px;
        right: 0;
        top: 0;
    }
    .frame-bl {
        width: 120px;
        height: 165px;
        left: 0;
        bottom: 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .gallery-left {
        grid-row: span 1;
    }
    .gallery-item {
        height: 200px;
    }
    .steps-row {
        flex-direction: column;
        gap: 16px;
    }
    .step-connector-h {
        width: 1px;
        height: 24px;
        align-self: center;
    }
    .sizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cancellation-banner {
        padding: 28px 24px;
    }
    .section-cta {
        padding: 72px 0;
    }
    .pf-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .pf-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container, .container-narrow {
        padding: 0 16px;
    }
    .section {
        padding: 56px 0;
    }
    .hero {
        padding: 110px 0 56px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    .sizes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .size-card {
        padding: 24px 12px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .gallery-item {
        height: 180px;
    }
    .pf-footer-links {
        grid-template-columns: 1fr;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .feature-card, .step-card, .info-card, .split-section,
    .gallery-item, .size-card, .section-header, .cancellation-banner, .cta-block {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
