html {
    scroll-behavior: smooth;
}

:root {
    --bg: #f8fbfb;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --surface-tint: #f3fdf8;
    --ink: #2c2730;
    --muted: #5f6572;
    --line: rgba(16, 185, 129, 0.14);
    --aqua: #1498d1;
    --teal: #12b4b6;
    --emerald: #08b066;
    --mint: #dff8ee;
    --blush: #fdecef;
    --shadow: 0 22px 55px rgba(21, 59, 74, 0.12);
}

body {
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(20, 152, 209, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(253, 236, 239, 0.9), transparent 28%),
        radial-gradient(circle at bottom left, rgba(8, 176, 102, 0.12), transparent 26%),
        linear-gradient(180deg, #f9fcfc 0%, #f4fbf8 48%, #fff8fb 100%);
}

nav {
    position: relative;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    isolation: isolate;
    z-index: 50;
}

nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: -1;
}

.header-shell {
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    min-height: 5rem;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.brand-lockup:hover {
    transform: translateY(-1px);
}

.brand-mark {
    display: block;
    width: 7rem;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: none;
}

.header-nav {
    padding: 0.28rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, #f8fcfd);
    border: 1px solid #d7e8ef;
    box-shadow: 0 10px 24px rgba(24, 71, 90, 0.06);
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.05rem;
    padding: 0 0.72rem;
    border-radius: 999px;
    color: #35576a;
    font-size: 0.86rem;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.55rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(135deg, var(--aqua), var(--emerald));
    transition: transform 0.2s ease;
}

.nav-link:hover {
    color: #123e53;
    background: rgba(223, 248, 238, 0.95);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.header-cta {
    background: #14a3d2;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 12px 26px rgba(20, 163, 210, 0.18);
    color: #ffffff;
    font-size: 0.86rem;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(20, 163, 210, 0.24);
    filter: saturate(1.06);
}

.mobile-menu-toggle {
    display: inline-flex;
}

.mobile-menu {
    display: grid;
    gap: 0.35rem;
}

.mobile-nav-link {
    display: block;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    color: #35576a;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background: rgba(223, 248, 238, 0.95);
    color: #123e53;
    transform: translateX(2px);
}

.mobile-nav-cta {
    background: #14a3d2;
    box-shadow: 0 12px 26px rgba(20, 163, 210, 0.18);
}

.mobile-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(20, 163, 210, 0.24);
}

body.mobile-menu-open {
    overflow: hidden;
}

#mobile-menu {
    transform-origin: top center;
    animation: menu-pop 0.24s ease;
}

.reveal-left,
.reveal-right,
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal-left {
    transform: translateX(-36px);
}

.reveal-right {
    transform: translateX(36px);
}

.reveal-in {
    opacity: 1;
    transform: none;
}

.hero-copy-wrap {
    animation: heroFadeIn 0.85s ease both;
}

.hero-visual {
    animation: heroFadeIn 1s ease 0.12s both;
}

section {
    position: relative;
}

.home-section {
    background: #ffffff;
    min-height: 74vh;
}

.home-content-grid {
    width: 100%;
    min-height: calc(74vh - 3.5rem);
    align-items: stretch;
}

.home-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20, 152, 209, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 152, 209, 0.015) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 86%);
    pointer-events: none;
    z-index: 0;
}

.home-arc {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(189, 214, 231, 0.35);
    pointer-events: none;
    z-index: 0;
}

.home-arc-a {
    width: 48rem;
    height: 48rem;
    top: -18rem;
    right: -10rem;
}

.home-arc-b {
    width: 34rem;
    height: 34rem;
    top: 2rem;
    right: 10rem;
}

.home-arc-c {
    width: 28rem;
    height: 28rem;
    bottom: -8rem;
    left: -6rem;
    border-color: rgba(172, 220, 198, 0.32);
}

.home-panel {
    position: absolute;
    border-radius: 36px;
    pointer-events: none;
    z-index: 0;
}

.home-panel-a {
    top: 8rem;
    right: 6%;
    width: 18rem;
    height: 28rem;
    background: rgba(238, 245, 251, 0.95);
}

.home-panel-b {
    bottom: 4rem;
    left: 4%;
    width: 10rem;
    height: 10rem;
    background: rgba(240, 250, 245, 0.92);
    border-radius: 999px;
}

