/* Deep Sleep Mist Landing Page – Modern Night Sky Theme */
/* Colors: Navy #0A192F, Lavender #E6E6FA, White #FFFFFF, Gold #D4AF37 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --dsm-navy: #0A192F;
    --dsm-navy-deep: #060E1A;
    --dsm-navy-darker: #050D1A;
    --dsm-lavender: #E6E6FA;
    --dsm-white: #FFFFFF;
    --dsm-gold: #D4AF37;
    --dsm-gold-dark: #B8962F;
    --dsm-gold-light: #F5E6A3;
}

/* ======================= */
/* RESET & BASE */
/* ======================= */
.dsm-landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dsm-white);
    background: var(--dsm-navy);
    overflow-x: hidden;
}

.dsm-landing-page *,
.dsm-landing-page *::before,
.dsm-landing-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.dsm-landing-page h1,
.dsm-landing-page h2,
.dsm-landing-page h3,
.dsm-landing-page h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
}

.dsm-landing-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.dsm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ======================= */
/* ANIMATIONS */
/* ======================= */
@keyframes dsm-float {
    0% { transform: translateY(0px) scale(1); opacity: 0.4; }
    100% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

@keyframes dsm-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes dsm-twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

.dsm-shimmer-text {
    background: linear-gradient(90deg, #D4AF37 0%, #F5E6A3 30%, #D4AF37 60%, #F5E6A3 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dsm-shimmer 4s linear infinite;
}

.dsm-fade-in-up {
    animation: dsm-fadeInUp 0.8s ease-out forwards;
}

/* Floating particles */
.dsm-floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.dsm-floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: dsm-float 4s ease-in-out infinite alternate;
}

/* ======================= */
/* GLASS CARD */
/* ======================= */
.dsm-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    transition: all 0.5s ease;
}

.dsm-glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.2);
}

/* ======================= */
/* LABEL CHIP */
/* ======================= */
.dsm-label-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
}

.dsm-label-chip svg {
    width: 14px;
    height: 14px;
    color: var(--dsm-gold);
}

.dsm-label-chip span {
    font-size: 0.6875rem;
    color: rgba(230, 230, 250, 0.8);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ======================= */
/* HERO SECTION */
/* ======================= */
.dsm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dsm-hero-bg {
    position: absolute;
    inset: 0;
}

.dsm-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dsm-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,25,47,0.9), rgba(10,25,47,0.7), rgba(10,25,47,0.5));
}

.dsm-hero-bg-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dsm-navy), transparent 60%, rgba(10,25,47,0.4));
}

.dsm-hero-image-glow--gold {
    background: rgba(212, 175, 55, 0.08) !important;
    filter: blur(100px) !important;
    transform: scale(1.25) !important;
}

.dsm-hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--dsm-navy), transparent);
}

.dsm-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 100vh;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .dsm-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Hero product image */
.dsm-hero-image {
    position: relative;
    order: 2;
}

@media (min-width: 1024px) {
    .dsm-hero-image {
        order: 1;
    }
}

.dsm-hero-image-inner {
    position: relative;
    max-width: 28rem;
    margin: 0 auto;
}

