/* =========================================================
   MyWcGlobal - Premium Wellness Landing Theme
   File: public/css/frontend.css
   ========================================================= */

:root {
    --primary: #0b7a53;
    --primary-dark: #05563a;
    --primary-soft: #def8eb;
    --accent: #42d28b;
    --accent-soft: #edfff6;
    --text: #143224;
    --muted: #61756a;
    --white: #ffffff;
    --dark: #0c1e16;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --border: rgba(11, 122, 83, 0.14);
    --shadow-lg: 0 28px 60px rgba(14, 68, 47, 0.14);
    --shadow-md: 0 14px 34px rgba(14, 68, 47, 0.10);
    --shadow-sm: 0 8px 24px rgba(14, 68, 47, 0.06);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --transition: all .35s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(66, 210, 139, 0.18), transparent 32%),
        radial-gradient(circle at 90% 18%, rgba(11, 122, 83, 0.12), transparent 20%),
        linear-gradient(180deg, #f6fff9 0%, #f7fbf8 46%, #effaf3 100%);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4 {
    font-family: "Outfit", sans-serif;
    color: #0d281d;
    letter-spacing: -0.02em;
}

p {
    color: var(--muted);
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-shell {
    position: relative;
    min-height: 100vh;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(14px);
    pointer-events: none;
    z-index: -1;
    opacity: .55;
}

.orb-one {
    width: 240px;
    height: 240px;
    left: -70px;
    top: 120px;
    background: rgba(66, 210, 139, 0.24);
}

.orb-two {
    width: 220px;
    height: 220px;
    right: -60px;
    top: 420px;
    background: rgba(11, 122, 83, 0.20);
}

.orb-three {
    width: 260px;
    height: 260px;
    right: 12%;
    bottom: 8%;
    background: rgba(196, 255, 221, 0.58);
}

.container {
    position: relative;
    z-index: 2;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(7, 49, 32, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 30px rgba(7, 34, 22, 0.18);
}

.navbar {
    padding: 16px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.navbar-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.navbar-brand strong {
    display: block;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1;
}

.navbar-brand small {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 5px;
    font-size: .78rem;
    letter-spacing: .03em;
}

.navbar-nav {
    gap: 8px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: .97rem;
    padding: 12px 16px;
    border-radius: 999px;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-signin,
.btn-brand,
.btn-outline-brand,
.btn-soft-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: var(--transition);
    border: 0;
    position: relative;
    overflow: hidden;
}

.btn-signin,
.btn-brand {
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 58%, var(--primary-dark) 100%);
    box-shadow: 0 16px 30px rgba(11, 122, 83, 0.24);
}

.btn-signin:hover,
.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(11, 122, 83, 0.28);
    color: #fff;
}

.btn-outline-brand {
    color: var(--primary-dark);
    border: 1px solid rgba(11, 122, 83, 0.18);
    background: rgba(255, 255, 255, 0.78);
}

.btn-outline-brand:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-soft-brand {
    color: var(--primary-dark);
    background: rgba(11, 122, 83, 0.08);
}

.btn-soft-brand:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.section-space {
    padding: 100px 0;
}

.section-space-sm {
    padding: 72px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(11, 122, 83, 0.09);
    border: 1px solid rgba(11, 122, 83, 0.10);
    color: var(--primary-dark);
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.08rem;
    max-width: 760px;
    margin-bottom: 0;
}

.page-hero {
    position: relative;
    padding: 100px 0 76px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 18px 18px auto 18px;
    height: 88%;
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(245, 255, 250, 0.58)),
        linear-gradient(120deg, rgba(11, 122, 83, 0.10), rgba(66, 210, 139, 0.04));
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.hero-carousel .carousel-item {
    min-height: 1px;
}

.hero-card {
    padding: 26px;
    border-radius: 34px;
    background: var(--surface-strong);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-copy {
    padding: 10px 4px 10px 6px;
}

.hero-copy h1,
.hero-copy h2 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 20px;
}

.hero-copy p {
    font-size: 1.08rem;
    margin-bottom: 28px;
    max-width: 95%;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-stat {
    padding: 18px 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 122, 83, 0.06), rgba(255, 255, 255, 0.84));
    border: 1px solid rgba(11, 122, 83, 0.12);
    box-shadow: var(--shadow-sm);
}