.home-line-cluster {
    position: absolute;
    width: 10rem;
    height: 8rem;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(20, 152, 209, 0.22) 0 2px,
        transparent 2px 12px
    );
}

.home-line-cluster-a {
    top: 6rem;
    left: 8rem;
}

.home-line-cluster-b {
    right: 10rem;
    bottom: 5rem;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(9, 176, 103, 0.22) 0 2px,
        transparent 2px 12px
    );
}

.glass-panel {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(0);
    opacity: 0.7;
    pointer-events: none;
}

.hero-orb-a {
    top: 7rem;
    left: -4rem;
    width: 14rem;
    height: 14rem;
    background: radial-gradient(circle, rgba(20, 152, 209, 0.2), transparent 70%);
}

.hero-orb-b {
    right: 2rem;
    bottom: -2rem;
    width: 17rem;
    height: 17rem;
    background: radial-gradient(circle, rgba(8, 176, 102, 0.16), transparent 72%);
}

.hero-orb-c {
    top: 12rem;
    right: 18%;
    width: 10rem;
    height: 10rem;
    background: radial-gradient(circle, rgba(253, 236, 239, 0.95), transparent 68%);
}

.hero-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #1b2430;
    font-size: clamp(3.4rem, 6vw, 5.4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 0.98;
}

.hero-title span {
    background: linear-gradient(135deg, var(--aqua), var(--teal) 55%, var(--emerald));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title-accent {
    font-style: italic;
}

.hero-copy,
.section-copy {
    color: var(--muted);
}

.hero-copy-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 5.5rem;
}

.hero-points {
    display: grid;
    gap: 0.75rem;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #345264;
    font-size: 0.98rem;
    font-weight: 500;
}

.hero-point::before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: rgba(9, 176, 103, 0.12);
    color: #09b067;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.primary-button {
    background: #14a3d2;
    box-shadow: 0 16px 34px rgba(20, 152, 209, 0.22);
}

.primary-button,
.secondary-button,
.peptide-filter {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.secondary-button {
    border: 1px solid rgba(20, 152, 209, 0.18);
    background: rgba(255, 255, 255, 0.72);
    color: #1c556b;
    box-shadow: 0 10px 24px rgba(25, 67, 83, 0.08);
}

.box {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 253, 248, 0.92)),
        linear-gradient(135deg, rgba(20, 152, 209, 0.07), rgba(253, 236, 239, 0.24));
    border: 1px solid rgba(20, 152, 209, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(31, 89, 94, 0.08);
    padding: 18px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(21, 84, 89, 0.14);
    border-color: rgba(8, 176, 102, 0.18);
}

.section-title {
    color: #1b2430;
}

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

.soft-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 255, 250, 0.9));
}

.what-section {
    background: #e7f2fb;
}

.warm-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 245, 248, 0.88));
}

.why-peptides-section {
    background: #ffffff;
}

.why-revamp-section {
    overflow: hidden;
    background-color: #0b2332;
    background-image: linear-gradient(135deg, #12364b 0%, #1f8fb4 42%, #28a7b5 72%, #3ba7d6 100%);
}

.why-revamp-section,
.why-revamp-section h2,
.why-revamp-section h3,
.why-revamp-section p,
.why-revamp-section span,
.why-revamp-section a {
    color: #ffffff;
}

.why-revamp-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.8px, transparent 0.8px);
    background-size: 24px 24px;
    opacity: 0.2;
    pointer-events: none;
}

.why-revamp-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at calc(100% + 6rem) -6rem, rgba(103, 232, 249, 0.3), transparent 24rem),
        radial-gradient(circle at -6rem calc(100% + 6rem), rgba(125, 211, 252, 0.25), transparent 25rem),
        radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.1), transparent 28rem);
    pointer-events: none;
}

