:root {
    --primary-color: #3b82f6;
    /* Blue */
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --accent-color: #8b5cf6;
    /* Purple/Violet */
    --accent-light: #a78bfa;
    --mint-green: #e0e7ff;
    /* Soft purple-blue tint */
    --text-main: #1e1b4b;
    /* Dark indigo text */
    --text-muted: #4f46e5;
    /* Indigo accent text */
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #faf5ff;
    /* Very soft purple tint background */
    --bg-medical: #f8fafc;
    /* Very soft blue-grey tint */
    --danger: #ef4444;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --border-radius: 16px;
    --border-radius-sm: 8px;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-medical);
    overflow-x: hidden;
    padding-top: 80px;
    /* Offset for sticky navbar */
}

/* NAVBAR STYLING */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    text-decoration: none;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.btn-nav:hover {
    background-color: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(16, 185, 129, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Section Anchor Spacing Offset */
section {
    scroll-margin-top: 100px;
}


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

.text-center {
    text-align: center;
}

.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white p {
    color: #fff;
}

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

.bg-gradient-teal {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(124, 92, 237, 0.9) 100%), url('../images/bg_abstract.webp') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}

/* Background image overlay sections (alternating background image sections) */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    /* adjusted padding for navbar offset */
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(250, 245, 255, 0.9) 100%), url('../images/bg_abstract.webp') no-repeat center center / cover;
    overflow: hidden;
}

.purpose {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(245, 243, 255, 0.75) 100%), url('../images/bg_molecules.webp') no-repeat center center / cover;
}

.ingredients {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.75) 0%, rgba(250, 245, 255, 0.75) 100%), url('../images/bg_spheres.webp') no-repeat center center / cover;
}

.medical-backing {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(245, 243, 255, 0.75) 100%), url('../images/bg_medical_hex.webp') no-repeat center center / cover;
}

.testimonials {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(250, 245, 255, 0.8) 100%), url('../images/bg_reviews.webp') no-repeat center center / cover;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: block;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
    animation: pulse-btn 2s infinite;
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

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

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

@keyframes pulse-btn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.align-center {
    align-items: center;
}

/* 1. Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background-image: url('../images/bg_abstract_clean.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1e1b4b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 30px;
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--bg-white);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(59, 132, 246, 0.3);
    flex-shrink: 0;
}

/* Product Image */
.product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.18));
    transition: transform 0.5s ease;
}

.product-image:hover {
    transform: scale(1.03);
}

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

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Form */

.form-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--danger);
}

.countdown {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    /* background: var(--bg-light); */
    padding: 10px;
    border-radius: var(--border-radius-sm);
    /* margin-bottom: 20px; */
    letter-spacing: 2px;
}

.pricing {
    text-align: center;
    margin-bottom: 25px;
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.price-current {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.micro-copy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.badge svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

/* 2. What is */
.relative-container {
    position: relative;
}

.floating-product-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 45%;
    max-width: 160px;
    z-index: 5;
    animation: floating 6s ease-in-out infinite alternate;
}

.floating-product-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

.what-is-pillars {
    list-style: none;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.what-is-pillars li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-main);
}

.pillar-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--accent-color);
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.16);
    border-radius: 8px;
    padding: 5px;
    margin-top: 2px;
}

/* What-is silhouettes */
.whatis-silhouette-left,
.whatis-silhouette-right {
    position: absolute;
    bottom: -20px;
    height: 85%;
    /* Grab at least 50% of the height, often 85% looks great with overflow:hidden */
    width: auto;
    opacity: 0.05 !important;
    /* Make images barely noticeable */
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.whatis-silhouette-left {
    left: -5%;
}

.whatis-silhouette-right {
    right: -5%;
}

@media (min-width: 769px) {
    .text-left-desktop {
        text-align: left;
    }

    .text-left-desktop::after {
        margin: 10px 0 0;
    }
}

@media (max-width: 768px) {
    .floating-product-overlay {
        bottom: -10px;
        right: -10px;
        width: 35%;
        max-width: 100px;
    }
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lifestyle-img:hover {
    transform: translateY(-5px);
}

.what-is p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* 3. Purpose */
.purpose-grid .card {
    text-align: center;
    padding: 40px 30px;
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(59, 132, 246, 0.12), rgba(59, 132, 246, 0.04));
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px rgba(59, 132, 246, 0.18), 0 8px 16px rgba(59, 132, 246, 0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.icon-wrapper i,
.icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.2px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

/* Card specific alternating styles for visual interest */
.card:nth-child(even) .icon-wrapper {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.04));
    color: var(--accent-color);
    box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.18), 0 8px 16px rgba(139, 92, 246, 0.04);
}