.hero-stat strong {
    display: block;
    color: var(--primary-dark);
    font-family: "Outfit", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat span {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 600;
}

.image-box {
    position: relative;
    padding: 24px;
    border-radius: 30px;
    min-height: 420px;
    background:
        radial-gradient(circle at top right, rgba(66, 210, 139, 0.24), transparent 30%),
        linear-gradient(160deg, rgba(11, 122, 83, 0.96), rgba(8, 92, 61, 0.92), rgba(18, 38, 28, 0.96));
    box-shadow: 0 28px 50px rgba(10, 57, 38, 0.26);
    overflow: hidden;
}

.image-box::before,
.image-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.image-box::before {
    width: 150px;
    height: 150px;
    top: -26px;
    right: -20px;
}

.image-box::after {
    width: 120px;
    height: 120px;
    bottom: -32px;
    left: -22px;
}

.image-box .frame-chip {
    position: absolute;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.image-box .frame-chip.top {
    top: 18px;
    left: 18px;
}

.image-box .frame-chip.bottom {
    right: 18px;
    bottom: 18px;
}

.image-placeholder {
    position: relative;
    height: 100%;
    min-height: 370px;
    border-radius: 26px;
    border: 2px dashed rgba(255, 255, 255, 0.34);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05)),
        rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 26px;
}

.image-placeholder .placeholder-inner {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.92);
}

.image-placeholder h4,
.image-placeholder h5 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.45rem;
    font-weight: 800;
}

.image-placeholder p {
    color: rgba(255, 255, 255, 0.84);
    font-size: .98rem;
    margin-bottom: 14px;
}

.image-placeholder span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 700;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(11, 122, 83, 0.24);
    border: 0;
}

.carousel-indicators .active {
    background-color: var(--primary);
}

.hero-wave {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-wave span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(11, 122, 83, 0.12);
    border-radius: 999px;
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.stats-grid,
.cards-3,
.cards-4,
.cards-2 {
    display: grid;
    gap: 22px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card,
.feature-card,
.info-card,
.faq-card,
.contact-card,
.form-card {
    position: relative;
    padding: 26px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.glass-card:hover,
.feature-card:hover,
.info-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 46px rgba(10, 57, 38, 0.14);
}

.stat-card {
    padding: 28px 24px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 255, 250, 0.82));
    border: 1px solid rgba(11, 122, 83, 0.10);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.stat-card .icon-wrap,
.feature-card .icon-wrap,
.info-card .icon-wrap,
.contact-card .icon-wrap {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--primary-dark);
    font-size: 1.5rem;
    background: linear-gradient(145deg, rgba(66, 210, 139, 0.24), rgba(11, 122, 83, 0.10));
    border: 1px solid rgba(11, 122, 83, 0.10);
    margin-bottom: 16px;
}

.stat-card h3,
.feature-card h3,
.info-card h3,
.contact-card h3 {
    font-size: 1.34rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    font-family: "Outfit", sans-serif;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.luxury-section {
    position: relative;
}

.luxury-section .section-panel {
    position: relative;
    padding: 30px;
    border-radius: 36px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(240, 255, 246, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-lg);
}

.luxury-section.alt-tone .section-panel {
    background:
        linear-gradient(160deg, rgba(9, 56, 37, 0.98), rgba(8, 86, 56, 0.94));
    color: #fff;
}

.luxury-section.alt-tone .section-tag,
.luxury-section.alt-tone .section-title,
.luxury-section.alt-tone .section-subtitle,
.luxury-section.alt-tone p,
.luxury-section.alt-tone li,
.luxury-section.alt-tone h3,
.luxury-section.alt-tone h4 {
    color: #fff;
}

.luxury-section.alt-tone .section-tag {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.14);
}

.luxury-section.alt-tone .btn-outline-brand {
    background: rgba(255, 255, 255, 0.94);
}

.content-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--muted);
}

.content-list li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 4px;
}

.luxury-section.alt-tone .content-list li i {
    color: #8bffc8;
}

.pill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pill-cloud span {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(11, 122, 83, 0.08);
    border: 1px solid rgba(11, 122, 83, 0.10);
    color: var(--primary-dark);
    font-size: .92rem;
    font-weight: 700;
}

.luxury-section.alt-tone .pill-cloud span {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.mini-tile {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(11, 122, 83, 0.08);
    box-shadow: var(--shadow-sm);
}

.mini-tile strong {
    display: block;
    color: var(--primary-dark);
    font-family: "Outfit", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.luxury-section.alt-tone .mini-tile {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.12);
}

.luxury-section.alt-tone .mini-tile strong,
.luxury-section.alt-tone .mini-tile p {
    color: #fff;
}

.callout-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 24px;
    margin-top: 28px;
    background: rgba(11, 122, 83, 0.08);
    border: 1px solid rgba(11, 122, 83, 0.12);
}

.callout-bar p {
    margin: 0;
}

.product-strip,
.dual-feature-strip {
    display: grid;
    gap: 20px;
}

.product-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dual-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.strip-card {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(11, 122, 83, 0.10);
    box-shadow: var(--shadow-sm);
}

.strip-card .top-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.strip-card .top-line span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 122, 83, 0.08);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: .85rem;
}

.strip-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    counter-reset: step;
}

.process-card {
    position: relative;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(11, 122, 83, 0.10);
    box-shadow: var(--shadow-sm);
}

