﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Caveat:wght@400&display=swap');

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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --bg-cream: #f1e9e4;
    --bg-dark: #1a1a2e;
    --accent: #2563eb;
    --accent-hover: #3b82f6;
    --accent-dark: #1d4ed8;
    --teal: #3e6164;
    --teal-light: #5a9a9e;
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --text-light: #f1e9e4;
    --border: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Caveat', cursive;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

/* ========== HEADER ========== */
.header {
    position: relative;
    z-index: 100;
    background: var(--bg-dark);
    padding: 0;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 2rem;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 48px;
    border-radius: 50%;
}

.nav-left, .nav-right {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-left {
    margin-right: auto;
}

.nav-right {
    margin-left: auto;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('homehero.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.42);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 4rem 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 3px;
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero h1 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(241, 233, 228, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--teal);
    color: var(--text-light);
    border: 1.5px solid var(--teal);
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-cta:hover {
    background: var(--teal-light);
    border-color: var(--teal-light);
}

.hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(241, 233, 228, 0.45);
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-cta-ghost:hover {
    border-color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== SOCIAL PROOF BAR ========== */
.proof-bar {
    background: var(--bg-dark);
    padding: 1.2rem 2rem;
    border-top: 1px solid rgba(241, 233, 228, 0.1);
}

.proof-bar-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.proof-item {
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 300;
}

.proof-item strong {
    color: var(--teal-light);
    font-weight: 600;
}

.proof-divider {
    width: 1px;
    height: 20px;
    background: rgba(241, 233, 228, 0.22);
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
    text-align: center;
}

.problem-inner {
    max-width: 680px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.problem-section p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.82;
    margin-bottom: 1rem;
}

.problem-section p:last-child {
    margin-bottom: 0;
}

.problem-callout {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--bg-primary);
    border-left: 4px solid var(--teal);
    border-radius: 0 6px 6px 0;
    text-align: left;
}

.problem-callout p {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 0;
}

/* ========== FLAGSHIP PRODUCT ========== */
.flagship-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.flagship-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.flagship-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
}

.flagship-content .tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--teal);
    color: var(--text-light);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.flagship-content h2 {
    font-size: clamp(1.45rem, 2.8vw, 1.95rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.flagship-content p {
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.82;
    margin-bottom: 1rem;
}

.flagship-features {
    list-style: none;
    margin: 1.5rem 0;
}

.flagship-features li {
    padding: 0.5rem 0;
    font-size: 0.93rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.flagship-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

.flagship-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.flagship-price .current {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -1px;
}

.flagship-price .original {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.flagship-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: var(--teal);
    color: var(--text-light);
    border: 1.5px solid var(--teal);
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.flagship-cta:hover {
    background: var(--teal-light);
    border-color: var(--teal-light);
}

/* ========== REVIEWS CAROUSEL ========== */
.reviews-section {
    background: var(--bg-dark);
    padding: 5rem 2rem;
    overflow: hidden;
}

.reviews-inner {
    max-width: 1040px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.25;
}

.reviews-header p {
    color: rgba(241, 233, 228, 0.7);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: rgba(241, 233, 228, 0.08);
    border: 1px solid rgba(241, 233, 228, 0.12);
    border-radius: 6px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

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

.review-card .quote {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(241, 233, 228, 0.1);
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.review-author-info h5 {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.08em;
}

.review-author-info p {
    font-size: 0.75rem;
    color: rgba(241, 233, 228, 0.5);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.review-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(210, 212, 165, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.review-dot.active,
.review-dot:hover {
    background: var(--teal-light);
}

/* ========== MORE PRODUCTS ========== */
.products-section {
    background: var(--bg-dark);
    padding: 5rem 2rem;
}

.products-inner {
    max-width: 980px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.25;
}

.products-header p {
    color: rgba(241, 233, 228, 0.7);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

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

.product-card {
    background: rgba(241, 233, 228, 0.06);
    border: 1px solid rgba(241, 233, 228, 0.11);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 233, 228, 0.25);
}

.product-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--teal-light);
    margin-bottom: 0.5rem;
}

.product-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-card .description {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(241, 233, 228, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

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

.product-card .price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

.product-card .price-original {
    font-size: 0.85rem;
    color: rgba(241, 233, 228, 0.4);
    text-decoration: line-through;
}

.product-card .card-link {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-light);
    border-bottom: 1px solid rgba(90, 154, 158, 0.35);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.product-card .card-link:hover {
    color: var(--text-light);
    border-color: var(--text-light);
}

.product-card .btn-buy {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--teal);
    color: var(--text-light);
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.product-card .btn-buy:hover {
    background: var(--teal-light);
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
    background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
    padding: 5rem 2rem;
}

.founder-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
}

.founder-content h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.founder-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(241, 233, 228, 0.9);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.founder-content .signature {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    opacity: 0.9;
}

/* ========== GRADIENT DIVIDER ========== */
.gradient-divider {
    height: 80px;
    background: linear-gradient(180deg, var(--teal) 0%, var(--bg-secondary) 100%);
}

/* ========== EMAIL SIGNUP ========== */
.signup-section {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #e8f0fe 100%);
    text-align: center;
}

.signup-inner {
    max-width: 600px;
    margin: 0 auto;
}

.signup-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.signup-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.signup-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.signup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.signup-form button {
    padding: 0.85rem 1.75rem;
    background: var(--teal);
    color: var(--text-light);
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    white-space: nowrap;
}

.signup-form button:hover {
    background: var(--teal-light);
}

.signup-disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: rgba(241, 233, 228, 0.6);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--text-light);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
}

.footer p {
    color: rgba(241, 233, 228, 0.4);
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(241, 233, 228, 0.4);
    font-size: 0.72rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

/* ========== PRODUCT DETAIL PAGES ========== */
.product-hero {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.product-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.product-hero-content .subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-hero-image {
    position: relative;
}

.product-hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.product-hero-image:hover img {
    transform: translateY(-10px) rotate(1deg);
}

.product-hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--accent) 0%, #3b82f6 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.content-section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.content-section > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    display: grid;
    gap: 1.25rem;
}

.feature-item {
    background: var(--bg-secondary);
    padding: 1.75rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.feature-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-works {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
}

.why-works-inner {
    max-width: 900px;
    margin: 0 auto;
}

.why-works h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

.why-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.why-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-item .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.why-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.why-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.image-showcase {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-secondary);
}

.image-showcase img {
    max-width: 600px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.image-showcase img:hover {
    transform: scale(1.02);
}

.cross-promo {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.cross-promo h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    letter-spacing: -0.5px;
}

/* Price Styles */
.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

.price-original {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-save {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: #10b981;
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-hero-content .price-container {
    margin-bottom: 1.5rem;
}

.product-hero-content .price-current {
    font-size: 3rem;
}

.product-hero-content .price-original {
    font-size: 1.5rem;
}

/* CTA Section (product pages) */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #eff6ff 100%);
}

.cta-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.15rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== BUTTONS (global) ========== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    text-align: center;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--teal);
    color: var(--text-light);
    border-color: var(--teal);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(241, 233, 228, 0.45);
}

.btn-ghost:hover {
    border-color: var(--text-light);
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 700px) {
    .nav-left, .nav-right {
        display: none;
    }

    .header-inner {
        justify-content: center;
    }

    .hero {
        min-height: 480px;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

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

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

    .proof-bar-inner {
        flex-direction: column;
        gap: 0.75rem;
    }

    .proof-divider {
        display: none;
    }

    .flagship-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .flagship-image {
        order: -1;
    }

    .reviews-carousel {
        padding-left: 1rem;
    }

    .review-card {
        flex: 0 0 280px;
    }

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

    .founder-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-image {
        order: -1;
    }

    .signup-form {
        flex-direction: column;
    }

    .product-hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-hero-image {
        order: -1;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (min-width: 701px) and (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .flagship-inner {
        gap: 40px;
    }
}

/* ========== ABOUT PAGE ========== */

.about-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2d1f4e 50%, var(--accent-dark) 100%);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.45);
    z-index: 1;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 5rem 2rem;
}

.about-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.about-hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(241, 233, 228, 0.85);
    line-height: 1.7;
}

/* Why We're Here */
.about-why-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.about-why-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-why-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-why-section > p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.82;
    margin-bottom: 1rem;
    text-align: center;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-pillar {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.about-pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    color: var(--teal);
}

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

.about-pillar h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.about-pillar p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Our Values */
.about-values-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.about-values-inner {
    max-width: 980px;
    margin: 0 auto;
}

.about-values-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.about-value-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.about-value-line {
    width: 40px;
    height: 3px;
    background: var(--teal);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.about-value-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.about-value-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* The Journey */
.about-journey-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.about-journey-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-journey-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.about-timeline {
    position: relative;
    padding-left: 40px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.about-timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

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

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 2px var(--teal);
}

.about-timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.about-timeline-content p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About CTA */
.about-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--accent-dark) 100%);
    text-align: center;
}

.about-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-cta-section p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(241, 233, 228, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-cta-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-cta-btn:hover {
    background: var(--text-light);
    transform: translateY(-2px);
}

/* About Page Responsive */
@media (max-width: 700px) {
    .about-hero {
        min-height: 320px;
    }

    .about-hero-inner {
        padding: 3rem 1.5rem;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-timeline {
        padding-left: 30px;
    }

    .about-timeline-item::before {
        left: -26px;
        width: 12px;
        height: 12px;
    }
}

/* ========== SHOP PAGE ========== */

/* Scroll Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Shop Hero */
.shop-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2a4a 50%, var(--accent-dark) 100%);
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(62, 97, 100, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.shop-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 5rem 2rem;
}

.shop-hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease forwards;
}

.shop-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.shop-hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(241, 233, 228, 0.8);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

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

/* Featured Product */
.shop-featured {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.shop-featured-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.shop-featured-image {
    position: relative;
}

.shop-featured-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-featured-image:hover img {
    transform: scale(1.02) rotate(0.5deg);
}

.shop-featured-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    padding: 0.5rem 1rem;
    background: var(--teal);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(62, 97, 100, 0.3);
}

.shop-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.shop-featured-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.shop-featured-content > p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.shop-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.shop-features li {
    padding: 0.45rem 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.shop-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

.shop-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.shop-price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -1px;
}

.shop-price-original {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.shop-price-save {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: #10b981;
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.shop-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    background: var(--teal);
    color: var(--text-light);
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.shop-buy-btn:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(62, 97, 100, 0.25);
}

/* Products Grid */
.shop-grid-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.shop-grid-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.shop-grid-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.75rem;
}

.shop-grid-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Product Card */
.shop-card {
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.shop-card-image-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.shop-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-card:hover .shop-card-image {
    transform: scale(1.08);
}

.shop-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-card:hover .shop-card-overlay {
    opacity: 1;
}

.shop-card-view {
    padding: 0.7rem 1.5rem;
    background: white;
    color: var(--text-primary);
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.shop-card-view:hover {
    background: var(--teal);
    color: white;
}

.shop-card-body {
    padding: 1.75rem;
}

.shop-card-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: var(--bg-secondary);
    color: var(--teal);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

.shop-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.shop-card-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.shop-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.shop-card-price .current {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.shop-card-price .original {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.shop-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-card-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-card-link:hover {
    color: var(--teal-light);
}

.shop-card-buy {
    padding: 0.6rem 1.25rem;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.shop-card-buy:hover {
    background: var(--teal-light);
}

/* Trust Section */
.shop-trust {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.shop-trust-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.shop-trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.shop-trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    color: var(--teal);
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.shop-trust-item:hover .shop-trust-icon {
    background: var(--teal);
    color: white;
    transform: scale(1.1);
}

.shop-trust-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.shop-trust-item p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Shop CTA */
.shop-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #e8f0fe 100%);
    text-align: center;
}

.shop-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.shop-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.shop-cta p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.shop-cta-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--teal);
    color: var(--text-light);
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.shop-cta-btn:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(62, 97, 100, 0.25);
}

/* Shop Responsive */
@media (max-width: 700px) {
    .shop-hero {
        min-height: 320px;
    }

    .shop-hero-inner {
        padding: 3rem 1.5rem;
    }

    .shop-featured-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shop-featured-image {
        order: -1;
    }

    .shop-products-grid {
        grid-template-columns: 1fr;
    }

    .shop-trust-inner {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 701px) and (max-width: 900px) {
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== PRODUCT DETAIL PAGES ========== */

/* Product Detail Hero */
.pd-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #e8f0fe 100%);
}

.pd-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pd-hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent);
    color: white;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 3px;
    margin-bottom: 1.25rem;
}

.pd-hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.pd-hero-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pd-price-now {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

.pd-price-was {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.pd-price-save {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: #10b981;
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pd-hero-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pd-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.pd-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--teal);
    color: var(--text-light);
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.pd-hero-btn:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(62, 97, 100, 0.3);
}

.pd-hero-note {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.pd-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pd-hero-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Product Features */
.pd-features {
    padding: 5rem 2rem;
    background: var(--bg-primary);
}

.pd-features-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.pd-features h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.pd-features-sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pd-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pd-feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.pd-feature-num {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.pd-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pd-feature-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why It Works */
.pd-why {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.pd-why-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.pd-why h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.pd-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pd-why-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

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

.pd-why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    color: var(--teal);
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pd-why-card:hover .pd-why-icon {
    background: var(--teal);
    color: white;
    transform: scale(1.1);
}

.pd-why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pd-why-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Image Showcase */
.pd-showcase {
    padding: 5rem 2rem;
    background: var(--bg-primary);
    text-align: center;
}

.pd-showcase-inner {
    max-width: 600px;
    margin: 0 auto;
}

.pd-showcase img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-showcase img:hover {
    transform: scale(1.03);
}

/* How It Helps */
.pd-help {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.pd-help-inner {
    max-width: 700px;
    margin: 0 auto;
}

.pd-help h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.pd-help p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pd-help-highlight {
    padding: 1.5rem 2rem;
    background: var(--bg-primary);
    border-left: 4px solid var(--teal);
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.pd-help-highlight strong {
    color: var(--teal);
}

/* Product CTA */
.pd-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--accent-dark) 100%);
    text-align: center;
}

.pd-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.pd-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pd-cta p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(241, 233, 228, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--text-primary);
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.pd-cta-btn:hover {
    background: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Cross-sell */
.pd-cross {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.pd-cross-inner {
    max-width: 900px;
    margin: 0 auto;
}

.pd-cross h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.pd-cross-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pd-cross-card {
    background: var(--bg-primary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.pd-cross-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pd-cross-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pd-cross-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: var(--bg-secondary);
    color: var(--teal);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.pd-cross-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pd-cross-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.pd-cross-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pd-cross-price .current {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.pd-cross-price .original {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.pd-cross-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pd-cross-link:hover {
    color: var(--teal-light);
}

/* Product Detail Responsive */
@media (max-width: 700px) {
    .pd-hero {
        padding: 3rem 1.5rem;
    }

    .pd-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pd-hero-image {
        order: -1;
    }

    .pd-hero-image img {
        max-height: 300px;
    }

    .pd-features-grid {
        grid-template-columns: 1fr;
    }

    .pd-why-grid {
        grid-template-columns: 1fr;
    }

    .pd-cross-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== HOME STORY TEASER ========== */

.home-story {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2a4a 50%, var(--accent-dark) 100%);
    text-align: center;
}

.home-story-inner {
    max-width: 650px;
    margin: 0 auto;
}

.home-story h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.home-story p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(241, 233, 228, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.home-story-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(241, 233, 228, 0.45);
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-story-btn:hover {
    border-color: var(--text-light);
    background: rgba(241, 233, 228, 0.1);
}

@media (max-width: 700px) {
    .home-story {
        padding: 3rem 1.5rem;
    }
}

/* ========== LEGAL PAGES ========== */

.legal-hero {
    padding: 5rem 2rem 3rem;
    background: var(--bg-secondary);
    text-align: center;
}

.legal-hero-inner h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.legal-hero-inner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legal-content {
    padding: 4rem 2rem 5rem;
    background: var(--bg-primary);
}

.legal-inner {
    max-width: 700px;
    margin: 0 auto;
}

.legal-inner h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-inner h2:first-child {
    margin-top: 0;
}

.legal-inner p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-inner ul {
    list-style: none;
    margin-bottom: 1rem;
    padding-left: 0;
}

.legal-inner ul li {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.legal-inner ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--teal);
}

.legal-contact {
    font-weight: 500;
    color: var(--teal);
}

@media (max-width: 700px) {
    .legal-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .legal-content {
        padding: 3rem 1.5rem 4rem;
    }
}
