/* ===================================================
   BIOLOGIA Z PASJA — Shared Styles
   Warm aesthetic: cream, blush, navy, sage
   Typography: Playfair Display + Quicksand + Caveat
   =================================================== */

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

:root {
    --cream: #FAF6F1;
    --cream-dark: #F0EAE0;
    --warm-beige: #E8DFD3;
    --blush: #C9918A;
    --blush-light: #E8C4BF;
    --blush-dark: #A87570;
    --navy: #2C3E50;
    --navy-light: #3D5166;
    --charcoal: #2D2D2D;
    --text: #3A3A3A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --sage: #A8B5A0;
    --sage-light: #D4DDD0;
    --success: #5A9E6F;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Quicksand', 'Segoe UI', sans-serif;
    --font-accent: 'Caveat', cursive;

    --section-padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
    --content-width: 1100px;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(250, 246, 241, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}

.nav-logo {
    font-family: var(--font-accent);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--blush); }
.nav-links a.active { color: var(--blush); font-weight: 600; }

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.25s ease;
}

.nav-cta:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    padding: 0.5rem;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blush);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(201, 145, 138, 0.3);
}

.btn-primary:hover {
    background: var(--blush-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 145, 138, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--warm-beige);
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section-label {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--blush);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-desc {
    margin: 0 auto;
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    padding: 8rem clamp(1.5rem, 5vw, 4rem) 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50vw;
    height: 50vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, var(--blush-light) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 35vw;
    height: 35vw;
    max-width: 400px;
    max-height: 400px;
    background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
    opacity: 0.25;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero .section-title,
.page-hero .section-desc {
    position: relative;
    z-index: 2;
}

.page-hero .section-desc {
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blush); }
.breadcrumb .sep { opacity: 0.4; }

/* ===== HERO (home) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-padding);
    padding-top: 7rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, var(--blush-light) 0%, transparent 70%);
    opacity: 0.4;
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.hero-badge span {
    font-size: 0.7rem;
    background: var(--sage);
    color: var(--white);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: italic;
    color: var(--blush);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--warm-beige);
    justify-content: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 0.35rem;
}

/* ===== FEATURES SECTION (home) ===== */
.features {
    padding: var(--section-padding);
}

.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-header .section-desc {
    margin: 0 auto;
}

/* ===== BENTO GRID ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 1.25rem;
    max-width: var(--content-width);
    margin: 0 auto;
}

.bento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-row-2 { grid-row: span 2; }

.bento-card.accent-blush { background: var(--blush); color: var(--white); }
.bento-card.accent-blush .bento-title { color: var(--white); }
.bento-card.accent-blush .bento-desc { color: rgba(255,255,255,0.85); }
.bento-card.accent-blush .bento-icon { background: rgba(255,255,255,0.2); color: var(--white); }

.bento-card.accent-navy { background: var(--navy); color: var(--white); }
.bento-card.accent-navy .bento-title { color: var(--white); }
.bento-card.accent-navy .bento-desc { color: rgba(255,255,255,0.75); }
.bento-card.accent-navy .bento-icon { background: rgba(255,255,255,0.12); color: var(--white); }

.bento-card.accent-sage { background: var(--sage-light); }

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.bento-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 1rem;
}

.bento-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 0.5rem;
}

.bento-large-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

/* ===== PRODUCT CARDS (catalog) ===== */
.products-section {
    padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 8rem);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: var(--content-width);
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    cursor: pointer;
}

.product-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.product-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--blush);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 3;
}

.product-card-badge.save { background: var(--sage); }

.product-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--blush);
    margin-bottom: 0.5rem;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.product-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.product-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-card-meta span {
    font-size: 0.78rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.product-card-meta span::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--warm-beige);
    flex-shrink: 0;
}

.product-card-meta span:first-child::before { display: none; }

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-card-price .price-current {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.product-card-price .price-old {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-card-price .price-discount {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    background: var(--blush);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--navy);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-product:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.btn-product svg { flex-shrink: 0; }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
    padding: 2rem 0 4rem;
}

.product-detail-grid {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.product-detail-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.product-detail-image {
    background: var(--white);
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    max-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.product-detail-info h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.product-detail-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blush);
    margin-bottom: 1.5rem;
}

.product-detail-price .old {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 0.5rem;
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cream-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.product-detail-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 2rem;
}

.product-detail-desc p {
    margin-bottom: 1.25rem;
}

.product-detail-desc h2,
.product-detail-desc h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--charcoal);
    margin: 2.5rem 0 1rem;
}

.product-detail-desc h2:first-child { margin-top: 0; }

.product-detail-desc h2 { font-size: 1.4rem; }
.product-detail-desc h3 { font-size: 1.15rem; }

.product-detail-desc ul {
    padding-left: 0;
    margin: 1rem 0 1.5rem;
}

.product-detail-desc ul li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.75;
}

.product-detail-desc ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 700;
}

.product-cta-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
}