.dsm-hero-image-glow {
    position: absolute;
    inset: 0;
    background: rgba(230, 230, 250, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    transform: scale(1.1);
}

.dsm-hero-image-frame {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(230, 230, 250, 0.1);
}

.dsm-hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.dsm-hero-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dsm-hero-badge--top-right {
    top: -0.75rem;
    right: -0.75rem;
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dsm-hero-badge--top-right svg {
    width: 24px;
    height: 24px;
    color: var(--dsm-gold);
    margin-bottom: 0.25rem;
}

.dsm-hero-badge--top-right span {
    font-size: 0.625rem;
    color: rgba(212, 175, 55, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.dsm-hero-badge--bottom-left {
    bottom: -0.75rem;
    left: -0.75rem;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    flex-direction: row;
    gap: 0.375rem;
    border: 1px solid rgba(230, 230, 250, 0.2);
}

.dsm-hero-badge--bottom-left svg {
    width: 16px;
    height: 16px;
    color: var(--dsm-lavender);
}

.dsm-hero-badge--bottom-left span {
    font-size: 0.75rem;
    color: rgba(230, 230, 250, 0.8);
}

/* Hero text content */
.dsm-hero-content {
    order: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .dsm-hero-content {
        order: 2;
        text-align: left;
    }
}

.dsm-hero-title {
    font-size: 2.5rem;
    color: var(--dsm-white);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .dsm-hero-title { font-size: 3.25rem; }
}

@media (min-width: 1024px) {
    .dsm-hero-title { font-size: 3.75rem; }
}

@media (min-width: 1280px) {
    .dsm-hero-title { font-size: 4.5rem; }
}

.dsm-hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: rgba(230, 230, 250, 0.7);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .dsm-hero-subtitle {
        font-size: 1.25rem;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Social proof badge */
.dsm-hero-social-proof {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
}

.dsm-stars { display: flex; gap: 1px; }

.dsm-star {
    width: 1rem;
    height: 1rem;
    color: var(--dsm-gold);
    fill: var(--dsm-gold);
}

.dsm-hero-rating {
    font-weight: 600;
    color: var(--dsm-white);
}

.dsm-hero-separator {
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.2);
}

.dsm-hero-customers {
    font-size: 0.875rem;
    color: rgba(230, 230, 250, 0.6);
}

/* Offer highlight */
.dsm-hero-offer {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(212, 175, 55, 0.9);
    font-weight: 500;
    justify-content: center;
}

@media (min-width: 1024px) {
    .dsm-hero-offer { justify-content: flex-start; }
}

.dsm-hero-offer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.dsm-hero-offer-icon svg {
    width: 14px;
    height: 14px;
    color: var(--dsm-gold);
}

/* CTA */
.dsm-hero-cta-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .dsm-hero-cta-wrapper {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .dsm-hero-cta-wrapper {
        justify-content: flex-start;
    }
}

.dsm-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--dsm-gold);
    color: var(--dsm-navy);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border: none;
    cursor: pointer;
}

.dsm-btn-primary:hover {
    background: var(--dsm-gold-dark);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.dsm-btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.dsm-btn-primary:hover svg {
    transform: translateX(4px);
}

.dsm-hero-guarantee {
    font-size: 0.875rem;
    color: rgba(230, 230, 250, 0.4);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

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

/* ======================= */
/* PROBLEM SECTION */
/* ======================= */
.dsm-problem {
    position: relative;
    padding: 6rem 0 7rem;
    background: var(--dsm-navy);
}

.dsm-problem-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(230, 230, 250, 0.05);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.dsm-section-title {
    font-size: 2rem;
    text-align: center;
    color: var(--dsm-white);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .dsm-section-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    .dsm-section-title { font-size: 3rem; }
}

.dsm-section-subtitle {
    text-align: center;
    color: rgba(230, 230, 250, 0.4);
    margin-bottom: 4rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.dsm-problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .dsm-problem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.dsm-problem-card {
    text-align: center;
    padding: 2rem 2.5rem;
}

.dsm-problem-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: rgba(230, 230, 250, 0.08);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.dsm-problem-card:hover .dsm-problem-icon {
    background: rgba(212, 175, 55, 0.1);
}

.dsm-problem-icon svg {
    width: 2rem;
    height: 2rem;
    color: rgba(230, 230, 250, 0.7);
    transition: color 0.5s ease;
}

.dsm-problem-card:hover .dsm-problem-icon svg {
    color: var(--dsm-gold);
}

.dsm-problem-card h3 {
    font-size: 1.25rem;
    color: var(--dsm-white);
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .dsm-problem-card h3 { font-size: 1.5rem; }
}

.dsm-problem-card p {
    color: rgba(230, 230, 250, 0.5);
    line-height: 1.6;
}

.dsm-problem-transition {
    margin-top: 4rem;
    text-align: center;
}

.dsm-problem-transition-text {
    color: rgba(212, 175, 55, 0.8);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.dsm-problem-transition svg {
    width: 1.5rem;
    height: 1.5rem;
    color: rgba(212, 175, 55, 0.6);
    animation: dsm-bounce 1s infinite;
}

/* ======================= */
/* HOW IT WORKS */
/* ======================= */
.dsm-howitworks {
    position: relative;
    padding: 6rem 0 7rem;
    background: var(--dsm-navy-deep);
}

.dsm-howitworks-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.dsm-howitworks-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

@media (min-width: 1024px) {
    .dsm-howitworks-bg img {
        width: 50%;
        opacity: 0.4;
    }
}

.dsm-howitworks-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 14, 26, 0.4), rgba(6, 14, 26, 0.8), var(--dsm-navy-deep));
}

.dsm-howitworks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .dsm-howitworks-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.dsm-howitworks-image {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .dsm-howitworks-image {
        display: block;
    }
}

.dsm-howitworks-image-frame {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dsm-howitworks-image-frame img {
    width: 100%;
    height: auto;
}

.dsm-howitworks-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8), transparent, transparent);
}

.dsm-howitworks-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dsm-howitworks-image-badge-stars {
    display: flex;
    gap: 2px;
}

.dsm-howitworks-image-badge-stars svg {
    width: 12px;
    height: 12px;
    color: var(--dsm-gold);
    fill: var(--dsm-gold);
}

.dsm-howitworks-image-badge span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* How it works content */
.dsm-howitworks-content {
    position: relative;
    z-index: 2;
}

.dsm-howitworks-content h2 {
    font-size: 2rem;
    color: var(--dsm-white);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .dsm-howitworks-content h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    .dsm-howitworks-content h2 { font-size: 3rem; }
}

.dsm-howitworks-desc {
    color: rgba(230, 230, 250, 0.5);
    margin-bottom: 2.5rem;
    max-width: 32rem;
    line-height: 1.7;
}

.dsm-howitworks-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dsm-howitworks-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
}

