html,
body {
    margin: 0;
    padding: 0;
}

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

.aimc-root {
    scroll-behavior: smooth;
}

.aimc-root {
    --bg-primary: #0a0f0f;
    --bg-secondary: #0d1515;
    --bg-tertiary: #102020;
    --bg-card: #0f2f2f;
    --bg-card-light: #143d3d;
    --text-primary: #ffffff;
    --text-secondary: #D1FAE5;
    --text-tertiary: #7a9090;
    --primary: #9EFEC2;
    --primary-dark: #059669;
    --accent: #FCF4B9;
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    --destructive: #ef4444;
    --spacing: 1rem;
    --radius: 8px;
    --radius-lg: 12px;
}

.aimc-root {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    position: relative;
}

.aimc-root::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 15%, rgba(16, 185, 129, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 20% 45%, rgba(16, 185, 129, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 55%, rgba(16, 185, 129, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 50% 85%, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

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

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

@keyframes float {

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blurIn {
    from {
        opacity: 0;
        filter: blur(10px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

.aimc-root .aimc-animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.aimc-root .aimc-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.aimc-root .aimc-glass-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    isolation: isolate;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.aimc-root .aimc-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(90deg,
            rgba(16, 185, 129, 0.2),
            rgba(16, 185, 129, 0.4),
            rgba(16, 185, 129, 0.1),
            rgba(16, 185, 129, 0.4),
            rgba(16, 185, 129, 0.2));
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGradient 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    transition: all 0.4s ease;
}

.aimc-root .aimc-glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(16, 185, 129, 0.08) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.aimc-root .aimc-glass-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(16, 185, 129, 0.1),
        0 0 30px rgba(16, 185, 129, 0.15);
}

.aimc-root .aimc-glass-card:hover::before {
    background: linear-gradient(90deg,
            rgba(16, 185, 129, 0.3),
            rgba(16, 185, 129, 0.6),
            rgba(16, 185, 129, 0.2),
            rgba(16, 185, 129, 0.6),
            rgba(16, 185, 129, 0.3));
    background-size: 200% 100%;
}

.aimc-root .aimc-glass-card:hover::after {
    opacity: 0.7;
}

.aimc-root .aimc-glass-card:active {
    transform: translateY(-2px) scale(1.005);
    transition: all 0.15s ease;
}

.aimc-root .aimc-btn {
    padding: 0.95rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    text-decoration: none;
    line-height: 1.4rem;
}

.aimc-root .aimc-btn-primary {
    background: linear-gradient(135deg, #8CDBB4 0%, #FEEF7C 50%, #8CDBB4 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #134E4A;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aimc-root .aimc-btn-primary:hover {
    background-position: 50% 0%;
    transform: translateY(-1px) scale(1.01);
    box-shadow:
        0 4px 12px rgba(16, 185, 129, 0.2),
        0 0 0 1px rgba(16, 185, 129, 0.3);
}

.aimc-root .aimc-btn-primary:active {
    transform: translateY(0) scale(1);
    transition: all 0.15s ease;
}

.aimc-root .aimc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.aimc-root .aimc-gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aimc-root .aimc-hero {
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    z-index: 1;
}

.aimc-root .aimc-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(10, 15, 15, 0.4), rgb(10 16 16)), url(https://assets.reviews.io/webflow/custom-pages/reviews/ai-made-clearer/img/img-hero-bg.webp) center / cover no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

.aimc-root .aimc-hero-header {
    position: relative;
    z-index: 20;
    padding: 2rem clamp(1rem, 5vw, 4rem);
}

.aimc-root .aimc-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.aimc-root .aimc-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 30px;
}

@media screen and (max-width:640px) {
    .aimc-root .aimc-logo img {
        height: 50px
    }
}

.aimc-root .aimc-hero-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    padding: 8rem 1rem 0;
}

.aimc-root .aimc-hero-content {
    max-width: 860px;
    /* 650px; */
    text-align: left;
}

.aimc-root h1 {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.aimc-root h2 {
    color: #ffffff !important;
}

.aimc-root .aimc-hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.aimc-root .aimc-hero-cta {
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
    margin-bottom: 3rem;
}

.aimc-root .aimc-bottles-container {
    position: relative;
    width: 100%;
    padding: 0 clamp(1rem, 5vw, 4rem) 2rem;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.aimc-root .aimc-bottles-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.aimc-root .aimc-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.aimc-root .aimc-section-card {
    padding: clamp(2.5rem, 5vw, 3.5rem);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(45deg, #0f2322, #081615);
    border: 0;
}

.aimc-root .aimc-section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.275rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.aimc-root .aimc-section-subtitle {
    font-size: 1rem;
    color: #D1FAE5;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 300;
}

.aimc-root .aimc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.aimc-root .aimc-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.aimc-root label {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.aimc-root select,
.aimc-root input[type="email"] {
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    font-family: inherit;
    border-radius: var(--radius);
    color: var(--text-primary);
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;

    border-top: 1px solid #2A736C;
    border-bottom: 1px solid rgb(7 22 20 / 52%);
    background-color: #08332C;
    border-left: 1px solid #2a736c6e;
    border-right: 1px solid #2a736c73;

    line-height: 1.4rem;
}

.aimc-root input[type="email"] {
    cursor: auto;
}

.aimc-root input::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.aimc-root select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
}

.aimc-root select:focus,
.aimc-root input[type="email"]:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    background-color: rgba(0, 0, 0, 0.4);
}

.aimc-root select.aimc-error,
.aimc-root input[type="email"].aimc-error {
    border-color: var(--destructive);
}

.aimc-root .aimc-error-message {
    color: var(--destructive);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    animation: slideDown 0.3s ease-out;
}

/* Output Section */
.aimc-output {
    display: none;
    opacity: 0;
}

.aimc-root .aimc-output.aimc-visible {
    display: block;
    animation: fadeIn 0.5s ease-out forwards;
}

.aimc-root .aimc-prescription-header {
    font-size: clamp(1.5rem, 3.5vw, 2.275rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.aimc-root .aimc-prescription-subheader {
    font-size: 0.9375rem;
    color: #D1FAE5;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.aimc-root .aimc-prescription-subheader strong {
    color: #FFD861;
    font-weight: 600;
    /* border-bottom: 1px solid #FFD861; */
    /* padding-bottom: 2px; */
}

.aimc-root .aimc-prescription-subheader span {

    font-weight: 600;
    color: #FFD861;
    /* border-bottom: 1px solid #FFD861; */
    /* padding-bottom: 2px; */
}

.aimc-root .aimc-prescription-inner-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 2.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    isolation: isolate;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.aimc-root .aimc-prescription-inner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(90deg,
            rgba(16, 185, 129, 0.1),
            rgba(16, 185, 129, 0.25),
            rgba(16, 185, 129, 0.05),
            rgba(16, 185, 129, 0.25),
            rgba(16, 185, 129, 0.1));
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGradient 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    transition: all 0.4s ease;
}

.aimc-root .aimc-prescription-bottle {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aimc-root .aimc-prescription-inner-card:hover .aimc-prescription-bottle {
    transform: scale(1.03);
}

.aimc-root .aimc-prescription-details {
    flex: 1;
}

.aimc-root .aimc-feature-title {
    font-size: clamp(1.5rem, 3vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
    color: #a2fec2;
}

.aimc-root .aimc-feature-description {
    font-size: 0.9375rem;
    color: rgb(255 255 255);
    line-height: 1.6;
    margin-bottom: 1.75rem;

}

.aimc-root .aimc-results-header {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFD861;
    letter-spacing: 0.05em;
}

.aimc-root .aimc-results-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.aimc-root .aimc-result-pill {
    padding: 0.5rem 0.8rem;
    background: rgb(13 30 29);
    border: 1px solid #9efec21a;
    border-radius: 10px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: wrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* FAQ Accordion */
.aimc-faq-section {
    margin-top: 2.5rem;
}

.aimc-root .aimc-faq-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.aimc-root .aimc-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aimc-root .aimc-faq-item:last-child {
    border-bottom: none;
}

.aimc-root .aimc-faq-trigger {
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1.0625rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.aimc-root .aimc-faq-trigger::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.aimc-root .aimc-faq-trigger:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.aimc-root .aimc-faq-trigger:hover::before {
    height: 60%;
}

.aimc-root .aimc-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.aimc-root .aimc-faq-item.aimc-open .aimc-faq-icon {
    transform: rotate(180deg);
}

.aimc-root .aimc-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.aimc-root .aimc-faq-panel-content {
    padding-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Feature Grid */
.aimc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.aimc-root .aimc-feature-tile {
    padding: 2rem;
    background: rgba(15, 47, 47, 0.5);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    isolation: isolate;
    transform-origin: center;
    cursor: pointer;
}

.aimc-root .aimc-feature-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0.15),
            rgba(16, 185, 129, 0.3),
            rgba(16, 185, 129, 0.1),
            rgba(16, 185, 129, 0.3),
            rgba(16, 185, 129, 0.15));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGradient 5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    transition: all 0.4s ease;
}

.aimc-root .aimc-feature-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at center,
            rgba(16, 185, 129, 0.05) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.aimc-root .aimc-feature-tile:hover {
    background: rgba(15, 47, 47, 0.8);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(16, 185, 129, 0.2),
        0 0 40px rgba(16, 185, 129, 0.15);
}

.aimc-root .aimc-feature-tile:hover::before {
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0.25),
            rgba(16, 185, 129, 0.6),
            rgba(16, 185, 129, 0.2),
            rgba(16, 185, 129, 0.6),
            rgba(16, 185, 129, 0.25));
    background-size: 200% 200%;
}

.aimc-root .aimc-feature-tile:hover::after {
    opacity: 1;
}

.aimc-root .aimc-feature-tile:hover .aimc-feature-tile-icon {
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
}

.aimc-root .aimc-feature-tile:active {
    transform: translateY(-3px) scale(1.01);
    transition: all 0.15s ease;
}

.aimc-root .aimc-feature-tile-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aimc-root .aimc-feature-tile-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aimc-root .aimc-feature-tile-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.aimc-root .aimc-feature-tile-value {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.aimc-root .aimc-feature-tile-outcomes {
    list-style: none;
}

.aimc-root .aimc-feature-tile-outcomes li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.aimc-root .aimc-check-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* Lead Form Section */
.aimc-lead-form-container {
    display: flex;
    align-items: end;
    gap: 1rem;
    max-width: 600px;
}

.aimc-root .aimc-lead-form-container .aimc-form-group {
    flex: 1;
    margin-bottom: 0;
}

.aimc-root .aimc-lead-form-container .aimc-btn {
    flex-shrink: 0;
}

.aimc-root .aimc-success-message {
    text-align: center;
    padding: 2rem;
}

.aimc-root .aimc-success-countdown {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.aimc-root .aimc-success-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.aimc-root .aimc-cta-section {
    text-align: center;
    padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 3rem);
}

.aimc-root .aimc-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.aimc-root .aimc-cta-badge svg {
    width: 18px;
    height: 18px;
}

.aimc-root .aimc-cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.aimc-root .aimc-cta-section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #D1FAE5;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.aimc-root .aimc-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    box-shadow: none;
}

.aimc-root .aimc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Utility Classes */
.aimc-hidden {
    display: none !important;
}

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

.aimc-root .aimc-mb-1 {
    margin-bottom: 0.5rem;
}

.aimc-root .aimc-mb-2 {
    margin-bottom: 1rem;
}

.aimc-root .aimc-mb-3 {
    margin-bottom: 1.5rem;
}

.aimc-root .aimc-mb-4 {
    margin-bottom: 2rem;
}

.aimc-root .aimc-mb-5 {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .aimc-hero-header {
        padding: 1.5rem 1rem;
    }

    .aimc-root .aimc-hero-content-wrapper {
        padding: 5rem 1rem 0;
    }

    .aimc-root .aimc-bottles-container {
        padding: 0 1rem 1.5rem;
    }

    .aimc-root .aimc-logo {
        font-size: 1rem;
    }

    .aimc-root h1 {
        font-size: 2.5rem;
    }

    .aimc-root .aimc-hero-subtitle {
        font-size: 1.0625rem;
    }

    .aimc-root .aimc-section {
        padding: 2rem 1rem;
    }

    .aimc-root .aimc-section-card {
        padding: 2rem 1.5rem;
    }

    .aimc-root .aimc-form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .aimc-root .aimc-form-grid button {
        width: 100%;
    }

    .aimc-root .aimc-lead-form-container {
        flex-direction: column;
        align-items: stretch;
    }

    .aimc-root .aimc-lead-form-container .aimc-btn {
        width: 100%;
    }

    .aimc-root .aimc-prescription-inner-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aimc-root .aimc-prescription-bottle {
        max-width: 280px;
        margin: 0 auto;
    }

    .aimc-root .aimc-feature-grid {
        grid-template-columns: 1fr;
    }

    .aimc-root .aimc-feature-tile {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .aimc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aimc-root .aimc-section-subtitle {
        margin-left: 0;
    }

    .aimc-root .aimc-footer-grid {
        grid-template-columns: 1fr;
    }
}

.aimc-root .aimc-section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.aimc-root .aimc-section-animate.aimc-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .aimc-root *,
    .aimc-root *::before,
    .aimc-root *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.aimc-root .aimc-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index:9999999999;
}



.aimc-root .aimc-modal-overlay.aimc-active {
    display: block;

    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.aimc-root .aimc-modal-overlay.aimc-visible {
    opacity: 1;
}

.aimc-root .aimc-modal-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(135deg, rgba(15, 47, 47, 0.95) 0%, rgba(10, 35, 35, 0.98) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    margin-left: auto;
    margin-right: auto;
}

.aimc-root .aimc-modal-overlay.aimc-visible .aimc-modal-content {
    transform: scale(1) translateY(0);
}

.aimc-root .aimc-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s ease;
    z-index: 10;
    backdrop-filter: blur(11px);
    border: 0;
}

.aimc-root .aimc-modal-close:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
    transform: scale(1.1);
}

.aimc-root .aimc-modal-body {
    padding-right: 0.5rem;
}

.aimc-root .aimc-modal-body::-webkit-scrollbar {
    width: 8px;
}

.aimc-root .aimc-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.aimc-root .aimc-modal-body::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
    border-radius: 4px;
}

.aimc-root .aimc-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.5);
}

.aimc-root .aimc-learn-more-btn {
    margin-top: 1rem;
    background: none;
    border: none;
    color: #FFD861;
    /* var(--primary); */
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aimc-root .aimc-learn-more-btn:hover {
    color: #fff0c1;
    /* #0ea772; */
    gap: 0.625rem;
}

.aimc-root .aimc-learn-more-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aimc-root .aimc-learn-more-btn:hover svg {
    transform: translateX(2px);
}

.aimc-root .aimc-modal-body .aimc-prescription-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.aimc-root .aimc-modal-body .aimc-prescription-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.aimc-root .aimc-modal-body .aimc-measured-results h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aimc-root .aimc-modal-body .aimc-results-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.aimc-root .aimc-modal-body .aimc-faq-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.aimc-root .aimc-final-section {
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.aimc-root .aimc-final-section .aimc-final-section__buttonGroup{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
    gap: 15px;
}

@media screen and (max-width:640px){
    .aimc-root .aimc-final-section .aimc-final-section__buttonGroup .aimc-btn{
        width:100%
    }
}

.aimc-root .aimc-final-section .aimc-bottom-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.aimc-root .aimc-final-section .aimc-section-title {
    font-size: 3.5rem;
}

.aimc-root .aimc-final-section .aimc-section-subtitle {
    font-size: 1.25rem;
}

@media screen and (max-width:768px) {
    .aimc-root .aimc-final-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .aimc-root .aimc-final-section .aimc-section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .aimc-modal-content {
        padding: 2rem 1.5rem;
    }

    .aimc-root .aimc-modal-close {
        top: 1rem;
        right: 1rem;
    }

    .aimc-root .aimc-modal-body .aimc-prescription-title {
        font-size: 1.5rem;
    }

    .aimc-root .aimc-prescription-showcase {
        grid-template-columns: 1fr !important;
    }

    .aimc-root .aimc-prescription-visual {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media screen and (max-width:480px) {
    .aimc-root .aimc-modal-overlay {
        padding: 1rem;
    }

    .aimc-root .aimc-modal-content {
        padding: 2rem 1.5rem;
    }

    .aimc-root .aimc-prescription-inner-card {

        padding: clamp(1rem, 4vw, 2.5rem);
    }

    .aimc-root .aimc-modal-body {
        padding: 0;
    }
}

/* Top nav dark theme START */
[data-class="clr-navbar__component"] {
    position: absolute;
    left: 0;
    right: 0;
    background-color: transparent;
}

[data-class="clr-navbar__component"] img.apphub-sites--clr-logo__component--app-type {
    display: none;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-logo__component {
    content: "";
    background-image: url('https://cdn.prod.website-files.com/642419dd2be643c50e400f66/67acc1223f97f9c440a20cf5_401b4c59802f0b33fbd891bca82cf48a_graphic-reviews-footer--logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 32px;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__dropdown--toggle,
[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__link {
    color: #ffffff;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__dropdown--toggle:hover,
[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__link:hover {
    color: #ffffff;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-button--secondary {
    color: #fff;
    background-color: transparent;
    backdrop-filter:none;
    box-shadow: none;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-hamburger-icon__component--top,
[data-class="clr-navbar__component"] .apphub-sites--clr-hamburger-icon__component--middle,
[data-class="clr-navbar__component"] .apphub-sites--clr-hamburger-icon__component--bottom {
    background-color: #ffffff;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__menu {
    border-top: 0;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__dropdown-list {
    background-color: transparent !important;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__dropdown-link__heading {
    color: #97ffca;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar-dropdown-link__icon--lg svg {
    filter: invert(1) hue-rotate(235deg);
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__dropdown-banner-item-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__banner-item:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__dropdown-content {
    background-color: #0d1513;
    border-radius: 10px;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__dropdown-link__subheading {
    color: #D1FAE5;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-navbar__dropdown-link--padding-xlg:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

[data-class="clr-navbar__component"] .apphub-sites--clr-dropdown-items-links--container .apphub-sites--clr-navbar-rio__dropdown-link__highlight--primary,
[data-class="clr-navbar__component"] .apphub-sites--clr-dropdown-items-links--container:hover .apphub-sites--clr-navbar-rio__dropdown-link__highlight--primary,
[data-class="clr-navbar__component"] .apphub-sites--clr-dropdown-items-links--container .apphub-sites--clr-navbar-rio__dropdown-link__highlight--secondary,
[data-class="clr-navbar__component"] .apphub-sites--clr-dropdown-items-links--container:hover .apphub-sites--clr-navbar-rio__dropdown-link__highlight--secondary {
    display: none;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-link--primary {
    color: #D1FAE5;
}

[data-class="clr-navbar__component"] .apphub-sites--clr-dropdown-items__heading {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    [data-class="clr-navbar__component"] .apphub-sites--clr-navbar__menu{
        background-color: #06100ff5;
    }
}


/* Top nav dark theme END */

/* Dark mode */
::selection {
  background: #46bda1 !important; /* Highlight color */
  color: #ffffff!important;      /* Text color */
}