.card:nth-child(even) .icon-wrapper i,
.card:nth-child(even) .icon-wrapper svg {
    color: var(--accent-color);
}

/* Hover effects */
.card:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(59, 132, 246, 0.25);
}

.card:hover .icon-wrapper i,
.card:hover .icon-wrapper svg {
    color: var(--bg-white);
}

.card:nth-child(even):hover .icon-wrapper {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.25);
}

.card:nth-child(even):hover .icon-wrapper i,
.card:nth-child(even):hover .icon-wrapper svg {
    color: var(--bg-white);
}

.purpose-grid h3 {
    margin-bottom: 15px;
}

/* 4. How it works */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.1) 100%);
    background-size: 200% auto;
    z-index: 1;
    animation: timeline-flow 3s linear infinite;
}

@keyframes timeline-flow {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-number {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.85);
    transition: transform 0.3s ease;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.timeline-step:nth-child(2) .step-number::before {
    animation-delay: 0.6s;
}

.timeline-step:nth-child(3) .step-number::before {
    animation-delay: 1.2s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
}

.timeline-step h3 {
    color: white;
    margin-bottom: 10px;
}

.timeline-step p {
    color: rgba(255, 255, 255, 0.9);
}

/* 5. Ingredients Section Redesign */
.ingredients {
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #000000;
    max-width: 600px;
    margin: -1.5rem auto 3rem;
}

.text-black-important {
    color: #000000 !important;
}

.ingredients-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 340px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 2rem;
}

/* SVG Connectors */
.connectors-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connector-line {
    fill: none;
    stroke: rgba(99, 102, 241, 0.12);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 6 12;
    transition: stroke 0.4s ease, stroke-width 0.4s ease, stroke-dasharray 0.4s ease;
}

/* Active styles for connectors */
.connector-line.active {
    stroke-dasharray: 8 8;
    stroke-width: 4;
    animation: dash-flow 1.2s linear infinite;
}

#path-callisia.active {
    stroke: var(--primary-color);
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.8));
}

#path-cayenne.active {
    stroke: var(--accent-color);
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.8));
}

#path-pine.active {
    stroke: var(--primary-light);
    filter: drop-shadow(0 0 6px rgba(96, 165, 250, 0.8));
}

#path-herbs.active {
    stroke: var(--accent-light);
    filter: drop-shadow(0 0 6px rgba(167, 139, 250, 0.8));
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: -40;
    }
}

/* Columns */
.ingredients-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 2;
}

/* Premium Cards */
.ingredient-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.ingredient-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    pointer-events: none;
}

.ingredient-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
}

.ingredient-card-premium:hover[data-ingredient="callisia"]::before {
    border-color: var(--primary-color);
}

.ingredient-card-premium:hover[data-ingredient="cayenne"]::before {
    border-color: var(--accent-color);
}

.ingredient-card-premium:hover[data-ingredient="pine"]::before {
    border-color: var(--primary-light);
}

.ingredient-card-premium:hover[data-ingredient="herbs"]::before {
    border-color: var(--accent-light);
}

/* Badges */
.ingredient-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-dark);
}

.badge-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-color);
}

/* Header inside card */
.ingredient-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ingredient-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ingredient-card-premium:hover .ingredient-avatar {
    transform: scale(1.1) rotate(5deg);
}

.ingredient-card-premium h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.ingredient-card-premium p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Center Image & Glow */
.ingredients-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-glow-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-center-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.product-center-img.active {
    transform: scale(1.06);
}

/* Glowing Background */
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0) 70%);
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.glow-bg.active {
    transform: translate(-50%, -50%) scale(1.25);
}

.glow-bg.glow-callisia {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(59, 130, 246, 0) 70%);
}

.glow-bg.glow-cayenne {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(139, 92, 246, 0) 70%);
}

.glow-bg.glow-pine {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.35) 0%, rgba(96, 165, 250, 0) 70%);
}

.glow-bg.glow-herbs {
    background: radial-gradient(circle, rgba(167, 139, 250, 0.35) 0%, rgba(167, 139, 250, 0) 70%);
}

/* Responsive adjustment for showcase */
@media (max-width: 991px) {
    .ingredients-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .connectors-svg {
        display: none;
    }

    .ingredients-center {
        grid-row: 1;
        /* Move product to top */
        margin-bottom: 20px;
    }

    .ingredients-col {
        gap: 20px;
    }

    .glow-bg {
        width: 260px;
        height: 260px;
    }
}

/* 6. Benefits */
.benefits-silhouette {
    position: absolute;
    bottom: -50px;
    right: -20px;
    width: 500px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    animation: breathing-silhouette 8s ease-in-out infinite;
    transform-origin: bottom right;
}