.dsm-howitworks-step-num {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dsm-gold);
    font-weight: 700;
    font-size: 0.875rem;
}

.dsm-howitworks-step h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--dsm-white);
    margin-bottom: 0.25rem;
}

.dsm-howitworks-step p {
    color: rgba(230, 230, 250, 0.5);
    line-height: 1.6;
}

.dsm-howitworks-flow {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(230, 230, 250, 0.3);
    font-size: 0.875rem;
}

.dsm-howitworks-flow-label {
    color: rgba(230, 230, 250, 0.6);
}

.dsm-howitworks-flow-label--gold {
    color: rgba(212, 175, 55, 0.8);
    font-weight: 500;
}

.dsm-howitworks-flow svg {
    width: 16px;
    height: 16px;
}

/* ======================= */
/* INGREDIENTS */
/* ======================= */
.dsm-ingredients {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.dsm-ingredients-bg {
    position: absolute;
    inset: 0;
}

.dsm-ingredients-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dsm-ingredients-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(4px);
}

.dsm-ingredients-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.dsm-ingredients-header h2 {
    font-size: 1.5rem;
    color: var(--dsm-white);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .dsm-ingredients-header h2 { font-size: 2rem; }
}

.dsm-ingredients-header p {
    color: rgba(230, 230, 250, 0.4);
    font-size: 0.875rem;
}

.dsm-ingredients-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.dsm-ingredient-card {
    text-align: center;
    padding: 1.5rem;
}

.dsm-ingredient-card-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.dsm-ingredient-card:hover .dsm-ingredient-card-icon {
    background: rgba(212, 175, 55, 0.2);
}

.dsm-ingredient-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--dsm-gold);
}

.dsm-ingredient-card-text {
    font-weight: 500;
    color: var(--dsm-white);
    font-size: 0.875rem;
}

.dsm-ingredient-card-subtext {
    font-size: 0.75rem;
    color: rgba(230, 230, 250, 0.4);
    margin-top: 0.25rem;
}

/* ======================= */
/* PRICING */
/* ======================= */
.dsm-pricing {
    position: relative;
    padding: 6rem 0 7rem;
    background: var(--dsm-navy);
    scroll-margin-top: 2rem;
}

.dsm-pricing-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.dsm-pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.dsm-pricing-header p {
    color: rgba(230, 230, 250, 0.4);
    max-width: 36rem;
    margin: 0 auto;
}

.dsm-pricing-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 768px) {
    .dsm-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.dsm-pricing-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dsm-pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.dsm-pricing-card--popular {
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), var(--dsm-navy));
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
    transform: scale(1.02);
}

@media (min-width: 1024px) {
    .dsm-pricing-card--popular {
        transform: scale(1.05);
    }
}

.dsm-pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dsm-gold);
    color: var(--dsm-navy);
    font-weight: 700;
    font-size: 0.6875rem;
    padding: 0.375rem 1.25rem;
    border-radius: 9999px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.dsm-pricing-card-inner {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dsm-pricing-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(230, 230, 250, 0.5);
}

.dsm-pricing-card--popular .dsm-pricing-label {
    color: var(--dsm-gold);
}

.dsm-pricing-quantity {
    font-size: 1.5rem;
    color: var(--dsm-white);
    margin-top: 0.5rem;
}

.dsm-pricing-price-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.dsm-pricing-original-price {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: rgba(230, 230, 250, 0.3);
}

.dsm-pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dsm-white);
    font-family: 'Inter', sans-serif;
}

.dsm-pricing-price-currency {
    font-size: 1.125rem;
}

.dsm-pricing-card--popular .dsm-pricing-price {
    color: var(--dsm-gold);
}

.dsm-pricing-shipping {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    color: rgba(230, 230, 250, 0.4);
}

.dsm-pricing-savings {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--dsm-gold);
}

