/* ============================================
   EXOGENICS — Design System & Variables
   Brand Colors from palette:
   Pink: #E72379 | Purple: #662483 | Blue: #312B84 | Navy: #1A1833
============================================ */

:root {
    --pink: #E72379;
    --purple: #662483;
    --blue: #312B84;
    --navy: #1A1833;
    --white: #ffffff;
    --off-white: #fafafc;
    --black: #111111;
    --gray-50: #f7f8fb;
    --gray-100: #eef0f5;
    --gray-200: #e2e5ec;
    --gray-300: #d3d7e0;
    --gray-400: #b0b7c5;
    --gray-500: #7a8494;
    --gray-700: #3d4555;
    --gray-900: #1c1f2a;
    --gradient: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
    --gradient-h: linear-gradient(90deg, var(--pink), var(--purple));
    --gradient-soft: linear-gradient(135deg, rgba(231,35,121,.05), rgba(102,36,131,.05));
    --shadow-sm: 0 2px 8px rgba(26,24,51,.04), 0 1px 2px rgba(26,24,51,.03);
    --shadow-md: 0 8px 32px rgba(26,24,51,.07), 0 2px 8px rgba(26,24,51,.04);
    --shadow-lg: 0 16px 48px rgba(26,24,51,.1), 0 4px 16px rgba(26,24,51,.05);
    --shadow-glow: 0 8px 40px rgba(231,35,121,.18);
    --shadow-card: 0 1px 3px rgba(26,24,51,.06), 0 8px 24px rgba(26,24,51,.04);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all .35s cubic-bezier(.25,.46,.45,.94);
    --transition-fast: all .2s ease;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.3px;
}
a { text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }

::selection { background: rgba(231,35,121,.12); color: var(--navy); }

/* ============================================
   UTILITY CLASSES
============================================ */
.gradient-text {
    background: var(--gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-pink { color: var(--pink) !important; }
.text-purple { color: var(--purple) !important; }
.text-blue { color: var(--blue) !important; }
.text-navy { color: var(--navy) !important; }
.text-gray-500 { color: var(--gray-500) !important; }
.text-gray-700 { color: var(--gray-700) !important; }
.text-sm { font-size: .9rem !important; }
.font-heading { font-family: var(--font-heading) !important; }

.bg-pink-light { background-color: rgba(231,35,121,.07) !important; }
.bg-purple-light { background-color: rgba(102,36,131,.07) !important; }
.bg-blue-light { background-color: rgba(49,43,132,.07) !important; }
.bg-gray-50 { background-color: var(--gray-50) !important; }

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1.2rem;
    position: relative;
    padding: 8px 22px;
    background: rgba(231,35,121,.04);
    border-radius: 50px;
    border: 1px solid rgba(231,35,121,.1);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary-gradient {
    background: var(--gradient-h);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .3px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(231,35,121,0.15);
}
.btn-primary-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    opacity: 0;
    transition: opacity .35s ease;
    z-index: -1;
    border-radius: 50px;
}
.btn-primary-gradient:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231,35,121,0.2);
}
.btn-primary-gradient:hover::before { opacity: 1; }

.btn-outline-hero {
    border: 1.5px solid rgba(255,255,255,.35);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: .95rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-outline-hero:hover {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.7);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.btn-white:hover {
    background: var(--gray-50);
    color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.btn-outline-white {
    border: 1.5px solid rgba(255,255,255,.4);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: .95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    color: var(--white);
    border-color: var(--white);
}


/* ============================================
   NAVBAR
============================================ */
#navbar {
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}
#navbar.scrolled,
.internal-page #navbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(26,24,51,.06), 0 4px 20px rgba(26,24,51,.04);
}

.nav-logo-img { height: 42px; transition: var(--transition); }
#navbar.scrolled .nav-logo-img,
.internal-page #navbar .nav-logo-img { height: 36px; }

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 500;
    color: var(--white);
    padding: 8px 18px !important;
    position: relative;
    letter-spacing: .2px;
}
#navbar.scrolled .nav-link,
.internal-page #navbar .nav-link { color: var(--gray-700); }

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--gradient-h);
    border-radius: 2px;
    transition: width .3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 36px); }
.navbar-nav .nav-link:hover,
#navbar.scrolled .nav-link:hover { color: var(--pink); }
#navbar:not(.scrolled):not(.internal-page #navbar) .nav-link:hover { color: rgba(255,255,255,.85); }
#navbar:not(.scrolled):not(.internal-page #navbar) .nav-link::after { background: var(--white); }