.benefits-silhouette-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 420px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    animation: breathing-silhouette-left 9s ease-in-out infinite reverse;
    transform-origin: bottom left;
}

@keyframes breathing-silhouette {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.04;
    }

    50% {
        transform: scale(1.08) rotate(-2deg);
        opacity: 0.08;
    }
}

@keyframes breathing-silhouette-left {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.04;
    }

    50% {
        transform: scale(1.06) rotate(2deg);
        opacity: 0.07;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.05);
    border: 1.5px solid rgba(139, 92, 246, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}

.benefit-num {
    position: relative;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    flex-shrink: 0;
    border: 1px solid rgba(139, 92, 246, 0.15);
    z-index: 1;
}

.benefit-num::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 22px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    z-index: -1;
    animation: benefit-pulse 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.benefit-item:nth-child(2) .benefit-num::before {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(3) .benefit-num::before {
    animation-delay: 0.8s;
}

.benefit-item:nth-child(4) .benefit-num::before {
    animation-delay: 1.2s;
}

.benefit-item:nth-child(5) .benefit-num::before {
    animation-delay: 1.6s;
}

.benefit-item:nth-child(6) .benefit-num::before {
    animation-delay: 2.0s;
}

@keyframes benefit-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.benefit-content h3 {
    margin-bottom: 10px;
}

/* 7. Medical */
.specialist-img {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.specialist-img:hover {
    transform: translateY(-5px);
}

.quote-box {
    position: relative;
    padding: 40px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.specialist-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.specialist-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 8. How to apply Two-Column Layout */
.how-to-apply-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.steps-vertical-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-vertical {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.step-vertical::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 1px rgba(139, 92, 246, 0.08);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.02));
    -webkit-background-clip: text;
    background-clip: text;
    z-index: -1;
    line-height: 1;
    pointer-events: none;
    transition: transform 0.5s ease, color 0.5s ease;
}

.step-vertical:hover::before {
    transform: scale(1.05) translateY(-5px);
}

.step-vertical:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.15);
}

.step-vertical-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 132, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.step-vertical-icon i,
.step-vertical-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}

.step-vertical-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.step-vertical-content p {
    font-size: 0.95rem;
    color: rgba(31, 41, 55, 0.7);
    line-height: 1.5;
}

.how-to-apply-product {
    display: flex;
    justify-content: center;
    align-items: center;
}

.apply-product-glow-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 280px;
}

.apply-glow-bg {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(10px);
}

.apply-product-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
    transition: transform 0.5s ease;
}

.apply-product-img:hover {
    transform: scale(1.05) rotate(2deg);
}

@media (max-width: 991px) {
    .how-to-apply-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .how-to-apply-product {
        order: -1;
    }
}

/* 9. Testimonials */
.review-card {
    padding: 30px;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
    display: block;
}

.user-info strong {
    display: block;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.verified {
    color: var(--primary-color);
    margin-left: 5px;
    font-weight: 500;
}

/* 10. How to order (Horizontal Layout) */
.order-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.order-card {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
    display: flex;
    flex-direction: column;
}

.order-card::before {
    content: attr(data-step);
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-size: 8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 1px rgba(139, 92, 246, 0.08);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.02));
    -webkit-background-clip: text;
    background-clip: text;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    transition: transform 0.5s ease, color 0.5s ease;
}

.order-card:hover::before {
    transform: scale(1.05) translateY(-5px);
}

.order-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}

.order-card-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.order-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.order-card:hover .order-card-img {
    transform: scale(1.08);
}

.order-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.order-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.order-card-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .order-horizontal {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* 11. Closing Hero */
.light-form {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
}

/* 12. FAQ */
.faq-container {
    max-width: 800px;
}

.accordion-item {
    margin-bottom: 15px;
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-muted);
}

/* 13. Footer */
.footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text-main);
    padding: 60px 0 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

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

.disclaimers {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.8;
    color: #4b5563;
}

.disclaimers p {
    margin-bottom: 15px;
}

.copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-form-container {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    /* Navbar Mobile */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .navbar.scrolled .nav-links {
        top: 70px;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
    }

    /* Hamburger Active State */
    .menu-toggle.active .hamburger {
        background-color: transparent;
    }

    .menu-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .menu-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .hero-container,
    .two-col,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline::before {
        left: 50px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .timeline-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .how-to-apply-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Packages Alert Styling */
.packages-left {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 15px 0;
    font-weight: 600;
}

.packages-left .highlight-count {
    color: var(--danger);
    font-size: 1.1rem;
    font-weight: 800;
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* Purchase Notification Popup */
.purchase-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-xl);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
    transform: translateY(150px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    max-width: 320px;
}

.purchase-modal.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.modal-prod-img {
    width: 45px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.modal-content-inner h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.modal-content-inner p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    line-height: 1.2;
}

.modal-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .purchase-modal {
        left: 50%;
        transform: translate(-50%, 150px);
        width: calc(100% - 40px);
        bottom: 15px;
    }

    .purchase-modal.show {
        transform: translate(-50%, 0);
    }
}

/* --- Custom Form Layout (Glucomax Style) --- */
.hero-form-dark {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(139, 92, 246, 0.35) !important;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.18), 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    position: relative;
    overflow: hidden;
    padding: 28px 26px 22px !important;
    border-radius: var(--border-radius);
}