.why-revamp-card {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.55rem 1.65rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.why-revamp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.why-revamp-card-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.why-revamp-card-copy {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

.why-revamp-cta {
    letter-spacing: -0.01em;
    color: #2497d4 !important;
}

.why-revamp-cta span {
    font-size: 1.05em; 
    line-height: 1;
    color: #2497d4 !important;
}

.why-peptides-shell {
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.why-peptides-shell::before {
    content: none;
}

.process-section {
    background: #eef6fd;
}

.process-badge {
    border-color: rgba(20, 152, 209, 0.18);
    background: #ffffff;
    color: #1498d1;
    box-shadow: 0 10px 20px rgba(20, 152, 209, 0.08);
}

.process-title {
    color: #172533;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3rem, 5vw, 4.25rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
}

.process-title span {
    background: linear-gradient(135deg, var(--aqua), var(--teal) 55%, var(--emerald));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-intro {
    max-width: 36rem;
    color: #5e7181;
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.process-card {
    min-height: 10.75rem;
    border-radius: 1.6rem;
    border: 1.5px solid rgba(20, 152, 209, 0.65);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.65rem 1.5rem;
}

.process-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-size: 2rem;
    line-height: 1;
    color: inherit;
}

.process-card-title {
    margin-top: 1rem;
    color: #1498d1;
    font-size: 1.05rem;
}

.process-card-copy {
    max-width: 15rem;
    color: #425568;
    line-height: 1.55;
}

.provider-section {
    background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.provider-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.provider-portrait-card {
    position: relative;
    padding: 2rem 1.5rem 4.75rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 245, 251, 0.96));
    border: 1px solid rgba(20, 152, 209, 0.12);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.provider-portrait-panel {
    position: absolute;
    inset: 1.25rem 1.25rem auto auto;
    width: 11rem;
    height: 14rem;
    border-radius: 1.75rem;
    background: rgba(220, 238, 248, 0.9);
}

.provider-portrait-frame {
    position: relative;
    z-index: 1;
    max-width: 20rem;
    margin: 0 auto;
    border-radius: 1.9rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.provider-photo {
    display: block;
    width: 100%;
    height: 24rem;
    object-fit: cover;
    object-position: center top;
}

.provider-floating-note {
    position: absolute;
    left: 1.5rem;
    bottom: 1.4rem;
    z-index: 2;
    max-width: 16rem;
    padding: 1rem 1.1rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 152, 209, 0.12);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.provider-note-kicker {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1498d1;
}

.provider-floating-note p {
    margin-top: 0.45rem;
    color: #415565;
    line-height: 1.55;
}

.provider-copy-card {
    padding: 2rem 2rem 2.25rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(20, 152, 209, 0.12);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

.provider-badge {
    background: #ffffff;
}

.provider-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #172533;
}

.provider-copy {
    color: #536678;
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 36rem;
}

.provider-highlight-grid {
    display: grid;
    gap: 0.9rem;
}

.provider-highlight-item {
    padding: 1rem 1.1rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 253, 0.98));
    border: 1px solid rgba(20, 152, 209, 0.12);
    color: #294356;
    line-height: 1.65;
}

.provider-trust-line {
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #1498d1;
}

.provider-layout {
    gap: 2.2rem;
}

.provider-copy-card {
    padding: 2.4rem 2.2rem 2.5rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(20, 152, 209, 0.12);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

.provider-copy {
    max-width: 38rem;
}

.provider-micro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.provider-micro-card {
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 251, 0.98));
    border: 1px solid rgba(20, 152, 209, 0.12);
}

.provider-micro-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1498d1;
}

.provider-micro-value {
    margin-top: 0.45rem;
    color: #172533;
    font-size: 1.1rem;
    font-weight: 700;
}

.provider-highlight-grid {
    gap: 1rem;
}

.provider-highlight-item {
    border-radius: 1.25rem;
}

.provider-portrait-card {
    min-height: 100%;
    padding: 1.8rem 1.5rem 4.75rem;
}

.provider-portrait-frame {
    max-width: 22rem;
}

.provider-photo {
    height: 27rem;
}

.provider-floating-note {
    left: 1.35rem;
    bottom: 1.35rem;
}

@media (min-width: 768px) {
    .provider-layout {
        grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
    }
}

.provider-section {
    background: #ffffff;
}

.provider-years-badge {
    animation: float-slow 5.6s ease-in-out infinite;
    transform-origin: center;
    will-change: transform;
}

.provider-studio {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.provider-studio-copy {
    padding: 2rem 0;
}

.provider-studio-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.8rem, 4.6vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: #182635;
}

.provider-studio-subtitle {
    color: #1498d1;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.provider-studio-copytext {
    max-width: 36rem;
    color: #55697b;
    font-size: 1.04rem;
    line-height: 1.8;
}

.provider-studio-list {
    display: grid;
    gap: 0.9rem;
}

.provider-studio-item {
    padding: 1rem 1.15rem;
    border-left: 3px solid #1498d1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 252, 0.98));
    border-radius: 0 1rem 1rem 0;
    color: #2a4354;
    line-height: 1.65;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.provider-studio-signoff {
    color: #1498d1;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.provider-studio-portrait {
    position: relative;
    padding: 1.2rem 1.2rem 4.6rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(229, 242, 249, 0.9), rgba(255, 255, 255, 0.96));
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1);
}

