/* ==========================================================================
   ARTIZYNT PREMIUM REDESIGN STYLESHEET
   Theme: Biophilic Clinical Glassmorphism
   ========================================================================== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary: #00b074;          /* Artizynt Vibrant Green */
    --primary-hover: #009662;
    --primary-dark: #007049;
    --primary-light: #e6f8f1;
    
    --secondary: #0a2d2a;        /* Deep Forest Teal */
    --secondary-hover: #061e1c;
    --secondary-light: #164843;
    
    --accent: #ffbc00;           /* Pure Gold Accent */
    --accent-hover: #e5a900;
    
    --bg-light: #f3faf7;         /* Soft Clinical Mint Background */
    --bg-white: #ffffff;
    --bg-dark: #0f3e39;          /* Emerald/Teal Dark Background */
    
    --text-main: #2b3937;        /* Soft Charcoal with Teal undertones */
    --text-muted: #5f7370;
    --text-white: #ffffff;
    
    --border-color: rgba(10, 45, 42, 0.08);
    --border-color-light: rgba(255, 255, 255, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 4px 12px rgba(10, 45, 42, 0.04);
    --shadow-md: 0 12px 32px rgba(10, 45, 42, 0.06);
    --shadow-lg: 0 24px 48px rgba(10, 45, 42, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(10, 45, 42, 0.06);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

.wrap {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections */
section {
    padding: 90px 0;
    position: relative;
}

.bg-white-section {
    background: var(--bg-white);
}

.section-title {
    font-size: clamp(32px, 3.5vw, 40px);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary);
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.05em;
}

.logo-box {
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Navigation / Header */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.header-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bullets {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.header-bullet-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.header-bestseller-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    background: var(--primary);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 176, 116, 0.2);
}

.header-bestseller-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 176, 116, 0.3);
}

/* Button & CTA Elements */
.mainform-body__btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 64px;
    padding: 18px 30px;
    background: var(--primary);
    color: var(--text-white) !important;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 176, 116, 0.25);
    transition: var(--transition);
    text-align: center;
    position: relative;
    z-index: 1;
}

.mainform-body__btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 176, 116, 0.35);
}

.mainform-body__btn:active {
    transform: translateY(0);
}

.mainform-body__btn.bbt {
    max-width: 440px;
    margin: 0 auto;
}

.mainform-body__btn span {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 3px;
}

.btn-yellow {
    background: var(--accent) !important;
    color: var(--secondary) !important;
    box-shadow: 0 8px 24px rgba(255, 188, 0, 0.25) !important;
}

.btn-yellow:hover {
    background: var(--accent-hover) !important;
    box-shadow: 0 12px 32px rgba(255, 188, 0, 0.35) !important;
}

/* Hero Section Redesign */
.hero-section {
    background: radial-gradient(circle at 50% 50%, rgba(243, 250, 247, 0.6) 0%, #ffffff 100%);
    padding: 60px 0 80px;
    border-bottom: 4px solid var(--primary);
    overflow: hidden;
    position: relative;
}

.hero-grid-new {
    display: grid;
    grid-template-columns: 1.25fr 1.15fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
}

/* Left Column */
.hero-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge-new {
    background-color: var(--primary);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title-new {
    font-size: clamp(24px, 2.4vw, 36px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title-new span {
    color: #067e8c;
}

.hero-bullets-new {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
}

.hero-bullets-new li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

.hero-bullets-new li .bullet-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-bullets-new li .bullet-check svg {
    display: block;
}

.hero-trust-cards-new {
    display: flex;
    gap: 12px;
    width: 100%;
}

.trust-card-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-white);
    border: 1px solid rgba(10, 45, 42, 0.08);
    border-radius: 12px;
    padding: 12px 8px;
    box-shadow: 0 4px 12px rgba(10, 45, 42, 0.02);
    min-height: 84px;
}

.trust-card-new .card-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.trust-card-new .card-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.3;
}

.trust-card-new .card-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
}

.trust-card-new .card-icon.de-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.trust-card-new .card-icon.de-flag .flag-stripe {
    width: 100%;
    flex: 1;
}