.product-detail-info .product-cta-box {
    background: none;
    padding: 0;
    border-radius: 0;
    margin-top: 1.5rem;
}

.product-cta-box .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 1.1rem 2rem;
}

/* ===== PRODUCT DESCRIPTION COMPONENTS ===== */
.product-intro {
    margin-bottom: 3rem;
}

.product-intro-lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.product-intro-lead strong { color: var(--charcoal); }

.product-callout {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
    padding-left: 1.5rem;
    border-left: 3px solid var(--blush);
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2rem 0 3rem;
}

.product-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.product-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.product-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--blush);
}

.product-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.product-feature-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.product-testimonial {
    background: var(--sage-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    margin: 3rem 0;
    position: relative;
}

.product-testimonial::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--sage);
    position: absolute;
    top: 0.25rem;
    left: 1rem;
    line-height: 1;
    opacity: 0.5;
}

.product-testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
}

.product-testimonial-author {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.product-section-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.product-section-heading + p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.product-contents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0 2.5rem;
}

.product-contents-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s ease;
}

.product-contents-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.product-contents-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blush);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-story {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.product-story-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blush-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blush-dark);
}

.product-story h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.product-story p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 0;
}

.meta-tag svg {
    flex-shrink: 0;
}

@media (max-width: 680px) {
    .product-features-grid { grid-template-columns: 1fr; }
    .product-contents-grid { grid-template-columns: 1fr 1fr; }
    .product-story { flex-direction: column; gap: 1rem; }
}

/* ===== CURRICULUM TABLE ===== */
.curriculum {
    margin: 2rem 0;
}

.curriculum-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

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

.curriculum-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    flex-shrink: 0;
    margin-right: 1rem;
}

.curriculum-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.curriculum-duration {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-left: 1rem;
    flex-shrink: 0;
}

/* ===== ABOUT SECTION (home) ===== */
.about {
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--content-width);
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem) 2rem;
}

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

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-xl);
    background: var(--warm-beige);
}

.about-image-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--blush-light);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--blush-dark);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.about-text {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-highlight-text {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.about-highlight-text span {
    display: block;
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.15rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-header .section-desc {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--content-width);
    margin: 0 auto;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.testimonial-stars {
    color: #E8B341;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--blush-dark);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.testimonial-detail {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section { padding: var(--section-padding); }

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: clamp(3rem, 6vw, 5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 145, 138, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box .section-label { color: var(--blush-light); }
.cta-box .section-title { color: var(--white); margin-bottom: 1rem; }
.cta-box .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }
.cta-box .btn-primary { font-size: 1.05rem; padding: 1.1rem 2.5rem; }

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-info-value {
    font-size: 1.05rem;
    color: var(--charcoal);
    font-weight: 600;
    margin-top: 0.25rem;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.2s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--blush);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 2.5rem 0 1rem;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-content ul li {
    list-style: disc;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

/* ===== FEATURES LIST (for service pages) ===== */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: var(--content-width);
    margin: 0 auto;
}

.feature-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== STEPS (how it works) ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--content-width);
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    background: none;
    padding: 1.25rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--blush);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem clamp(1.5rem, 5vw, 4rem) 2rem;
    border-top: 1px solid var(--warm-beige);
}

.footer-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-logo {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-light);
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--blush); }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--blush);
    color: var(--white);
}

.footer-bottom {
    max-width: var(--content-width);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--warm-beige);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: var(--text-light);
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--blush); }

.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-credit .heart-icon { flex-shrink: 0; }

.footer-credit .devive-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s;
}

.footer-credit .devive-credit:hover { color: var(--blush); }
.footer-credit .devive-logo { border-radius: 4px; flex-shrink: 0; }

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    .about .about-image-wrapper { max-width: 400px; }
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image-wrapper { max-width: 400px; }
    .product-detail-top { grid-template-columns: 1fr; gap: 2rem; }
    .product-detail-image { max-height: 400px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 680px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.span-2 { grid-column: span 1; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card-footer { flex-direction: column; align-items: flex-start; }
    .btn-product { width: 100%; justify-content: center; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-brand { max-width: 100%; }
    .footer-social { justify-content: center; }
    .footer-links { flex-direction: column; gap: 2rem; align-items: center; }
    .footer-col { text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .nav.menu-open {
        inset: 0;
        background: var(--cream);
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        z-index: 200;
    }

    .nav.menu-open .nav-logo {
        position: absolute;
        top: 1.25rem;
        left: clamp(1.5rem, 5vw, 4rem);
    }

    .nav.menu-open .nav-mobile-toggle {
        position: absolute;
        top: 1.25rem;
        right: clamp(1.5rem, 5vw, 4rem);
        z-index: 300;
    }

    .nav.menu-open .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        width: 100%;
        height: 100%;
    }

    .nav.menu-open .nav-links a {
        font-size: 1.2rem;
    }

    .nav.menu-open .nav-links .nav-cta {
        font-size: 1rem !important;
        padding: 0.8rem 2rem;
    }
}