.provider-studio-frame {
    overflow: hidden;
    border-radius: 1.8rem;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.provider-studio-photo {
    display: block;
    width: 100%;
    height: 31rem;
    object-fit: cover;
    object-position: center top;
}

.provider-studio-caption {
    position: absolute;
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.provider-studio-caption-label {
    color: #1498d1;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.provider-studio-caption p {
    margin-top: 0.4rem;
    color: #526677;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .provider-studio {
        grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.95fr);
    }
}

.why-peptides-lead {
    max-width: 44rem;
    line-height: 1.8;
    color: #64748b;
}

.why-gradient-text {
    background: linear-gradient(135deg, #1f8db7, #12b4b6 55%, #08b066);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-toggle {
    position: relative;
    background: #ffffff !important;
}

.why-toggle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 10rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.9rem;
    background: transparent !important;
    color: #64748b !important;
    box-shadow: none !important;
    opacity: 0.82;
    letter-spacing: 0.01em;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

.why-toggle-button:hover {
    transform: translateY(-1px);
}

.why-toggle-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(31, 141, 183, 0.14);
}

.why-toggle-button.is-active {
    background: #ffffff !important;
    color: #0f4f69 !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1) !important;
    transform: translateY(-1px) scale(1.01);
    opacity: 1;
}

.why-toggle-dot {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.why-toggle-button.is-active .why-toggle-dot {
    transform: scale(1.08);
}

.why-services-grid {
    display: grid;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.why-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 25.5rem;
    overflow: hidden;
    border-radius: 1.35rem;
    border: 1px solid #dbe3ee;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.12),
        0 4px 12px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.why-service-card:hover {
    transform: translateY(-4px);
    border-color: #bfd8ff;
    box-shadow:
        0 30px 64px rgba(15, 23, 42, 0.16),
        0 8px 20px rgba(31, 141, 183, 0.1);
}

.why-service-media {
    position: relative;
    height: 10.75rem;
    overflow: hidden;
    background: #ffffff;
}

.why-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-service-card:hover .why-service-image {
    transform: scale(1.05);
}

.why-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.38));
}

.why-service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.why-service-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.3rem 1.25rem 1.2rem;
    border-top: 1px solid #edf0f4;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.why-service-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.75rem;
    line-height: 1.08;
    font-weight: 700;
    color: #111827;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.why-service-copy,
.why-service-details {
    margin-top: 0.8rem;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.72;
}

.why-service-copy {
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.why-service-more {
    border: 0;
    background: transparent;
    padding: 0;
    align-self: flex-start;
    color: #1f8db7;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    letter-spacing: 0.01em;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.why-service-more::-webkit-details-marker {
    display: none;
}

.why-service-more::marker {
    content: "";
}

.why-service-details {
    padding-top: 0.1rem;
}

.why-service-more:hover {
    color: #0f6d83;
}

.why-service-expand {
    padding-top: 0.35rem;
}

.why-service-more-close {
    display: none;
}


.why-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 1.15rem;
    border: 1px solid #e6e8ee;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    opacity: 0.68;
}

.why-card-media {
    position: relative;
    height: 10.2rem;
    overflow: hidden;
    background: #dcebf0;
    border-bottom: 1px solid #edf0f4;
}

.why-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.14));
}

.why-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.why-card-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.why-card.is-visible {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.why-card-body {
    padding: 1.25rem 1.25rem 1.35rem;
}

.why-card-title {
    margin-top: 0.55rem;
    padding: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    color: #162033;
}

.why-card-kicker {
    margin-top: 0;
    padding: 0;
    color: #1498d1;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.why-card-copy {
    margin-top: 0.75rem;
    padding: 0;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
}

.feature-card,
.info-card,
.provider-card,
.form-shell,
.peptide-shell,
.stat-card,
.step-card,
.faq-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.feature-card {
    border-radius: 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0c6370;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(20, 152, 209, 0.12);
}

.badge::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--aqua), var(--emerald));
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    border-radius: 24px;
    padding: 1.25rem;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #56707e;
}