/* Mobile Toggler */
.toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; cursor: pointer; }
.toggler-icon span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
#navbar.scrolled .toggler-icon span,
.internal-page #navbar .toggler-icon span { background: var(--navy); }
.navbar-toggler { border: none; padding: 8px; }
.navbar-toggler:focus { box-shadow: none; }

.btn-nav-cta {
    padding: 10px 24px !important;
    font-size: .85rem !important;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section { position: relative; width: 100%; height: 85vh; min-height: 85vh; max-height: 85vh; }
.carousel, .carousel-inner { height: 100%; }
.carousel-item { height: 85vh; min-height: 85vh; max-height: 85vh; position: relative; }

.hero-slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 12s ease;
}
.carousel-item.active .hero-img { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,24,51,.92) 0%,
        rgba(49,43,132,.75) 30%,
        rgba(102,36,131,.55) 60%,
        rgba(231,35,121,.25) 100%
    );
}

.hero-content { position: relative; z-index: 2; padding: 50px 0; text-align: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}
.hero-content-centered .hero-badge:hover {
    background: rgba(255,255,255,.18);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(231,35,121,.2);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}
.hero-title .gradient-text {
    background: linear-gradient(90deg, #f8b4d1, #dcb3f8, #b3c4f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-lg {
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.8rem;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,.8);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-md {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    max-width: 560px;
    line-height: 1.85;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Carousel Controls */
.carousel-control-prev, .carousel-control-next { width: auto; opacity: 1; }
.carousel-control-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.carousel-control-icon:hover {
    background: rgba(255,255,255,.2);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(231,35,121,.3);
}
.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }

/* Carousel Indicators */
#hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 0;
    padding: 0;
}
#hero-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
    outline: none;
}
#hero-indicators button:hover {
    background: rgba(255,255,255,.6);
    transform: scale(1.1);
}
#hero-indicators button.active {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(231,35,121,.3);
}
#heroCarousel .carousel-indicators {
    position: static;
    display: none !important;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 0;
    position: relative;
    z-index: 5;
    margin-top: -70px;
}
.stats-wrapper {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(30px);
    border-radius: var(--radius-xl);
    padding: 50px 36px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255,255,255,0.6);
}

.stat-item { text-align: center; padding: 10px; }
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--pink);
    margin-bottom: 18px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    display: inline;
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pink);
}
.stat-label {
    font-size: .85rem;
    font-weight: 400;
    color: var(--gray-500);
    margin-top: 8px;
    margin-bottom: 0;
    letter-spacing: .2px;
}

/* ============================================
   VALUE PROPOSITIONS
============================================ */
.value-section {
    padding: 100px 0 80px;
    background: var(--white);
    position: relative;
}
.value-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(231,35,121,.03) 0%, transparent 60%);
    z-index: 0; pointer-events: none;
}
.value-section .container { position: relative; z-index: 1; }

.futuristic-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}
.futuristic-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-h);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
}
.futuristic-card:hover::before { transform: scaleX(1); }
.futuristic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(231, 35, 121, .15);
}

.futuristic-card.featured {
    background: var(--gradient);
    border: none;
    color: var(--white);
    box-shadow: 0 12px 36px rgba(102,36,131,.2);
}
.futuristic-card.featured .value-card-title,
.futuristic-card.featured .product-card-title { color: var(--white); }
.futuristic-card.featured .value-card-text,
.futuristic-card.featured .product-card-desc { color: rgba(255,255,255,.85); }
.futuristic-card.featured .value-card-icon,
.futuristic-card.featured .product-icon { background: rgba(255,255,255,.15); color: var(--white); backdrop-filter: blur(10px); }
.futuristic-card.featured .value-card-link { color: var(--white); }
.futuristic-card.featured::before { display: none; }
.futuristic-card.featured:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(102,36,131,.3); }

.value-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--pink);
    margin-bottom: 24px;
}

.value-card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 14px; }
.value-card-text { color: var(--gray-500); font-size: .95rem; line-height: 1.75; margin-bottom: 20px; }

.value-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .9rem;
    color: var(--pink);
}
.value-card-link:hover { gap: 12px; color: var(--purple); }