.trust-card-new .card-icon.de-flag .flag-stripe.black {
    background-color: #000000;
}

.trust-card-new .card-icon.de-flag .flag-stripe.red {
    background-color: #dd0000;
}

.trust-card-new .card-icon.de-flag .flag-stripe.gold {
    background-color: #ffcc00;
}

/* Middle Column */
.hero-col-middle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.visuals-container-new {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
}

.couple-img-new {
    width: 100%;
    max-width: 380px;
    height: auto;
    z-index: 1;
    display: block;
}

.product-showcase-new {
    position: absolute;
    bottom: 8%;
    left: 8%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-img-new {
    width: 125px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(10, 45, 42, 0.18));
}

.stars-badge-new {
    position: absolute;
    right: 5%;
    top: 35%;
    background-color: var(--bg-white);
    border: 1px solid rgba(10, 45, 42, 0.06);
    border-radius: 8px;
    padding: 6px 12px;
    box-shadow: 0 6px 20px rgba(10, 45, 42, 0.08);
    transform: rotate(-6deg);
    z-index: 4;
}

.stars-badge-new .stars-lbl {
    font-size: 8px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    display: block;
    text-align: center;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.stars-badge-new .stars-list-new {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.stars-badge-new .stars-list-new svg {
    width: 13px;
    height: 13px;
    color: var(--accent);
}

.pricing-card-new {
    width: 100%;
    max-width: 350px;
    background-color: #2b6167;
    border-radius: 16px;
    overflow: hidden;
    z-index: 4;
    box-shadow: 0 12px 30px rgba(10, 45, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: -15px;
}

.pricing-header-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
}

.pricing-item-new {
    display: flex;
    flex-direction: column;
}

.pricing-item-new .price-lbl-new {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pricing-item-new .price-val-new {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
}

.pricing-item-new .price-val-new.uvp {
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-item-new .price-val-new.special {
    color: var(--accent);
    font-size: 26px;
}

.price-arrow-new {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.pricing-footer-new {
    background-color: var(--primary);
    color: var(--text-white);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    padding: 8px;
    letter-spacing: 0.06em;
}

.pointing-arrow-new {
    position: absolute;
    right: -42px;
    top: 42%;
    z-index: 5;
    pointer-events: none;
}

.pointing-arrow-new svg {
    width: 65px;
    height: 65px;
}

/* Right Column (Form Card) */
.hero-col-right {
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-wrapper-new {
    width: 100%;
    max-width: 390px;
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(10, 45, 42, 0.08);
    border: 2px solid rgba(6, 126, 140, 0.15);
    display: flex;
    flex-direction: column;
}

.form-card-new {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-title-new {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    text-align: center;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-title-new span {
    color: #067e8c;
}

.form-subtext-new {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

.form-subtext-new span {
    color: var(--primary);
    font-weight: 800;
}

.mainform-body-new {
    width: 100%;
}

.form-fields-wrapper-new {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-input-wrapper-new {
    position: relative;
    width: 100%;
}

.mainform-body__field-new {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1.5px solid rgba(10, 45, 42, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    background-color: #fafdfc;
    transition: var(--transition);
}

.mainform-body__field-new::placeholder {
    color: #a0b0ad;
}

.mainform-body__field-new:focus {
    outline: none;
    border-color: #067e8c;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(6, 126, 140, 0.08);
}

.mainform-body__btn-new {
    width: 100%;
    height: 56px;
    background-color: #e05326;
    color: var(--text-white);
    border: none;
    border-radius: 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(224, 83, 38, 0.22);
    transition: var(--transition);
    text-align: center;
    margin-top: 6px;
}

.mainform-body__btn-new:hover {
    background-color: #cc451b;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(224, 83, 38, 0.32);
}

.mainform-body__btn-new:active {
    transform: translateY(1px);
}

.form-trust-footer-new {
    display: flex;
    justify-content: space-between;
    border-top: 1.5px solid rgba(10, 45, 42, 0.06);
    padding-top: 20px;
    margin-top: 24px;
    gap: 16px;
}

.form-trust-item-new {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 50%;
}

.form-trust-item-new svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.form-trust-item-new span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.35;
}

.form-trust-item-new span strong {
    color: var(--secondary);
    font-weight: 700;
}

/* Responsiveness for new Hero UI */
@media screen and (max-width: 1200px) {
    .hero-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-col-right {
        grid-column: span 2;
        margin-top: 10px;
    }
    
    .pointing-arrow-new {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .hero-section {
        padding: 40px 0 50px;
    }
    
    .hero-col-left,
    .hero-col-middle,
    .hero-col-right,
    .form-wrapper-new {
        display: contents;
    }

    .hero-grid-new {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        padding: 0 16px;
    }

    /* Order definitions to match mobile mockup exactly */
    .hero-badge-new {
        order: 1;
        margin-bottom: 4px;
        align-self: flex-start;
    }

    .hero-title-new {
        order: 2;
        font-size: 28px;
        text-align: left;
        align-self: flex-start;
        width: 100%;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .visuals-container-new {
        order: 4;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 0;
        margin-bottom: 8px;
        position: relative;
    }

    .couple-img-new {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .product-showcase-new {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .product-img-new {
        width: 110px;
        height: auto;
    }

    .stars-badge-new {
        order: 5;
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        background-color: #ffffff;
        border: 1px solid rgba(10, 45, 42, 0.08);
        border-radius: 12px;
        padding: 14px;
        box-shadow: 0 4px 15px rgba(10, 45, 42, 0.04);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 4px;
    }

    .stars-badge-new .stars-lbl {
        font-size: 12px;
        font-weight: 700;
        color: var(--secondary);
        letter-spacing: 0.06em;
        margin-bottom: 0;
    }

    .stars-badge-new .stars-list-new {
        display: flex;
        gap: 4px;
    }

    .stars-badge-new .stars-list-new svg {
        width: 20px;
        height: 20px;
    }

    .pricing-card-new {
        order: 6;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        border-radius: 12px;
    }

    .pricing-header-new {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .pricing-item-new .price-lbl-new {
        font-size: 9px;
    }

    .pricing-item-new .price-val-new {
        font-size: 26px;
    }

    .pricing-item-new .price-val-new.special {
        font-size: 30px;
    }

    .price-arrow-new {
        font-size: 24px;
    }

    .form-card-new {
        order: 3;
        width: 100%;
        max-width: 100%;
        background-color: var(--bg-white);
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 8px 30px rgba(10, 45, 42, 0.06);
        border: 2px solid rgba(6, 126, 140, 0.1);
        display: flex;
        flex-direction: column;
        margin-top: 4px;
    }

    .form-title-new {
        font-size: 19px;
    }

    .form-subtext-new {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .hero-trust-cards-new {
        order: 7;
        display: flex;
        flex-direction: row;
        gap: 12px;
        width: 100%;
        margin-top: 8px;
    }

    .trust-card-new {
        flex: 1;
        min-height: 80px;
        padding: 10px;
        border-radius: 12px;
        background-color: var(--bg-white);
        border: 1px solid rgba(10, 45, 42, 0.08);
        box-shadow: 0 4px 12px rgba(10, 45, 42, 0.02);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .trust-card-new .card-val {
        font-size: 22px;
    }

    .trust-card-new .card-lbl {
        font-size: 10px;
        margin-top: 2px;
    }

    .form-trust-footer-new {
        order: 8;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border-top: none;
        padding-top: 0;
        margin-top: 8px;
        gap: 12px;
        width: 100%;
    }

    .form-trust-item-new {
        width: 50%;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .form-trust-item-new span {
        font-size: 11px;
    }

    .hero-bullets-new {
        display: none !important;
    }
}

/* Category grid section */
.categories-section {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

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

.category-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 176, 116, 0.2);
}

.category-img-wrap {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1.1;
}

.category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img-wrap img {
    transform: scale(1.05);
}

.category-pill {
    margin: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--secondary);
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.category-pill svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Clinical Info Section (Sec 4) */
.info-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.info-title {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.info-desc {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 24px;
}

.info-desc p {
    margin-bottom: 14px;
}

.info-checklist {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    width: 100%;
}

.info-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
}

.info-check-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.info-visuals {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.info-visuals-bg {
    width: 100%;
    aspect-ratio: 1.25;
}

.info-visuals-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-product-overlay {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(10, 45, 42, 0.15));
}

/* Promo Section (Sec 5) */
.promo-section {
    padding: 60px 0;
}

.promo-banner {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.promo-left {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.promo-left img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    display: block;
}

.promo-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-white);
}

.promo-badge {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.promo-title {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.promo-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.promo-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.promo-bullet-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.promo-cta-box {
    width: 100%;
    position: relative;
}

.promo-percent-badge {
    position: absolute;
    top: -40px;
    right: -20px;
    background: var(--accent);
    color: var(--secondary);
    width: 84px;
    height: 84px;
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    transform: rotate(12deg);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--bg-dark);
}

.promo-percent-badge span:first-child {
    font-size: 20px;
}

.promo-percent-badge span:last-child {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Comparison Section (Sec 6) */
.comparison-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 54px;
    align-items: center;
}

.comparison-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.comparison-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.comparison-item:hover {
    background: var(--bg-white);
    border-color: rgba(0, 176, 116, 0.15);
    box-shadow: var(--shadow-md);
}

.comparison-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.comparison-item-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.comparison-item-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* Love section (Sec 7) */
.love-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.love-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.love-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 176, 116, 0.15);
}

.love-card-img {
    aspect-ratio: 1.2;
    overflow: hidden;
}

.love-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.love-card-content {
    padding: 24px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.love-card-icon {
    position: absolute;
    top: -24px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 176, 116, 0.2);
    border: 4px solid var(--bg-white);
}

.love-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 10px;
    margin-bottom: 10px;
}

.love-card-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.reviews-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -36px;
    margin-bottom: 48px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-light);
    gap: 8px;
}

.reviews-subtitle-stars {
    display: flex;
    gap: 4px;
}

.reviews-subtitle-stars svg {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

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

.review-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.review-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 176, 116, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.review-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars svg {
    color: var(--accent);
    width: 13px;
    height: 13px;
}

.review-social-icon {
    opacity: 0.2;
}

.review-body {
    padding: 20px;
    flex-grow: 1;
    font-size: 14.5px;
    color: var(--text-main);
}

.review-attachment {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.review-attachment-placeholder {
    height: 190px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--secondary);
    background: linear-gradient(135deg, rgba(0, 176, 116, 0.08), rgba(255, 188, 0, 0.14));
    border-top: 1px solid var(--border-color);
    font-family: var(--font-heading);
    text-align: center;
}

.review-attachment-placeholder span {
    font-size: 13px;
    font-weight: 700;
}

.review-attachment-placeholder strong {
    font-size: 28px;
    color: var(--primary);
}

.form-advisor-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 28px;
    border: 1px solid var(--border-color);
}

.form-advisor-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.form-advisor-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--secondary-light);
    line-height: 1.4;
}

.form-fields-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-group label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    pointer-events: none;
}

.mainform-body__field {
    width: 100%;
    height: 60px;
    padding: 10px 20px 10px 52px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-main);
    background: var(--bg-white);
    transition: var(--transition);
}

.mainform-body__field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 176, 116, 0.1);
}

.form-guarantee-text {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 12px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 176, 116, 0.15);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.faq-trigger svg {
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-trigger.active {
    background: var(--primary-light);
}

.faq-trigger.active svg {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 28px;
}

.faq-content.active {
    max-height: 500px; /* arbitrary high value for smooth auto transition */
    padding: 20px 28px 28px;
    border-top: 1px solid var(--border-color);
}

.faq-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-main);
}

.faq-cta {
    display: flex;
    justify-content: center;
}

/* Footer Section */
.site-footer {
    background: var(--secondary);
    color: var(--text-white);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 700;
}

.footer-badge-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

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

.footer-copyright {
    font-size: 13.5px;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
}

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

.footer-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.footer-legal-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.footer-legal-card h3 {
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.footer-legal-card p {
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.66);
}

/* Phone input verification alerts styling (IMask and German phone JS) */
.phone-input--error {
    border-color: #ff4a4a !important;
    background-color: #fffbfb !important;
}

.phone-input__error-message {
    color: #ff4a4a;
    font-size: 13px;
    font-weight: 700;
    margin-top: 6px;
    display: block;
    padding-left: 12px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media screen and (max-width: 1100px) {
    section {
        padding: 70px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .hero-visuals {
        margin: 0 auto;
        width: 100%;
        height: 460px;
        min-height: 0;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }
    
    .hero-visuals {
        max-width: 480px;
    }
    
    .hero-couple {
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
        width: auto;
    }
    
    .hero-podium-showcase {
        width: 230px;
        height: 230px;
        bottom: 25px;
        left: 2%;
    }
    
    .hero-product-img {
        width: 210px;
        bottom: 50px;
    }
    
    .hero-price-badge {
        top: auto;
        bottom: 110px;
        right: -5px;
        padding: 14px 20px;
    }
    
    .hero-rating-floating {
        width: 180px;
        padding: 8px 12px;
        bottom: -12px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid > *:nth-child(4),
    .categories-grid > *:nth-child(5) {
        grid-column: span 1;
    }
    
    .info-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-content {
        align-items: center;
        text-align: center;
    }
    
    .info-checklist {
        justify-content: center;
    }
    
    .info-visuals {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .promo-banner {
        grid-template-columns: 1fr;
    }
    
    .promo-left {
        justify-content: center;
        border-bottom: 1px solid var(--border-color-light);
        padding-top: 40px;
    }
    
    .promo-left img {
        max-height: 360px;
    }
    
    .promo-right {
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .promo-bullets {
        align-items: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-grid h2 {
        text-align: center;
    }
    
    .love-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    
}

@media screen and (max-width: 992px) {
    .header-bullets {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid > *:nth-child(5) {
        grid-column: span 2;
    }
    
    .love-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .comparison-list {
        grid-template-columns: 1fr;
    }
    
    .footer-badges {
        justify-content: center;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 520px) {
    section {
        padding: 50px 0;
    }
    
    .wrap {
        padding: 0 16px;
    }
    
    .site-header {
        padding: 12px 0;
    }
    
    .logo-container {
        font-size: 20px;
    }
    
    .header-bestseller-btn {
        padding: 8px 16px;
        font-size: 11px;
        min-height: 44px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .hero-visuals {
        height: 320px;
        min-height: 0;
        max-width: 320px;
        margin: 0 auto;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }
    
    .hero-couple {
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
        width: auto;
    }
    
    .hero-podium-showcase {
        width: 160px;
        height: 160px;
        bottom: 15px;
        left: 0;
    }
    
    .hero-product-img {
        width: 145px;
        bottom: 35px;
    }
    
    .hero-price-badge {
        top: auto;
        right: 0;
        bottom: 84px;
        padding: 10px 14px;
        z-index: 5;
    }
    
    .hero-price-nur {
        font-size: 20px;
    }
    
    .hero-rating-floating {
        width: 130px;
        padding: 6px 10px;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .categories-grid > * {
        grid-column: span 1 !important;
    }

    .categories-grid > *:nth-child(5) {
        grid-column: span 2 !important;
    }

    .category-img-wrap {
        aspect-ratio: 1.15;
    }

    .category-pill {
        margin: 10px;
        padding: 9px 10px;
        font-size: 12px;
        gap: 6px;
    }
    
    .info-checklist {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .promo-right {
        padding: 30px 16px;
    }
    
    .promo-percent-badge {
        right: 8px;
        top: -22px;
        width: 70px;
        height: 70px;
    }
    
    .promo-percent-badge span:first-child {
        font-size: 16px;
    }
    
    .hero-form-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .hero-form-title {
        font-size: 20px;
    }

    .mainform-body__btn {
        font-size: 18px;
        padding: 16px 18px;
    }
    
    .faq-trigger {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .faq-content {
        padding: 0 20px;
    }
    
    .faq-content.active {
        padding: 14px 20px 20px;
    }
    
    .footer-legal-grid {
        grid-template-columns: 1fr;
    }
}