.dsm-pricing-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(230, 230, 250, 0.6);
    margin-bottom: 1.5rem;
}

.dsm-pricing-bonus svg {
    width: 1rem;
    height: 1rem;
    color: var(--dsm-gold);
}

.dsm-pricing-cta {
    margin-top: auto;
}

.dsm-btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--dsm-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dsm-btn-order:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dsm-pricing-card--popular .dsm-btn-order {
    background: var(--dsm-gold);
    color: var(--dsm-navy);
    border: none;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.dsm-pricing-card--popular .dsm-btn-order:hover {
    background: var(--dsm-gold-dark);
}

/* ======================= */
/* TESTIMONIALS */
/* ======================= */
.dsm-testimonials {
    position: relative;
    padding: 6rem 0 7rem;
    overflow: hidden;
}

.dsm-testimonials-bg {
    position: absolute;
    inset: 0;
}

.dsm-testimonials-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dsm-testimonials-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(4px);
}

.dsm-testimonials-title {
    font-size: 2rem;
    text-align: center;
    color: var(--dsm-white);
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .dsm-testimonials-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    .dsm-testimonials-title { font-size: 3rem; }
}

.dsm-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.dsm-testimonial-card {
    padding: 1.5rem 2rem;
}

.dsm-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.dsm-testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    color: var(--dsm-gold);
    fill: var(--dsm-gold);
}

.dsm-testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.dsm-testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dsm-gold);
    font-weight: 700;
    font-size: 0.875rem;
}

.dsm-testimonial-author-name {
    color: var(--dsm-white);
    font-weight: 500;
    font-size: 0.875rem;
}

.dsm-testimonial-author-location {
    color: rgba(230, 230, 250, 0.4);
    font-size: 0.75rem;
}

/* Mobile carousel */
.dsm-testimonials-mobile {
    display: block;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .dsm-testimonials-mobile { display: none; }
}

.dsm-testimonials-desktop {
    display: none;
}

@media (min-width: 768px) {
    .dsm-testimonials-desktop { display: grid; }
}

.dsm-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dsm-testimonials-dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dsm-testimonials-dot--active {
    background: var(--dsm-gold);
    width: 2rem;
}

/* ======================= */
/* FAQ */
/* ======================= */
.dsm-faq {
    position: relative;
    padding: 6rem 0 7rem;
    background: var(--dsm-navy);
}

.dsm-faq-separator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.dsm-faq-title {
    font-size: 2rem;
    color: var(--dsm-white);
    text-align: center;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .dsm-faq-title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    .dsm-faq-title { font-size: 3rem; }
}

.dsm-faq-list {
    max-width: 42rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dsm-faq-item {
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.dsm-faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.dsm-faq-item--open {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.dsm-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: var(--dsm-white);
}

.dsm-faq-question span {
    font-weight: 500;
    font-size: 1rem;
    color: var(--dsm-white);
}

.dsm-faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(212, 175, 55, 0.6);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.dsm-faq-item--open .dsm-faq-question svg {
    transform: rotate(180deg);
}

.dsm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.dsm-faq-item--open .dsm-faq-answer {
    max-height: 200px;
    opacity: 1;
}

.dsm-faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: rgba(230, 230, 250, 0.5);
    line-height: 1.7;
}

/* ======================= */
/* FOOTER */
/* ======================= */
.dsm-footer {
    position: relative;
    padding: 4rem 0;
    background: var(--dsm-navy-darker);
    color: var(--dsm-white);
}

.dsm-footer-separator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.dsm-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .dsm-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dsm-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.dsm-footer-logo svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--dsm-gold);
}

.dsm-footer-logo span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
}

.dsm-footer-description {
    color: rgba(230, 230, 250, 0.4);
    font-size: 0.875rem;
    line-height: 1.7;
}

.dsm-footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(230, 230, 250, 0.6);
    margin-bottom: 1rem;
}

.dsm-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.dsm-footer-links a {
    color: rgba(230, 230, 250, 0.4);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.dsm-footer-links a:hover {
    color: var(--dsm-gold);
}

.dsm-footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dsm-footer-payment-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(230, 230, 250, 0.5);
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
}

.dsm-footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    text-align: center;
    color: rgba(230, 230, 250, 0.3);
    font-size: 0.75rem;
}

/* ======================= */
/* STICKY MOBILE CTA */
/* ======================= */
.dsm-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    display: block;
}

@media (min-width: 768px) {
    .dsm-sticky-cta { display: none; }
}

.dsm-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem;
    background: var(--dsm-gold);
    color: var(--dsm-navy);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.dsm-sticky-cta a:hover {
    background: var(--dsm-gold-dark);
}