/* ============================================
   PAGE HEADER (INTERNAL PAGES)
============================================ */
.page-header {
    padding: 180px 0 100px;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-header-shape {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(231,35,121,.04) 0%, transparent 45%),
                radial-gradient(circle at 20% 80%, rgba(49,43,132,.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }

.page-title {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ============================================
   INTERNAL PAGES COMPONENTS
============================================ */

/* Products */
.product-featured-row {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.product-img-col {
    position: relative;
    min-height: 380px;
}
.product-img-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}
.product-img-wrapper:hover img { transform: scale(1.03); }
.product-badge {
    position: absolute;
    top: 24px; left: 24px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    color: var(--pink);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
    z-index: 2;
    letter-spacing: .3px;
}
.product-content {
    padding: 50px 44px;
}
.product-features li { margin-bottom: 10px; font-size: 1rem; color: var(--gray-700); }
.product-features li i { margin-right: 8px; }

.product-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    background: var(--gradient-soft);
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(231,35,121,.1);
}
.product-card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.product-card-desc { font-size: .95rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 24px;}

/* ============================================
   CONTACT FORM - PREMIUM SPLIT DESIGN
============================================ */
.contact-split-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(49, 43, 132, 0.08);
    overflow: hidden;
    margin: -80px auto 80px;
    max-width: 1100px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.5);
}
@media (min-width: 992px) {
    .contact-split-card {
        flex-direction: row;
        min-height: 650px;
    }
}

.contact-split-visual {
    flex: 1;
    background: radial-gradient(circle at top left, var(--blue) 0%, var(--purple) 60%, #e0e7ff 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.contact-split-visual::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(231,35,121,0.2) 0%, transparent 50%);
    filter: blur(60px);
}
.visual-content { position: relative; z-index: 2; }
.asterisk-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(255,255,255,0.8);
    margin-bottom: auto;
    display: block;
}
.contact-split-visual h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.contact-split-visual p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

.contact-split-form {
    flex: 1.2;
    padding: 60px 40px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 992px) {
    .contact-split-form {
        padding: 60px 80px;
    }
}

.form-header { margin-bottom: 40px; }
.asterisk-icon-dark {
    font-size: 2rem;
    line-height: 1;
    color: var(--blue);
    display: block;
    margin-bottom: 10px;
}
.form-header h3 {
    font-size: 2rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}
.form-header p {
    color: var(--gray-500);
    font-size: .95rem;
}

.premium-form .form-label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--navy);
    font-size: .9rem;
    margin-bottom: 8px;
}
.premium-form .form-control {
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 1rem;
    color: var(--gray-900);
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.premium-form .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(49, 43, 132, 0.1);
    outline: none;
}
.premium-form .form-control::placeholder {
    color: var(--gray-400);
}

.btn-form-submit {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(49, 43, 132, 0.2);
    cursor: pointer;
}
.btn-form-submit:hover {
    background: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 14px 25px rgba(102, 36, 131, 0.25);
    color: var(--white);
}

/* Radio buttons aesthetic */
.user-type-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.type-radio-card {
    flex: 1;
    position: relative;
}
.type-radio-card input {
    position: absolute;
    opacity: 0;
}
.type-radio-label {
    display: block;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}
.type-radio-card input:checked + .type-radio-label {
    border-color: var(--blue);
    background: rgba(49, 43, 132, 0.05);
    color: var(--blue);
}

/* Contact Info Minimal */
.contact-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-200);
}
.minimal-info-item h5 {
    font-size: 1rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}
.minimal-info-item p {
    color: var(--navy);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section { padding: 40px 0 100px; }

.cta-wrapper {
    background: var(--gradient);
    border-radius: var(--radius-xl);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .06;
    background: var(--white);
}
.cta-shape-1 { width: 350px; height: 350px; top: -140px; right: -80px; }
.cta-shape-2 { width: 250px; height: 250px; bottom: -80px; left: -60px; }
.cta-shape-3 { width: 180px; height: 180px; top: 50%; left: 70%; }

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
    letter-spacing: -0.3px;
}
.cta-text {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 300;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
============================================ */
.footer-section {
    background: var(--navy);
    padding: 48px 0;
}
.footer-bottom p {
    color: rgba(255,255,255,.4);
    font-size: .85rem;
    margin: 0;
    letter-spacing: .2px;
}

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-h);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
    }
    .navbar-nav .nav-link { color: var(--gray-700) !important; padding: 12px 16px !important; }
    .navbar-nav .nav-link::after { display: none; }
    .btn-nav-cta { display: inline-block; margin-top: 12px; }

    .carousel-control-prev, .carousel-control-next { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-title-lg { font-size: 2.8rem; }
    .hero-description { font-size: 1rem; }
    .hero-description-md { font-size: 1rem; }
    .page-header { padding: 150px 0 80px; }
    .product-featured-row { flex-direction: column; }
    .product-img-col { min-height: 280px; }
}