.stat-value {
    margin-top: 0.4rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #132631;
}

.stat-copy {
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.peptide-filter {
    border: 1px solid rgba(20, 152, 209, 0.14);
    background: rgba(255, 255, 255, 0.74);
    color: #245066;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.peptide-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(20, 152, 209, 0.12);
}

.peptide-filter.is-active {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--aqua), var(--teal) 55%, var(--emerald));
    box-shadow: 0 14px 28px rgba(18, 180, 182, 0.2);
}

.peptide-card-image-wrap {
    height: 14rem;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(230, 247, 250, 0.9), rgba(244, 251, 252, 0.95));
}

.peptide-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.form-field {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(20, 152, 209, 0.12);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.95rem 1rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field:focus {
    border-color: rgba(20, 152, 209, 0.4);
    box-shadow: 0 0 0 4px rgba(20, 152, 209, 0.1);
}

.image-frame {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-pep-image {
    max-height: 22rem;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.what-copy {
    font-size: 1.08rem;
    line-height: 1.85;
}

.term-peptide {
    color: #1498d1;
    font-weight: 600;
}

.term-therapy {
    color: #1498d1;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    min-height: clamp(31rem, 60vh, 39rem);
    align-self: stretch;
    max-width: 38rem;
    margin-left: 1.5rem;
}

.hero-image {
    position: absolute;
    overflow: hidden;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 24px 48px rgba(17, 66, 86, 0.14);
    z-index: 1;
    animation: float-slow 8s ease-in-out infinite;
    transform-origin: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroFadeIn 0.9s ease-out;
}

.hero-image-main {
    top: 2.25rem;
    right: -0.55rem;
    width: 22rem;
    height: 21rem;
}

.hero-image-secondary {
    top: 8rem;
    right: 21.5rem;
    width: 11.5rem;
    height: 11.75rem;
    animation-duration: 9.5s;
}

.hero-image-main img {
    object-position: center;
}

.hero-image-secondary img {
    object-position: left center;
}


.hero-stat-card,
.hero-info-card {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(20, 152, 209, 0.08);
    box-shadow: 0 18px 34px rgba(17, 66, 86, 0.1);
}

.hero-stat-card {
    top: 0.9rem;
    left: 0rem;
    padding: 1rem 1.2rem;
    border-radius: 1.35rem;
    min-width: 8.5rem;
}

.hero-stat-value {
    color: #18aab6;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.hero-stat-label {
    margin-top: 0.35rem;
    color: #6a7884;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-info-card {
    left: 0rem;
    bottom: 6rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.15rem;
    border-radius: 1.4rem;
    max-width: 18rem;
}

.hero-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(20, 152, 209, 0.14), rgba(9, 176, 103, 0.14));
    color: #127e89;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-info-title {
    color: #1d2e39;
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-info-copy {
    margin-top: 0.15rem;
    color: #4e8b5f;
    font-size: 0.92rem;
    font-weight: 500;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menu-pop {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-12px) rotate(1deg);
    }
    66% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.05);
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(72px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(72px) rotate(-360deg);
    }
}

.hero-image-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(42px);
    z-index: 1;
    animation: pulse-glow 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-image-glow-a {
    width: 15rem;
    height: 15rem;
    top: 18%;
    left: 8%;
    background: hsl(195 65% 43% / 0.14);
}

.hero-image-glow-b {
    width: 17rem;
    height: 17rem;
    right: 4%;
    bottom: 10%;
    background: hsl(158 64% 40% / 0.14);
    animation-duration: 8s;
}