.process-card::before {
    counter-increment: step;
    content: "0" counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(66, 210, 139, 0.24), rgba(11, 122, 83, 0.12));
    color: var(--primary-dark);
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.process-card h3 {
    font-size: 1.22rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.quote-panel {
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(155deg, rgba(8, 79, 53, 0.96), rgba(11, 122, 83, 0.92));
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.quote-panel h3,
.quote-panel p,
.quote-panel strong {
    color: #fff;
}

.quote-panel .quote-mark {
    font-size: 3rem;
    line-height: 1;
    opacity: .35;
    margin-bottom: 12px;
}

.accordion-item {
    border: 0;
    border-radius: 24px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
}

.accordion-button {
    font-weight: 800;
    color: #123021;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background: rgba(11, 122, 83, 0.08);
}

.accordion-body {
    padding: 0 24px 24px;
}

.contact-card .contact-value {
    color: var(--text);
    font-weight: 700;
    font-size: 1.03rem;
}

.form-card {
    padding: 30px;
}

.form-label {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 10px;
}

.form-control,
.form-select {
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(11, 122, 83, 0.14);
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.96);
    padding: 0 18px;
}

textarea.form-control {
    min-height: 160px;
    padding-top: 16px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(11, 122, 83, 0.45);
}

.alert-success.custom-alert,
.alert-danger.custom-alert {
    border-radius: 20px;
    padding: 18px 20px;
    border: 0;
    box-shadow: var(--shadow-sm);
}

.alert-success.custom-alert {
    background: #e8fff0;
    color: #065637;
}

.alert-danger.custom-alert {
    background: #fff0f0;
    color: #922121;
}

.main-footer {
    position: relative;
    padding: 90px 0 40px;
    background:
        linear-gradient(145deg, rgba(8, 35, 24, 0.98), rgba(8, 62, 41, 0.98));
    color: rgba(255, 255, 255, 0.85);
    margin-top: 80px;
    overflow: hidden;
}

.main-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(66, 210, 139, 0.08);
    right: -140px;
    bottom: -160px;
    filter: blur(8px);
}

.footer-top {
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: .86rem;
    font-weight: 700;
}

.footer-widget h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget li {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.78);
    transition: var(--transition);
}

.footer-widget a:hover {
    color: #fff;
    padding-left: 4px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.contact-item i {
    color: #8fffc9;
    font-size: 1rem;
    margin-top: 4px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--primary-dark));
    box-shadow: 0 16px 34px rgba(11, 122, 83, 0.28);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: var(--transition);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.float-sm {
    animation: floaty 4.8s ease-in-out infinite;
}

.float-md {
    animation: floaty 5.8s ease-in-out infinite;
}

.float-lg {
    animation: floaty 6.8s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.health-badge-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.health-badge-line span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(11, 122, 83, 0.08);
    color: var(--primary-dark);
    font-size: .88rem;
    font-weight: 700;
}

.notice-note {
    padding: 20px 22px;
    border-radius: 22px;
    background: #f1fff7;
    border-left: 4px solid var(--primary);
    margin-top: 22px;
}

.notice-note p {
    margin: 0;
}

.split-hero-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.split-hero-list .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(11, 122, 83, 0.08);
    box-shadow: var(--shadow-sm);
}

.split-hero-list .item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.split-hero-list .item h5 {
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.cta-strip {
    padding: 30px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(11, 122, 83, 0.96), rgba(4, 73, 48, 0.94));
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cta-strip h2,
.cta-strip p {
    color: #fff;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

@media (max-width: 1199.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-strip,
    .process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 18px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.06);
    }

    .navbar-nav {
        gap: 4px;
    }

    .nav-actions {
        margin-top: 10px;
    }

    .page-hero {
        padding-top: 80px;
    }

    .hero-card,
    .luxury-section .section-panel,
    .form-card,
    .glass-card,
    .feature-card,
    .info-card,
    .contact-card {
        border-radius: 28px;
    }

    .hero-copy p {
        max-width: 100%;
    }

    .hero-mini-stats,
    .cards-3,
    .cards-2,
    .mini-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .main-header {
        background: rgba(7, 49, 32, 0.92);
    }

    .navbar-brand img {
        width: 50px;
        height: 50px;
    }

    .section-space {
        padding: 76px 0;
    }

    .section-space-sm {
        padding: 56px 0;
    }

    .page-hero::before {
        inset: 14px 12px auto 12px;
        height: 92%;
        border-radius: 28px;
    }

    .hero-card,
    .luxury-section .section-panel,
    .cta-strip {
        padding: 20px;
    }

    .image-box {
        min-height: 330px;
        padding: 18px;
        margin-bottom: 20px;
    }

    .image-placeholder {
        min-height: 280px;
    }

    .hero-mini-stats,
    .stats-grid,
    .cards-4,
    .product-strip,
    .process-flow,
    .dual-feature-strip {
        grid-template-columns: 1fr;
    }

    .callout-bar,
    .footer-bottom,
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand img {
        width: 56px;
        height: 56px;
    }

    .scroll-top-btn {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
    }
}