.hero-form-dark::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.form-dark-title {
    text-align: center;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}

/* Countdown */
.countdown-dark {
    display: flex;
    gap: 8px !important;
    justify-content: center;
    align-items: center;
}

.time-block-dark {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(139, 92, 246, 0.16);
    border-radius: 10px !important;
    padding: 10px 14px !important;
    min-width: 58px;
    position: relative;
}

.time-block-dark span {
    font-family: 'Courier New', monospace;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 2px;
    display: block;
    text-align: center;
}

.time-block-dark small {
    color: var(--text-light) !important;
    font-size: 0.55rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    margin-top: 4px !important;
}

.countdown-sep {
    font-size: 1.6rem;
    font-weight: 800;
    color: rgba(31, 41, 55, 0.35);
    line-height: 1;
    align-self: center;
    padding-bottom: 18px;
}

/* Price block */
.price-block-dark {
    text-align: center;
    margin: 18px 0;
    padding: 14px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.16);
    border-bottom: 1px solid rgba(139, 92, 246, 0.16);
}

.price-label-dark {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(31, 41, 55, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.price-sub-dark {
    font-size: 0.8rem;
    color: rgba(31, 41, 55, 0.6);
    margin-bottom: 8px;
}

.new-price-dark {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
    margin-bottom: 4px;
}

.old-price-dark {
    font-size: 1rem;
    color: rgba(31, 41, 55, 0.45);
    text-decoration: line-through;
}

/* Form inputs */
.lead-form-dark {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.input-dark {
    width: 100%;
    padding: 14px 16px;
    background: white;
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.2s;
}

.input-dark::placeholder {
    color: #9CA3AF;
}

.input-dark:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
}

.input-dark:not(:placeholder-shown):user-invalid {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.error-dark {
    display: none;
    color: var(--danger);
    font-size: 0.78rem;
    margin-top: -4px;
}

.input-dark:not(:placeholder-shown):user-invalid~.error-dark {
    display: block;
}

/* CTA button */
.btn-ordena {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--accent-color);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
    text-transform: uppercase;
    margin-top: 4px;
}

.btn-ordena i,
.btn-ordena svg {
    width: 18px;
    height: 18px;
    stroke-width: 3px;
    transition: transform 0.3s ease;
}

.btn-ordena:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(139, 92, 246, 0.55);
}

.btn-ordena:hover i,
.btn-ordena:hover svg {
    transform: translateX(4px);
}

.btn-ordena:active {
    transform: translateY(0);
}

/* Callback text */
.form-callback-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0 8px;
}

/* Trust badges */
.trust-badges-dark {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(139, 92, 246, 0.16);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(31, 41, 55, 0.75);
    cursor: pointer;
}

.trust-badge i,
.trust-badge svg {
    flex-shrink: 0;
    color: var(--primary-light);
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 5px rgba(96, 165, 250, 0.2));
    transition: transform 0.3s ease, color 0.3s ease;
}

.trust-badge span {
    font-size: 0.65rem;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.trust-badge:hover i,
.trust-badge:hover svg {
    transform: scale(1.15) translateY(-2px);
    color: var(--accent-light);
}

.trust-badge:hover span {
    color: var(--accent-light);
}

.hero-form-box {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

/* 50% Discount Badge in Hero (CSS version) */
.hero-discount-badge-css {
    position: absolute;
    top: -15px;
    right: -10px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: 3px solid #ffffff;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: pulse-badge 3s infinite ease-in-out;
    transform-origin: center;
    color: #ffffff;
    font-family: var(--font-heading);
    text-align: center;
    pointer-events: none;
}

.hero-discount-badge-css .discount-pct {
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
}

.hero-discount-badge-css .discount-text {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-top: 1px;
    text-transform: uppercase;
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06) rotate(3deg);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-discount-badge-css {
        width: 80px;
        height: 80px;
        top: -10px;
        right: 15px;
    }

    .hero-discount-badge-css .discount-pct {
        font-size: 1.4rem;
    }

    .hero-discount-badge-css .discount-text {
        font-size: 0.5rem;
    }
}