.hero-orbit {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 0;
    height: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-orbit-a {
    animation: orbit 12s linear infinite;
}

.hero-orbit-b {
    animation: orbit 8s linear infinite reverse;
}

@media (max-width: 768px) {
    .home-section {
        min-height: auto;
    }

    .home-content-grid {
        min-height: auto;
    }

    .hero-copy-wrap {
        min-height: auto;
        padding-block: 0;
    }

    .hero-visual {
        min-height: 27rem;
        margin-top: 1rem;
    }

    /* .hero-image-main {
        top: 1.5rem;
        right: 5;
        width: 15.5rem;
        height: 15rem;
    }

    .hero-image-secondary {
        top: 6rem;
        left: -10;
        width: 9.8rem;
        height: 10.4rem;
    } */

    .hero-stat-card {
        top: 0;
        left: 0;
        padding: 0.8rem 0.95rem;
        min-width: 7rem;
    }

    .hero-stat-value {
        font-size: 1.4rem;
    }

    .hero-info-card {
        left: 0;
        bottom: 0.25rem;
        max-width: 15rem;
        padding: 0.85rem 0.95rem;
    }
}

.hero-orbit-dot {
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: hsl(195 65% 43% / 0.4);
    box-shadow: 0 0 18px hsl(195 65% 43% / 0.28), 0 0 42px hsl(195 65% 43% / 0.1);
}

.hero-orbit-b .hero-orbit-dot {
    width: 0.55rem;
    height: 0.55rem;
    background: hsl(158 64% 40% / 0.5);
    box-shadow: 0 0 16px hsl(158 64% 40% / 0.26), 0 0 36px hsl(158 64% 40% / 0.08);
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.5rem;
    align-items: stretch;
}

.copy-panel {
    border-radius: 32px;
    padding: 2rem;
}

.bullet-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.bullet-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    color: var(--muted);
}

.bullet-item::before {
    content: "";
    width: 0.9rem;
    height: 0.9rem;
    flex: 0 0 0.9rem;
    border-radius: 999px;
    margin-top: 0.25rem;
    background: linear-gradient(135deg, var(--aqua), var(--emerald));
    box-shadow: 0 0 0 4px rgba(20, 152, 209, 0.08);
}

.benefit-grid,
.insight-grid,
.step-grid,
.faq-grid {
    display: grid;
    gap: 1.25rem;
}

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

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

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

.benefit-card,
.insight-card,
.step-card,
.faq-card {
    border-radius: 28px;
    padding: 1.5rem;
}

.benefit-icon,
.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    font-weight: 700;
    color: #1498d1;
    background: #ffffff;
    box-shadow: none;
}

.mini-title {
    margin-top: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #162632;
}

.eyebrow {
    color: #0f7382;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-shell {
    border-radius: 36px;
    padding: 2rem;
}

.provider-image-shell {
    position: relative;
    overflow: hidden;
}

.provider-image-shell::after {
    content: "";
    position: absolute;
    inset: auto 1.5rem 1.5rem 1.5rem;
    height: 4.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(20, 152, 209, 0.12), rgba(8, 176, 102, 0.18));
}

.provider-photo {
    position: relative;
    z-index: 1;
    border: 8px solid rgba(255, 255, 255, 0.78);
}

.quote-card {
    border-radius: 28px;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(223, 248, 238, 0.66));
    border: 1px solid rgba(20, 152, 209, 0.1);
}

.quote-mark {
    font-size: 2.5rem;
    line-height: 1;
    color: #12b4b6;
}

@media (max-width: 1024px) {
    .benefit-grid,
    .insight-grid,
    .step-grid,
    .faq-grid,
    .stat-grid,
    .split-panel {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.6rem, 11vw, 3.75rem);
        line-height: 1.04;
    }

    .hero-orb-a,
    .hero-orb-b,
    .hero-orb-c {
        display: none;
    }

    .hero-point {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-floating-card {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .header-shell {
        min-height: 4.25rem;
    }

    .brand-mark {
        width: 5.7rem;
        height: auto;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .copy-panel,
    .section-shell {
        padding: 1.5rem;
    }

    .why-peptides-shell {
        padding: 0;
    }

    .why-toggle {
        width: 100%;
    }

    .why-toggle-button {
        min-width: 0;
        flex: 1;
        padding-inline: 0.75rem;
    }

    .why-card-title {
        font-size: 1.55rem;
    }

    .why-service-title {
        font-size: 1.55rem;
    }

    .why-revamp-section {
        padding-block: 5rem;
    }

    .provider-years-badge {
        right: 0.5rem;
        top: -1.5rem;
        padding: 1rem 1.1rem;
    }

    #reviews,
    #contact,
    #why-peptides,
    #what,
    #service {
        overflow: hidden;
    }

.peptide-card {
  width: auto;
  text-align: left;
  margin: 0;
  height: 100%;
}

.peptide-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.peptide-name {
  margin-top: 8px;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  height: 200px;
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.product-info {
  padding: 15px;
  flex-grow: 1;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-category {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.product-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.product-btn:hover {
  background: #333;
}
}