@media (max-width: 767.98px) {
    .stats-wrapper { padding: 36px 20px; }
    .stat-number { font-size: 2.2rem; }
    .stat-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .cta-wrapper { padding: 50px 24px; }
    .hero-title-lg { font-size: 2.2rem; }
    .hero-description-md { font-size: 0.95rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-cta-group .btn { width: 100%; text-align: center; }
    .product-content { padding: 32px 24px; }
    .product-img-col { min-height: 220px; }
    .futuristic-card { padding: 32px 28px; }
    .contact-split-visual { padding: 40px 28px; }
    .contact-minimal-grid { gap: 24px; margin-top: 40px; padding-top: 40px; }
}

@media (max-width: 575.98px) {
    .hero-title-lg { font-size: 1.8rem; }
    .hero-description-md { font-size: 0.9rem; }
    .section-title { font-size: 1.6rem; }
    .page-title { font-size: 2rem; }
    .contact-split-form { padding: 32px 20px; }
    .cta-title { font-size: 1.6rem; }
    .stats-wrapper { border-radius: var(--radius-md); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}
/* ============================================
   HOME REDESIGN
============================================= */
.home-redesign {
    background-color: var(--white);
}

.home-redesign .navbar-brand .logo-dark {
    filter: none !important;
}

.home-redesign .navbar-nav .nav-link {
    color: var(--gray-700) !important;
}
.home-redesign .navbar-nav .nav-link:hover,
.home-redesign .navbar-nav .nav-link.active {
    color: var(--pink) !important;
}
.home-redesign .navbar-nav .nav-link::after {
    background: var(--pink) !important;
}

#navbar.scrolled .logo-dark {
    filter: none;
}

.tracking-wide { letter-spacing: 2px; }
.section-padding { padding: 100px 0; }

/* Hero Minimal */
.hero-minimal {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #F9FAFC 0%, #FFFFFF 100%);
    overflow: hidden;
}
.hero-min-badge {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border-radius: 50px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
}
.hero-min-badge i { color: var(--pink); margin-right: 8px; }
.hero-min-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-min-desc {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 40px;
    max-width: 500px;
}
.hero-min-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}
.btn-link-arrow {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-heading);
}
.btn-link-arrow:hover { color: var(--pink); }

.hero-min-image-wrapper {
    position: relative;
    border-radius: 24px;
}
.hero-min-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}
.floating-card.top-right { top: 10%; right: -20px; }
.floating-card.bottom-left { bottom: 10%; left: -20px; }
.fc-icon { font-size: 1.5rem; }
.fc-content strong { display: block; color: var(--navy); font-size: 0.9rem; line-height: 1.2; }
.fc-content span { color: var(--gray-500); font-size: 0.8rem; }

/* Quality Section */
.quality-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.ql-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.ql-text strong { display: block; color: var(--navy); font-size: 1.1rem; margin-bottom: 5px; }
.ql-text span { color: var(--gray-500); font-size: 0.95rem; }

/* Stages */
.stage-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
}
.stage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(231,35,121,0.2);
}
.stage-icon {
    width: 60px; height: 60px;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}
.stage-card h4 { margin-bottom: 15px; }
.stage-card p { color: var(--gray-500); margin: 0; font-size: 0.95rem; }

/* Dark Banner */
.dark-banner {
    background-color: var(--navy);
}
.badge-pill {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
}
.badge-pill.bg-pink { background: var(--pink); color: white; }
.badge-pill.outline { border: 1px solid rgba(255,255,255,0.3); color: white; }

/* Difference */
.diff-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    height: 100%;
}
.diff-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.diff-text h4 { font-size: 1.1rem; margin-bottom: 10px; }
.diff-text p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author h5 { margin: 0; font-size: 1rem; }
.testimonial-author span { color: var(--gray-500); font-size: 0.85rem; }

/* Contact Split */
.contact-split-section { padding: 100px 0; background: var(--white); }
.contact-split-wrapper {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--gray-200);
}
.contact-split-info { background: #fafafc; }

/* Footer CTA */
.footer-cta { background-color: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-heading { color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; margin-bottom: 20px; font-family: var(--font-heading); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-links a:hover { color: var(--pink); }
.social-circle { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); color: white; display: flex; align-items: center; justify-content: center; }
.social-circle:hover { background: var(--pink); color: white; }

@media (max-width: 991px) {
    .floating-card { display: none; }
    .hero-min-title { font-size: 2.5rem; }
    .home-redesign .navbar-nav .nav-link { color: var(--navy) !important; }
}

