.products-hero {
    position: relative;
    background: #ffffff;
    padding: 32px 0 40px;
    border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}
.products-breadcrumb {
    position: absolute;
    top: 22px;
    left: var(--container-gutter);
    margin: 0;
    justify-content: flex-start;
}
.products-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
.products-hero-text h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 4.6vw, 58px);
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-align: left;
}
.products-hero-text {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    align-items: flex-start;
    text-align: left;
    max-width: 960px;
    padding-top: 148px;
}
.products-hero-intro {
    color: #3c5065;
    font-size: 17px;
    line-height: 1.75;
    max-width: 720px;
    margin-left: 0;
    margin-right: 0;
}
.products-hero-intro p {
    margin: 0 0 12px;
}
.products-hero-intro p:last-child {
    margin-bottom: 0;
}

.products-search {
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9));
    border: 1px solid rgba(15, 76, 129, 0.16);
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: 0 16px 36px rgba(15, 76, 129, 0.1);
}
.products-search--below {
    max-width: 980px;
    margin: 0;
}
.products-search-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #0fa5c9;
    margin-bottom: 12px;
}
.products-search-row {
    display: flex;
    gap: 14px;
    align-items: center;
}
.products-search-input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid rgba(15, 76, 129, 0.18);
    background: #fbfdff;
    font: inherit;
    color: #1c2a39;
    min-width: 520px;
}
.products-search-input:focus {
    outline: none;
    border-color: #00a9a0;
    box-shadow: 0 0 0 3px rgba(0, 169, 160, 0.16);
}
.products-search-btn {
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #00b8ae, #00a9a0);
    color: #0b1014;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 169, 160, 0.28);
    min-width: 120px;
}

.products-section {
    background: #dfeeed;
    padding: 32px 0 70px;
    scroll-margin-top: 120px;
}
.products-toolbar {
    display: grid;
    gap: 18px;
    justify-items: center;
    margin: 28px auto 0;
    max-width: 980px;
    width: 100%;
}
.products-toolbar--under {
    justify-items: center;
    margin-top: 205px;
}
.products-toolbar--under .products-filters {
    justify-content: center;
}
.products-toolbar--under .products-search {
    max-width: 980px;
    width: 100%;
    margin: 0;
}
.products-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(31, 169, 158, 0.35);
    color: #0f6b66;
    background: rgba(31, 169, 158, 0.08);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.filter-chip.is-active,
.filter-chip:hover {
    background: #00a9a0;
    border-color: #00a9a0;
    color: #0b1014;
}
.products-section .products-grid {
    gap: 32px;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-items: center;
    justify-content: center;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: start;
    justify-items: center;
}
.products-empty {
    margin: 0;
    font-size: 16px;
    color: #4b5c6d;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 38px rgba(15, 76, 129, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px rgba(15, 76, 129, 0.12);
}
.product-card .thumb {
    position: relative;
    height: 240px;
    background: #eef2f7;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.product-card .thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.12) 100%);
}
.product-card .content {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.product-card h3 {
    margin: 0;
    font-size: 19px;
    color: #0f2233;
}
.product-card h3 a {
    color: inherit;
}
.product-card p {
    margin: 0;
    color: #516274;
    line-height: 1.6;
    font-size: 14.5px;
}
.product-card .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}
.product-card .tags .lang-link {
    font-size: 11px;
    border-radius: 999px;
    border-color: rgba(31, 169, 158, 0.4);
    color: #0f6b66;
    background: rgba(31, 169, 158, 0.08);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.products-section .product-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 520px;
}
.products-section .product-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}
.products-section .product-card .thumb {
    height: 520px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 14px;
}
.products-section .product-card .thumb::after {
    display: none;
}
.products-section .product-card .content {
    padding: 4px 4px 0;
    gap: 6px;
}
.products-section .product-card h3 {
    font-size: 19px;
    margin: 0 0 6px;
    font-weight: 700;
    letter-spacing: -0.2px;
    text-transform: uppercase;
}
.products-section .product-card p {
    color: #3b4251;
    font-size: 15px;
    line-height: 1.45;
}
.products-section .product-card .tags {
    margin-top: 12px;
}

.product-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #eef5ff 0%, #f3fbf9 45%, #e7f7f4 100%);
    padding: 52px 0 36px;
    border-bottom: 1px solid rgba(15, 76, 129, 0.08);
}
.product-hero .container {
    position: relative;
    z-index: 3;
}
.product-breadcrumb {
    margin-bottom: 18px;
}
.product-hero--visual {
    min-height: clamp(360px, 58vw, 720px);
    padding: 26px 0 34px;
    border-bottom: none;
    background: #0d1117;
}
.product-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(4, 8, 14, 0.72) 0%, rgba(4, 8, 14, 0.42) 45%, rgba(4, 8, 14, 0.2) 100%);
    z-index: 2;
}
.product-breadcrumb--on-image a,
.product-breadcrumb--on-image span {
    color: rgba(255, 255, 255, 0.92);
}
.product-hero-brand {
    display: grid;
    align-content: end;
    gap: 18px;
    min-height: clamp(280px, 42vw, 520px);
    max-width: 720px;
    padding: 28px 0 10px;
}
.product-hero-logo {
    width: min(440px, 84vw);
    max-height: 130px;
    object-fit: contain;
}
.product-hero-brand-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 5.6vw, 66px);
    letter-spacing: -0.02em;
}
.product-hero-brand-summary {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    font-size: clamp(15px, 1.9vw, 20px);
    line-height: 1.55;
}
.product-hero--visual .product-tags .lang-link {
    color: #ecffff;
    border-color: rgba(149, 255, 247, 0.62);
    background: rgba(8, 204, 186, 0.22);
}
.product-hero-visual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
    gap: clamp(18px, 3vw, 56px);
    align-items: end;
    min-height: clamp(300px, 46vw, 560px);
}
.product-hero-visual-grid--single {
    grid-template-columns: minmax(0, 1fr);
}
.product-hero-visual-grid .product-hero-brand {
    min-height: auto;
    max-width: 680px;
}
.product-hero-visual-media {
    justify-self: end;
    align-self: end;
    width: min(430px, 34vw);
    max-width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
}
.product-hero-visual-product {
    display: block;
    width: 100%;
    max-height: min(62vh, 560px);
    object-fit: contain;
}
.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}
.product-hero-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(15, 76, 129, 0.55);
}
.product-hero-text h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4.2vw, 50px);
    letter-spacing: -0.02em;
}
.product-hero-summary {
    margin: 0 0 18px;
    color: #435466;
    font-size: 16px;
    line-height: 1.7;
}
.product-hero-media {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(15, 76, 129, 0.12);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(15, 76, 129, 0.1);
}
.product-cover {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}
.product-tags .lang-link {
    border-radius: 999px;
    font-size: 12px;
    border-color: rgba(31, 169, 158, 0.4);
    color: #0f6b66;
    background: rgba(31, 169, 158, 0.08);
}

.product-body {
    background: #dfeeed;
    padding: 34px 0 70px;
}
.product-body--nad {
    background: #f0f0f0;
}
.product-nad-proof {
    background: #ffffff;
    padding: clamp(44px, 5.2vw, 86px) 0;
}
.product-nad-proof-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 72px);
    align-items: center;
}
.product-nad-proof-media img {
    display: block;
    width: min(100%, 640px);
    margin: 0 auto;
    height: auto;
    object-fit: contain;
}
.product-nad-proof-content h2 {
    margin: 0 0 18px;
    font-size: clamp(31px, 3.2vw, 58px);
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #0f1215;
}
.product-nad-proof-content h2 span {
    color: #61bac0;
}
.product-nad-proof-content .lead {
    margin: 0 0 20px;
    font-size: clamp(16px, 1.35vw, 23px);
    line-height: 1.55;
    color: #1d2024;
    max-width: 700px;
}
.product-nad-proof-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 16px;
}
.product-nad-proof-list li {
    margin: 0;
    font-size: clamp(17px, 1.38vw, 29px);
    line-height: 1.32;
    color: #1a1f23;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.product-nad-proof-list .check {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #61bac0;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
}
.product-nad-proof-content .note {
    margin: 0;
    font-size: clamp(16px, 1.24vw, 24px);
    line-height: 1.45;
    color: #15191d;
    max-width: 720px;
}
.product-nad-proof-content .note strong {
    font-weight: 800;
}
.product-nad-meet {
    background: #ffffff;
    padding: clamp(36px, 4.8vw, 72px) 0;
}
.product-nad-meet-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: clamp(26px, 4vw, 68px);
    align-items: start;
}
.product-nad-meet-grid--single {
    grid-template-columns: minmax(0, 1fr);
}
.product-nad-meet-left h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 3.4vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0d1117;
}
.product-nad-meet-left h2 span {
    color: #61bac0;
}
.product-nad-meet-left .lead-strong {
    margin: 0 0 14px;
    font-size: clamp(19px, 1.45vw, 27px);
    line-height: 1.35;
    font-weight: 800;
    color: #171d22;
}
.product-nad-meet-left .desc {
    margin: 0 0 22px;
    color: #1a2026;
    font-size: clamp(18px, 1.28vw, 24px);
    line-height: 1.45;
    max-width: 760px;
}
.product-nad-meet-left-image {
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
}
.product-nad-meet-left-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.product-nad-meet-right {
    background: transparent;
    border-radius: 18px;
    border: none;
    overflow: hidden;
    min-height: 0;
    align-self: center;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-nad-meet-right img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}
.product-nad-why-faq {
    background: #ffffff;
}
.product-nad-why-faq-hero {
    position: relative;
    min-height: clamp(300px, 38vw, 470px);
    background: #1f2a35;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.product-nad-why-faq-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 22, 0.52);
}
.product-nad-why-faq-head {
    position: relative;
    z-index: 2;
    min-height: clamp(300px, 38vw, 470px);
    display: grid;
    place-items: center;
    text-align: center;
}
.product-nad-why-faq-head h2 {
    margin: 0;
    color: #f7fbff;
    font-size: clamp(36px, 4vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.product-nad-why-faq-panel-wrap {
    position: relative;
    z-index: 3;
    margin-top: clamp(-112px, -7.5vw, -76px);
    max-width: min(1180px, calc(100% - 96px));
    margin-left: auto;
    margin-right: auto;
    padding-bottom: clamp(30px, 4vw, 54px);
}
.product-nad-why-faq-panel {
    background: #5fbcc1;
    color: #f6feff;
    padding: clamp(14px, 1.8vw, 24px) clamp(20px, 2.8vw, 40px);
}
.product-nad-why-faq-item {
    border-bottom: 2px solid rgba(245, 255, 255, 0.66);
}
.product-nad-why-faq-item:last-child {
    border-bottom: 0;
}
.product-nad-why-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: clamp(20px, 2vw, 26px) 0;
    font-size: clamp(34px, 2.2vw, 48px);
    line-height: 1.12;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.product-nad-why-faq-item summary::-webkit-details-marker {
    display: none;
}
.product-nad-why-faq-item summary::after {
    content: "⌄";
    color: #f1ffff;
    font-size: clamp(30px, 1.9vw, 44px);
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}
.product-nad-why-faq-item[open] summary::after {
    transform: rotate(180deg);
}
.product-nad-why-faq-answer {
    padding: 0 0 clamp(20px, 2.5vw, 34px);
    font-size: clamp(22px, 1.45vw, 30px);
    line-height: 1.5;
    color: rgba(245, 255, 255, 0.98);
}
.product-nad-why-faq-answer p {
    margin: 0 0 12px;
}
.product-nad-why-faq-answer p:last-child {
    margin-bottom: 0;
}
.product-nad-why-faq + .product-nad-vitality {
    padding-top: 44px;
}
.product-nad-vitality {
    padding: 86px 0;
    background: #f5f9f9;
    color: #0f172a;
}
.product-nad-vitality-head {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 42px;
}
.product-nad-vitality-head h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.15;
}
.product-nad-vitality-head h2 span {
    color: #00a9a0;
}
.product-nad-vitality-head p {
    margin: 0;
    color: #55616d;
    line-height: 1.6;
    font-size: 16px;
}
.product-nad-vitality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.product-nad-vitality-card {
    background: #ffffff;
    border: 1px solid rgba(0, 169, 160, 0.35);
    border-radius: 18px;
    min-height: 0;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 24px rgba(12, 20, 22, 0.06);
}
.product-nad-vitality-icon {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(0, 169, 160, 0.5);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00a9a0;
    margin-bottom: 18px;
}
.product-nad-vitality-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.product-nad-vitality-icon svg {
    width: 32px;
    height: 32px;
}
.product-nad-vitality-card h3 {
    margin: 0;
    color: #0f6b66;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}
.product-nad-clinics-trust {
    background: #f4f4f4;
}
.product-nad-clinics-trust-hero {
    position: relative;
    min-height: clamp(300px, 36vw, 460px);
    background: #1b2027;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.product-nad-clinics-trust-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 18, 0.58);
}
.product-nad-clinics-trust-head {
    position: relative;
    z-index: 2;
    min-height: clamp(300px, 36vw, 460px);
    display: grid;
    place-items: center;
    text-align: center;
}
.product-nad-clinics-trust-head h2 {
    margin: 0 auto;
    max-width: min(1200px, 92vw);
    color: #f7fbff;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 600;
}
.product-nad-clinics-trust-card-wrap {
    position: relative;
    z-index: 3;
    margin-top: clamp(-92px, -6vw, -64px);
    max-width: min(1080px, calc(100% - 96px));
    margin-left: auto;
    margin-right: auto;
    padding-bottom: clamp(30px, 4vw, 56px);
}
.product-nad-clinics-trust-card {
    background: #5fbcc1;
    color: rgba(245, 255, 255, 0.98);
    padding: clamp(20px, 2.2vw, 32px) clamp(18px, 2.4vw, 34px);
}
.product-nad-clinics-trust-item + .product-nad-clinics-trust-item {
    margin-top: clamp(20px, 2.4vw, 30px);
}
.product-nad-clinics-trust-item h3 {
    margin: 0 0 4px;
    color: #f6feff;
    font-size: clamp(22px, 1.65vw, 31px);
    line-height: 1.2;
    font-weight: 700;
}
.product-nad-clinics-trust-item .role {
    margin: 0;
    color: rgba(242, 255, 255, 0.98);
    font-size: clamp(18px, 1.35vw, 26px);
    line-height: 1.34;
    font-weight: 500;
}
.product-nad-clinics-trust-item .quote {
    margin: clamp(12px, 1.5vw, 18px) 0 0;
    color: rgba(245, 255, 255, 0.98);
    font-size: clamp(18px, 1.35vw, 26px);
    line-height: 1.42;
    font-style: italic;
    font-weight: 400;
}
.product-nad-evidence {
    background: #ffffff;
    padding: clamp(26px, 3vw, 44px) 0 clamp(38px, 4.4vw, 66px);
}
.product-nad-evidence-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 28px);
}
.product-nad-evidence-card {
    background: transparent;
    border: 2px solid rgba(0, 169, 160, 0.64);
    border-radius: 0;
    padding: clamp(16px, 1.6vw, 24px) clamp(12px, 1.2vw, 18px);
    text-align: center;
    min-height: clamp(210px, 17.5vw, 300px);
}
.product-nad-evidence-icon {
    width: clamp(58px, 4.2vw, 74px);
    height: clamp(58px, 4.2vw, 74px);
    margin: 0 auto clamp(10px, 1vw, 14px);
    border: 2px solid rgba(0, 169, 160, 0.8);
    border-radius: 999px;
    color: #16a8a2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product-nad-evidence-icon img {
    width: clamp(24px, 1.8vw, 32px);
    height: clamp(24px, 1.8vw, 32px);
    object-fit: contain;
}
.product-nad-evidence-icon svg {
    width: clamp(22px, 1.65vw, 30px);
    height: clamp(22px, 1.65vw, 30px);
}
.product-nad-evidence-card h3 {
    margin: 0 0 6px;
    color: #168f89;
    font-size: clamp(20px, 1.45vw, 26px);
    line-height: 1.24;
    font-weight: 700;
}
.product-nad-evidence-card p {
    margin: 0;
    color: #262c33;
    font-size: clamp(16px, 1.15vw, 22px);
    line-height: 1.38;
}
.product-nad-evidence-certified {
    margin: clamp(22px, 2.5vw, 36px) 0 clamp(16px, 1.6vw, 24px);
    text-align: center;
    color: #52b8bf;
    font-size: clamp(20px, 1.4vw, 26px);
    font-weight: 500;
    line-height: 1.2;
}
.product-nad-evidence-cert-grid {
    max-width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.4vw, 20px);
}
.product-nad-evidence-cert-item {
    background: #5fbcc1;
    color: #ffffff;
    min-height: clamp(56px, 4.8vw, 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 10px;
    font-size: clamp(18px, 1.2vw, 24px);
    font-weight: 700;
    letter-spacing: 0.01em;
}
.product-nad-instagram {
    background: #ffffff;
    padding: clamp(30px, 3.4vw, 52px) 0 clamp(34px, 4vw, 60px);
}
.product-nad-instagram-head h2 {
    margin: 0;
    text-align: center;
    color: #0d1117;
    font-size: clamp(34px, 3.1vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.product-nad-instagram-head h2 span {
    color: #55bcc2;
}
.product-nad-instagram-profile {
    margin: clamp(16px, 1.8vw, 24px) 0 clamp(18px, 2vw, 28px);
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 18px);
}
.product-nad-instagram-avatar {
    width: clamp(58px, 4.8vw, 78px);
    height: clamp(58px, 4.8vw, 78px);
    border-radius: 999px;
    background: #d8d8db;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.product-nad-instagram-avatar svg {
    width: clamp(26px, 2.1vw, 34px);
    height: clamp(26px, 2.1vw, 34px);
}
.product-nad-instagram-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 999px;
}
.product-nad-instagram-meta {
    min-width: 0;
}
.product-nad-instagram-username {
    margin: 0 0 4px;
    color: #6f95d7;
    font-size: clamp(22px, 1.5vw, 30px);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}
.product-nad-instagram-username:hover {
    color: #5383d3;
}
.product-nad-instagram-desc {
    margin: 0;
    color: #7b97cf;
    font-size: clamp(16px, 1.05vw, 20px);
    line-height: 1.38;
}
.product-nad-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(8px, 0.9vw, 14px);
}
.product-nad-instagram-item {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ebeff5;
    position: relative;
}
.product-nad-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}
.product-nad-instagram-item:hover img {
    transform: scale(1.04);
}
.product-nad-instagram-item--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #146f74;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(145deg, #edf8f8 0%, #d5ecee 100%);
}
.product-nad-instagram-actions {
    margin-top: clamp(14px, 1.5vw, 24px);
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.product-nad-instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}
.product-nad-instagram-btn--dark {
    background: #2f3136;
    color: #ffffff;
}
.product-nad-instagram-btn--dark:hover {
    background: #26292f;
}
.product-nad-instagram-btn--primary {
    background: #4e8ed5;
    color: #ffffff;
}
.product-nad-instagram-btn--primary:hover {
    background: #427fc4;
}
.product-nad-how {
    background: #ffffff;
    padding: 0;
    color: #0f172a;
}
.product-nad-how-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    align-items: stretch;
}
.product-nad-how-content {
    background: #dff3f4;
    padding: clamp(42px, 5vw, 92px) clamp(20px, 4.8vw, 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-nad-how-content h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 3.5vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #0f172a;
    font-weight: 700;
}
.product-nad-how-content .hl {
    color: #61bac0;
}
.product-nad-how-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}
.product-nad-how-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #26323e;
    font-size: clamp(18px, 1.8vw, 42px);
    line-height: 1.45;
}
.product-nad-how-list li::before {
    content: "✓";
    width: clamp(28px, 1.7vw, 40px);
    height: clamp(28px, 1.7vw, 40px);
    border-radius: 999px;
    background: #59bcc1;
    color: #ffffff;
    font-size: clamp(16px, 1vw, 24px);
    font-weight: 700;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 2px;
}
.product-nad-how-media {
    background: #ffffff;
    display: flex;
    align-items: stretch;
}
.product-nad-how-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(340px, 40vw, 760px);
    object-fit: cover;
    object-position: center;
}
.product-panel {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 76, 129, 0.08);
    box-shadow: 0 16px 36px rgba(15, 76, 129, 0.08);
    padding: 24px;
    margin-bottom: 22px;
}
.product-panel h2 {
    margin: 0 0 14px;
    font-size: 22px;
}
.product-stream {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}
.product-empty {
    margin: 0;
    color: #4b5c6d;
}
.product-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}
.benefit-card {
    background: #f9fbfd;
    border: 1px solid rgba(15, 76, 129, 0.08);
    border-radius: 14px;
    padding: 16px;
}
.benefit-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}
.benefit-card p {
    margin: 0;
    color: #506172;
    line-height: 1.6;
}
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 76, 129, 0.08);
    background: #f9fbfd;
}
.gallery-card img {
    display: block;
    width: 100%;
    height: auto;
}
.product-docs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.product-docs a {
    color: #0f4c81;
    font-weight: 600;
}
.product-form-panel {
    margin-bottom: 0;
}
.product-form-card {
    display: grid;
    gap: 12px;
}
.product-form-card h2 {
    margin: 0 0 16px;
    font-size: 22px;
}
.product-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}
.product-form .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-form .field label {
    font-size: 13px;
    font-weight: 600;
    color: #2c3a47;
}
.product-form .field input,
.product-form .field textarea,
.product-form .field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(15, 76, 129, 0.2);
    background: #f7fbfd;
    font: inherit;
}
.product-form .field textarea {
    min-height: 130px;
    resize: vertical;
}
.product-form .field--full {
    grid-column: 1 / -1;
}
.product-form button {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 14px 30px;
}
.product-form-card .field input,
.product-form-card .field textarea,
.product-form-card .field select {
    border-radius: 10px;
    border-color: rgba(15, 76, 129, 0.2);
}
.product-form-card button {
    margin-top: 8px;
    border-radius: 999px;
    background: #00a9a0;
    color: #0b1014;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 169, 160, 0.25);
}
.product-success {
    color: #1c2a39;
    font-weight: 600;
}

@media (max-width: 980px) {
    .products-breadcrumb {
        position: static;
        margin-bottom: 18px;
    }
    .products-hero-grid,
    .product-hero-grid {
        grid-template-columns: 1fr;
    }
    .products-search {
        margin-top: 8px;
    }
    .products-search--below {
        margin: 0;
        max-width: 100%;
    }
    .products-search-input {
        min-width: 0;
        width: 100%;
    }
    .products-toolbar {
        margin: 20px auto 0;
        max-width: 100%;
    }
    .products-toolbar--under {
        justify-items: center;
    }
    .products-toolbar--under {
        margin-top: 205px;
    }
    .products-hero-text {
        min-height: 0;
    }
    .products-toolbar--under .products-filters {
        justify-content: center;
    }
    .product-hero-media {
        order: -1;
    }
    .product-hero--visual {
        min-height: 420px;
    }
    .product-hero-visual-grid {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
        align-items: end;
    }
    .product-hero-visual-media {
        justify-self: start;
        width: min(320px, 70vw);
        padding: 10px;
    }
    .product-hero-brand {
        min-height: 0;
        gap: 14px;
        padding-bottom: 0;
    }
    .product-hero-logo {
        width: min(360px, 88vw);
    }
    .product-nad-proof-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }
    .product-nad-proof-media {
        order: -1;
    }
    .product-nad-proof-content h2 {
        font-size: clamp(30px, 6.2vw, 48px);
    }
    .product-nad-proof-content .lead {
        font-size: 18px;
    }
    .product-nad-proof-list li {
        font-size: 22px;
    }
    .product-nad-proof-content .note {
        font-size: 19px;
    }
    .product-nad-meet-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }
    .product-nad-meet-left h2 {
        font-size: clamp(32px, 7vw, 46px);
    }
    .product-nad-meet-left .lead-strong {
        font-size: 22px;
    }
    .product-nad-meet-left .desc {
        font-size: 20px;
    }
    .product-nad-why-faq-hero {
        min-height: clamp(250px, 44vw, 350px);
    }
    .product-nad-why-faq-head {
        min-height: clamp(250px, 44vw, 350px);
    }
    .product-nad-why-faq-head h2 {
        font-size: clamp(30px, 6vw, 46px);
    }
    .product-nad-why-faq-panel-wrap {
        margin-top: -48px;
        max-width: min(1040px, calc(100% - 32px));
        padding-bottom: 24px;
    }
    .product-nad-why-faq-panel {
        padding: 10px 18px;
    }
    .product-nad-why-faq-item summary {
        font-size: clamp(26px, 4.5vw, 38px);
        padding: 16px 0;
    }
    .product-nad-why-faq-item summary::after {
        font-size: clamp(24px, 4vw, 32px);
    }
    .product-nad-why-faq-answer {
        font-size: clamp(18px, 3.1vw, 24px);
        padding-bottom: 16px;
    }
    .product-nad-why-faq + .product-nad-vitality {
        padding-top: 26px;
    }
    .product-nad-clinics-trust-hero {
        min-height: clamp(250px, 40vw, 320px);
    }
    .product-nad-clinics-trust-head {
        min-height: clamp(250px, 40vw, 320px);
    }
    .product-nad-clinics-trust-head h2 {
        font-size: clamp(24px, 4.2vw, 34px);
    }
    .product-nad-clinics-trust-card-wrap {
        margin-top: -42px;
        max-width: min(980px, calc(100% - 32px));
        padding-bottom: 28px;
    }
    .product-nad-clinics-trust-card {
        padding: 16px 16px 20px;
    }
    .product-nad-clinics-trust-item + .product-nad-clinics-trust-item {
        margin-top: 18px;
    }
    .product-nad-clinics-trust-item h3 {
        font-size: clamp(20px, 3.5vw, 28px);
    }
    .product-nad-clinics-trust-item .role,
    .product-nad-clinics-trust-item .quote {
        font-size: clamp(16px, 2.8vw, 22px);
    }
    .product-nad-evidence {
        padding: 24px 0 34px;
    }
    .product-nad-evidence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .product-nad-evidence-card {
        min-height: 200px;
        padding: 14px 12px;
    }
    .product-nad-evidence-certified {
        margin: 18px 0 14px;
        font-size: clamp(18px, 3.2vw, 24px);
    }
    .product-nad-evidence-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .product-nad-evidence-cert-item {
        min-height: 58px;
        font-size: clamp(17px, 2.8vw, 22px);
    }
    .product-nad-instagram {
        padding: 26px 0 36px;
    }
    .product-nad-instagram-head h2 {
        font-size: clamp(28px, 5.1vw, 40px);
    }
    .product-nad-instagram-profile {
        margin: 14px 0 16px;
    }
    .product-nad-instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .product-nad-instagram-btn {
        font-size: 16px;
        min-height: 38px;
        padding: 8px 14px;
    }
    .product-nad-vitality-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
    .product-nad-how {
        padding: 0;
    }
    .product-nad-how-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }
    .product-nad-how-content {
        padding: clamp(28px, 5vw, 48px) clamp(18px, 5vw, 34px);
    }
    .product-nad-how-content h2 {
        font-size: clamp(32px, 7vw, 46px);
    }
    .product-nad-how-list li {
        font-size: 22px;
    }
    .product-nad-how-media {
        max-width: none;
        width: 100%;
    }
    .product-nad-how-media img {
        height: auto;
        min-height: 0;
        object-fit: contain;
    }
}

@media (max-width: 640px) {
    .products-hero-text h1 {
        white-space: normal;
    }
    .products-section .product-card .thumb {
        height: auto;
        aspect-ratio: 4 / 5;
        margin-bottom: 10px;
        background-size: cover;
        background-position: center;
    }
    .product-form {
        grid-template-columns: 1fr;
    }
    .product-form button {
        width: 100%;
        justify-self: stretch;
    }
    .products-search-row {
        flex-direction: column;
        align-items: stretch;
    }
    .products-search-btn {
        width: 100%;
    }
    .product-hero--visual {
        min-height: 340px;
        padding: 20px 0 22px;
    }
    .product-breadcrumb--on-image {
        margin-bottom: 12px;
    }
    .product-hero-brand {
        min-height: 220px;
        gap: 10px;
    }
    .product-hero-visual-media {
        width: min(250px, 72vw);
        padding: 8px;
        border-radius: 16px;
    }
    .product-hero-visual-product {
        max-height: 46vh;
    }
    .product-hero-brand-summary {
        font-size: 14px;
    }
    .product-nad-proof {
        padding: 34px 0 40px;
    }
    .product-nad-proof-content h2 {
        font-size: 34px;
    }
    .product-nad-proof-content .lead {
        font-size: 16px;
    }
    .product-nad-proof-list {
        gap: 12px;
    }
    .product-nad-proof-list li {
        font-size: 18px;
        gap: 10px;
    }
    .product-nad-proof-list .check {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 16px;
    }
    .product-nad-proof-content .note {
        font-size: 16px;
    }
    .product-nad-meet {
        padding: 30px 0 36px;
    }
    .product-nad-meet-left h2 {
        font-size: 34px;
    }
    .product-nad-meet-left .lead-strong {
        font-size: 19px;
    }
    .product-nad-meet-left .desc {
        font-size: 17px;
    }
    .product-nad-meet-left-image {
        padding: 10px;
    }
    .product-nad-meet-right {
        border-radius: 12px;
    }
    .product-nad-why-faq-hero {
        min-height: 210px;
    }
    .product-nad-why-faq-head {
        min-height: 210px;
    }
    .product-nad-why-faq-head h2 {
        font-size: 32px;
    }
    .product-nad-why-faq-panel-wrap {
        margin-top: -32px;
        max-width: calc(100% - 16px);
        padding-bottom: 16px;
    }
    .product-nad-why-faq-panel {
        padding: 6px 14px;
    }
    .product-nad-why-faq-item summary {
        font-size: 24px;
        padding: 14px 0;
    }
    .product-nad-why-faq-item summary::after {
        font-size: 22px;
    }
    .product-nad-why-faq-answer {
        font-size: 16px;
        line-height: 1.45;
        padding-bottom: 12px;
    }
    .product-nad-why-faq + .product-nad-vitality {
        padding-top: 18px;
    }
    .product-nad-clinics-trust-hero {
        min-height: 210px;
    }
    .product-nad-clinics-trust-head {
        min-height: 210px;
    }
    .product-nad-clinics-trust-head h2 {
        font-size: 28px;
    }
    .product-nad-clinics-trust-card-wrap {
        margin-top: -30px;
        max-width: calc(100% - 16px);
        padding-bottom: 18px;
    }
    .product-nad-clinics-trust-card {
        padding: 14px 12px 16px;
    }
    .product-nad-clinics-trust-item + .product-nad-clinics-trust-item {
        margin-top: 14px;
    }
    .product-nad-clinics-trust-item h3 {
        font-size: 18px;
    }
    .product-nad-clinics-trust-item .role,
    .product-nad-clinics-trust-item .quote {
        font-size: 15px;
    }
    .product-nad-evidence {
        padding: 20px 0 28px;
    }
    .product-nad-evidence-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
    .product-nad-evidence-card {
        min-height: 0;
        padding: 16px 12px;
    }
    .product-nad-evidence-card h3 {
        font-size: 20px;
    }
    .product-nad-evidence-card p {
        font-size: 16px;
    }
    .product-nad-evidence-certified {
        margin: 14px 0 12px;
        font-size: 20px;
    }
    .product-nad-evidence-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .product-nad-evidence-cert-item {
        min-height: 56px;
        font-size: 17px;
    }
    .product-nad-instagram {
        padding: 20px 0 30px;
    }
    .product-nad-instagram-head h2 {
        font-size: 34px;
    }
    .product-nad-instagram-profile {
        align-items: flex-start;
        gap: 10px;
    }
    .product-nad-instagram-avatar {
        width: 54px;
        height: 54px;
    }
    .product-nad-instagram-username {
        font-size: 20px;
    }
    .product-nad-instagram-desc {
        font-size: 14px;
    }
    .product-nad-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .product-nad-instagram-actions {
        gap: 8px;
    }
    .product-nad-instagram-btn {
        width: 100%;
        font-size: 15px;
    }
    .product-nad-vitality {
        padding: 64px 0;
    }
    .product-nad-vitality-head {
        text-align: left;
    }
    .product-nad-vitality-head h2 {
        font-size: 24px;
    }
    .product-nad-vitality-head p {
        font-size: 15px;
    }
    .product-nad-vitality-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }
    .product-nad-vitality-card {
        padding: 20px 14px;
    }
    .product-nad-vitality-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 12px;
    }
    .product-nad-vitality-card h3 {
        font-size: 17px;
    }
    .product-nad-how {
        padding: 0;
    }
    .product-nad-how-content {
        padding: 28px 16px 30px;
    }
    .product-nad-how-content h2 {
        font-size: 34px;
        margin-bottom: 12px;
    }
    .product-nad-how-list {
        gap: 12px;
    }
    .product-nad-how-list li {
        font-size: 18px;
        line-height: 1.35;
        gap: 10px;
    }
    .product-nad-how-list li::before {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

/* ─── TerzaPower Product Sections ─────────────────────────────────────────── */
/* Color palette: teal (#00a9a0) — aligned with site accent color             */
/* Accent: #00a9a0  Light accent: #e8971a  BG: #edf9f7  Panel: #00a9a0       */

.product-body--terza {
    background: #f0faf9;
}

/* Terza Therapy (proof) — image + text grid */
.product-terza-proof {
    background: #ffffff;
    padding: 0;
}
.product-terza-proof-grid {
    display: grid;
    grid-template-columns: minmax(200px, 5fr) minmax(240px, 6fr);
    gap: clamp(24px, 3.5vw, 56px);
    align-items: stretch;
    max-width: 1440px;
    width: 98%;
}
.product-terza-proof-media {
    height: calc(100vh - 70px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 80%;
    margin-left: auto;
}
.product-terza-proof-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}
.product-terza-proof-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 4vw, 64px) clamp(24px, 3vw, 48px) clamp(32px, 4vw, 64px) 0;
}
.product-terza-proof-content h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 2.8vw, 48px);
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #0f1215;
}
.product-terza-proof-content h2 span {
    color: #00a9a0;
}
.product-terza-proof-content .lead {
    margin: 0 0 18px;
    font-size: clamp(14px, 1.1vw, 18px);
    line-height: 1.55;
    color: #1d2024;
    max-width: 700px;
}
.product-terza-proof-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 12px;
}
.product-terza-proof-list li {
    margin: 0;
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.35;
    color: #1a1f23;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.product-terza-proof-list .check {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00a9a0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}
.product-terza-proof-content .note {
    margin: 0;
    font-size: clamp(12px, 0.85vw, 14px);
    line-height: 1.5;
    color: #15191d;
    max-width: 720px;
}
.product-terza-proof-content .note strong {
    font-weight: 800;
}

/* Terza Meet — 2-column layout */
.product-terza-meet {
    background: #ffffff;
    padding: clamp(36px, 4.8vw, 72px) 0;
}
.product-terza-meet-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: clamp(26px, 4vw, 68px);
    align-items: start;
}
.product-terza-meet-grid--single {
    grid-template-columns: minmax(0, 1fr);
}
.product-terza-meet-left h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 3.4vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0d1117;
}
.product-terza-meet-left h2 span {
    color: #00a9a0;
}
.product-terza-meet-left .lead-strong {
    margin: 0 0 14px;
    font-size: clamp(19px, 1.45vw, 27px);
    line-height: 1.35;
    font-weight: 800;
    color: #171d22;
}
.product-terza-meet-left .desc {
    margin: 0 0 22px;
    color: #1a2026;
    font-size: clamp(18px, 1.28vw, 24px);
    line-height: 1.45;
    max-width: 760px;
}
.product-terza-meet-left-image {
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
}
.product-terza-meet-left-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.product-terza-meet-right {
    background: transparent;
    border-radius: 18px;
    border: none;
    overflow: hidden;
    min-height: 0;
    align-self: center;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-terza-meet-right img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Terza Why FAQ — hero + accordion panel */
.product-terza-why-faq {
    background: #ffffff;
}
.product-terza-why-faq-hero {
    position: relative;
    min-height: clamp(300px, 38vw, 470px);
    background: #062030;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.product-terza-why-faq-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 40, 0.56);
}
.product-terza-why-faq-head {
    position: relative;
    z-index: 2;
    min-height: clamp(300px, 38vw, 470px);
    display: grid;
    place-items: center;
    text-align: center;
}
.product-terza-why-faq-head h2 {
    margin: 0;
    color: #f0fffe;
    font-size: clamp(36px, 4vw, 66px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.product-terza-why-faq-panel-wrap {
    position: relative;
    z-index: 3;
    margin-top: clamp(-112px, -7.5vw, -76px);
    max-width: min(1180px, calc(100% - 96px));
    margin-left: auto;
    margin-right: auto;
    padding-bottom: clamp(30px, 4vw, 54px);
}
.product-terza-why-faq-panel {
    background: #00a9a0;
    color: #f0fffe;
    padding: clamp(14px, 1.8vw, 24px) clamp(20px, 2.8vw, 40px);
}
.product-terza-why-faq-item {
    border-bottom: 2px solid rgba(180, 240, 236, 0.5);
}
.product-terza-why-faq-item:last-child {
    border-bottom: 0;
}
.product-terza-why-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: clamp(20px, 2vw, 26px) 0;
    font-size: clamp(34px, 2.2vw, 48px);
    line-height: 1.12;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.product-terza-why-faq-item summary::-webkit-details-marker {
    display: none;
}
.product-terza-why-faq-item summary::after {
    content: "⌄";
    color: #f0fffe;
    font-size: clamp(30px, 1.9vw, 44px);
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}
.product-terza-why-faq-item[open] summary::after {
    transform: rotate(180deg);
}
.product-terza-why-faq-answer {
    padding: 0 0 clamp(20px, 2.5vw, 34px);
    font-size: clamp(22px, 1.45vw, 30px);
    line-height: 1.5;
    color: rgba(230, 252, 251, 0.98);
}
.product-terza-why-faq-answer p {
    margin: 0 0 12px;
}
.product-terza-why-faq-answer p:last-child {
    margin-bottom: 0;
}
.product-terza-why-faq + .product-terza-vitality {
    padding-top: 44px;
}

/* Terza Vitality — icon grid */
.product-terza-vitality {
    padding: 86px 0;
    background: #edf9f7;
    color: #0f172a;
}
.product-terza-vitality-head {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 42px;
}
.product-terza-vitality-head h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.15;
}
.product-terza-vitality-head h2 span {
    color: #00a9a0;
}
.product-terza-vitality-head p {
    margin: 0;
    color: #3a6b68;
    line-height: 1.6;
    font-size: 16px;
}
.product-terza-vitality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.product-terza-vitality-card {
    background: #ffffff;
    border: 1px solid rgba(0, 169, 160, 0.35);
    border-radius: 18px;
    min-height: 0;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 100, 95, 0.07);
}
.product-terza-vitality-icon {
    width: 96px;
    height: 96px;
    border: 2px solid rgba(0, 169, 160, 0.5);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00a9a0;
    margin-bottom: 18px;
}
.product-terza-vitality-icon img {
    width: 102px;
    height: 102px;
    object-fit: contain;
}
.product-terza-vitality-icon svg {
    width: 102px;
    height: 102px;
}
.product-terza-vitality-card h3 {
    margin: 0;
    color: #006b65;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

/* Terza Clinics Trust — testimonials */
.product-terza-clinics-trust {
    background: #edf9f7;
}
.product-terza-clinics-trust-hero {
    position: relative;
    min-height: clamp(300px, 36vw, 460px);
    background: #062030;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.product-terza-clinics-trust-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 40, 0.60);
}
.product-terza-clinics-trust-head {
    position: relative;
    z-index: 2;
    min-height: clamp(300px, 36vw, 460px);
    display: grid;
    place-items: center;
    text-align: center;
}
.product-terza-clinics-trust-head h2 {
    margin: 0 auto;
    max-width: min(1200px, 92vw);
    color: #f0fffe;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 600;
}
.product-terza-clinics-trust-card-wrap {
    position: relative;
    z-index: 3;
    margin-top: clamp(-92px, -6vw, -64px);
    max-width: min(1080px, calc(100% - 96px));
    margin-left: auto;
    margin-right: auto;
    padding-bottom: clamp(30px, 4vw, 56px);
}
.product-terza-clinics-trust-card {
    background: #00a9a0;
    color: rgba(230, 252, 251, 0.98);
    padding: clamp(20px, 2.2vw, 32px) clamp(18px, 2.4vw, 34px);
}
.product-terza-clinics-trust-item + .product-terza-clinics-trust-item {
    margin-top: clamp(20px, 2.4vw, 30px);
}
.product-terza-clinics-trust-item h3 {
    margin: 0 0 4px;
    color: #f0fffe;
    font-size: clamp(22px, 1.65vw, 31px);
    line-height: 1.2;
    font-weight: 700;
}
.product-terza-clinics-trust-item .role {
    margin: 0;
    color: rgba(220, 252, 250, 0.95);
    font-size: clamp(18px, 1.35vw, 26px);
    line-height: 1.34;
    font-weight: 500;
}
.product-terza-clinics-trust-item .quote {
    margin: clamp(12px, 1.5vw, 18px) 0 0;
    color: rgba(230, 252, 251, 0.98);
    font-size: clamp(18px, 1.35vw, 26px);
    line-height: 1.42;
    font-style: italic;
    font-weight: 400;
}

/* Terza Evidence — cards + certifications */
.product-terza-evidence {
    background: #ffffff;
    padding: clamp(26px, 3vw, 44px) 0 clamp(38px, 4.4vw, 66px);
}
.product-terza-evidence-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 28px);
}
.product-terza-evidence-card {
    background: transparent;
    border: 2px solid rgba(0, 169, 160, 0.64);
    border-radius: 0;
    padding: clamp(16px, 1.6vw, 24px) clamp(12px, 1.2vw, 18px);
    text-align: center;
    min-height: clamp(210px, 17.5vw, 300px);
}
.product-terza-evidence-icon {
    width: clamp(58px, 4.2vw, 74px);
    height: clamp(58px, 4.2vw, 74px);
    margin: 0 auto clamp(10px, 1vw, 14px);
    border: 2px solid rgba(0, 169, 160, 0.8);
    border-radius: 999px;
    color: #00a9a0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.product-terza-evidence-icon img {
    width: clamp(50px, 3.8vw, 64px);
    height: clamp(50px, 3.8vw, 64px);
    object-fit: contain;
}
.product-terza-evidence-icon svg {
    width: clamp(48px, 3.6vw, 62px);
    height: clamp(48px, 3.6vw, 62px);
}
.product-terza-evidence-card h3 {
    margin: 0 0 6px;
    color: #006b65;
    font-size: clamp(20px, 1.45vw, 26px);
    line-height: 1.24;
    font-weight: 700;
}
.product-terza-evidence-card p {
    margin: 0;
    color: #262c33;
    font-size: clamp(16px, 1.15vw, 22px);
    line-height: 1.38;
}
.product-terza-evidence-certified {
    margin: clamp(22px, 2.5vw, 36px) 0 clamp(16px, 1.6vw, 24px);
    text-align: center;
    color: #007f79;
    font-size: clamp(20px, 1.4vw, 26px);
    font-weight: 500;
    line-height: 1.2;
}
.product-terza-evidence-cert-grid {
    max-width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.4vw, 20px);
}
.product-terza-evidence-cert-item {
    background: #00a9a0;
    color: #ffffff;
    min-height: clamp(56px, 4.8vw, 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 10px;
    font-size: clamp(18px, 1.2vw, 24px);
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* Terza Instagram feed */
.product-terza-instagram {
    background: #ffffff;
    padding: clamp(30px, 3.4vw, 52px) 0 clamp(34px, 4vw, 60px);
}
.product-terza-instagram-head h2 {
    margin: 0;
    text-align: center;
    color: #0d1117;
    font-size: clamp(34px, 3.1vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.product-terza-instagram-head h2 span {
    color: #00a9a0;
}
.product-terza-instagram-profile {
    margin: clamp(16px, 1.8vw, 24px) 0 clamp(18px, 2vw, 28px);
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.5vw, 18px);
}
.product-terza-instagram-avatar {
    width: clamp(58px, 4.8vw, 78px);
    height: clamp(58px, 4.8vw, 78px);
    border-radius: 999px;
    background: #7dd5d1;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.product-terza-instagram-avatar svg {
    width: clamp(26px, 2.1vw, 34px);
    height: clamp(26px, 2.1vw, 34px);
}
.product-terza-instagram-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 999px;
}
.product-terza-instagram-meta {
    min-width: 0;
}
.product-terza-instagram-username {
    margin: 0 0 4px;
    color: #00a9a0;
    font-size: clamp(22px, 1.5vw, 30px);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}
.product-terza-instagram-username:hover {
    color: #008a82;
}
.product-terza-instagram-desc {
    margin: 0;
    color: #4a9e9a;
    font-size: clamp(16px, 1.05vw, 20px);
    line-height: 1.38;
}
.product-terza-instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(8px, 0.9vw, 14px);
}
.product-terza-instagram-item {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #edf9f7;
    position: relative;
}
.product-terza-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}
.product-terza-instagram-item:hover img {
    transform: scale(1.04);
}
.product-terza-instagram-item--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #006b65;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(145deg, #edf9f7 0%, #b8ede9 100%);
}
.product-terza-instagram-actions {
    margin-top: clamp(14px, 1.5vw, 24px);
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.product-terza-instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
}
.product-terza-instagram-btn--dark {
    background: #2f3136;
    color: #ffffff;
}
.product-terza-instagram-btn--dark:hover {
    background: #26292f;
}
.product-terza-instagram-btn--primary {
    background: #00a9a0;
    color: #ffffff;
}
.product-terza-instagram-btn--primary:hover {
    background: #008a82;
}

/* Terza How It Works — checklist + side image */
.product-terza-how {
    background: #ffffff;
    padding: 0;
    color: #0f172a;
}
.product-terza-how-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    align-items: stretch;
}
.product-terza-how-content {
    background: #d1f5f2;
    padding: clamp(28px, 3.2vw, 56px) clamp(18px, 3.8vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-terza-how-content h2 {
    margin: 0 0 14px;
    font-size: clamp(26px, 2.4vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #0f172a;
    font-weight: 700;
}
.product-terza-how-content .hl {
    color: #00a9a0;
}
.product-terza-how-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.product-terza-how-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #26323e;
    font-size: clamp(13px, 1.1vw, 17px);
    line-height: 1.45;
}
.product-terza-how-list li::before {
    content: "✓";
    width: clamp(22px, 1.3vw, 28px);
    height: clamp(22px, 1.3vw, 28px);
    border-radius: 999px;
    background: #00a9a0;
    color: #ffffff;
    font-size: clamp(11px, 0.75vw, 15px);
    font-weight: 700;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 2px;
}
.product-terza-how-media {
    background: #ffffff;
    display: flex;
    align-items: stretch;
}
.product-terza-how-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(340px, 40vw, 760px);
    object-fit: cover;
    object-position: center;
}

/* ─── TerzaPower Responsive: 980px ─── */
@media (max-width: 980px) {
    .product-terza-proof-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }
    .product-terza-proof-media {
        order: -1;
    }
    .product-terza-proof-content h2 {
        font-size: clamp(30px, 6.2vw, 48px);
    }
    .product-terza-proof-content .lead {
        font-size: 18px;
    }
    .product-terza-proof-list li {
        font-size: 22px;
    }
    .product-terza-proof-content .note {
        font-size: 19px;
    }
    .product-terza-meet-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }
    .product-terza-meet-left h2 {
        font-size: clamp(32px, 7vw, 46px);
    }
    .product-terza-meet-left .lead-strong {
        font-size: 22px;
    }
    .product-terza-meet-left .desc {
        font-size: 20px;
    }
    .product-terza-why-faq-hero {
        min-height: clamp(250px, 44vw, 350px);
    }
    .product-terza-why-faq-head {
        min-height: clamp(250px, 44vw, 350px);
    }
    .product-terza-why-faq-head h2 {
        font-size: clamp(30px, 6vw, 46px);
    }
    .product-terza-why-faq-panel-wrap {
        margin-top: -48px;
        max-width: min(1040px, calc(100% - 32px));
        padding-bottom: 24px;
    }
    .product-terza-why-faq-panel {
        padding: 10px 18px;
    }
    .product-terza-why-faq-item summary {
        font-size: clamp(26px, 4.5vw, 38px);
        padding: 16px 0;
    }
    .product-terza-why-faq-item summary::after {
        font-size: clamp(24px, 4vw, 32px);
    }
    .product-terza-why-faq-answer {
        font-size: clamp(18px, 3.1vw, 24px);
        padding-bottom: 16px;
    }
    .product-terza-why-faq + .product-terza-vitality {
        padding-top: 26px;
    }
    .product-terza-vitality-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }
    .product-terza-clinics-trust-hero {
        min-height: clamp(250px, 40vw, 320px);
    }
    .product-terza-clinics-trust-head {
        min-height: clamp(250px, 40vw, 320px);
    }
    .product-terza-clinics-trust-head h2 {
        font-size: clamp(24px, 4.2vw, 34px);
    }
    .product-terza-clinics-trust-card-wrap {
        margin-top: -42px;
        max-width: min(980px, calc(100% - 32px));
        padding-bottom: 28px;
    }
    .product-terza-clinics-trust-card {
        padding: 16px 16px 20px;
    }
    .product-terza-clinics-trust-item + .product-terza-clinics-trust-item {
        margin-top: 18px;
    }
    .product-terza-clinics-trust-item h3 {
        font-size: clamp(20px, 3.5vw, 28px);
    }
    .product-terza-clinics-trust-item .role,
    .product-terza-clinics-trust-item .quote {
        font-size: clamp(16px, 2.8vw, 22px);
    }
    .product-terza-evidence {
        padding: 24px 0 34px;
    }
    .product-terza-evidence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .product-terza-evidence-card {
        min-height: 200px;
        padding: 14px 12px;
    }
    .product-terza-evidence-certified {
        margin: 18px 0 14px;
        font-size: clamp(18px, 3.2vw, 24px);
    }
    .product-terza-evidence-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .product-terza-evidence-cert-item {
        min-height: 58px;
        font-size: clamp(17px, 2.8vw, 22px);
    }
    .product-terza-instagram {
        padding: 26px 0 36px;
    }
    .product-terza-instagram-head h2 {
        font-size: clamp(28px, 5.1vw, 40px);
    }
    .product-terza-instagram-profile {
        margin: 14px 0 16px;
    }
    .product-terza-instagram-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .product-terza-instagram-btn {
        font-size: 16px;
        min-height: 38px;
        padding: 8px 14px;
    }
    .product-terza-how-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }
    .product-terza-how-content {
        padding: clamp(28px, 5vw, 48px) clamp(18px, 5vw, 34px);
    }
    .product-terza-how-content h2 {
        font-size: clamp(32px, 7vw, 46px);
    }
    .product-terza-how-list li {
        font-size: 22px;
    }
    .product-terza-how-media img {
        height: auto;
        min-height: 0;
        object-fit: contain;
    }
}

/* ─── TerzaPower Responsive: 640px ─── */
@media (max-width: 640px) {
    .product-terza-proof {
        padding: 34px 0 40px;
    }
    .product-terza-proof-content h2 {
        font-size: 34px;
    }
    .product-terza-proof-content .lead {
        font-size: 16px;
    }
    .product-terza-proof-list {
        gap: 12px;
    }
    .product-terza-proof-list li {
        font-size: 18px;
        gap: 10px;
    }
    .product-terza-proof-list .check {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 16px;
    }
    .product-terza-proof-content .note {
        font-size: 16px;
    }
    .product-terza-meet {
        padding: 30px 0 36px;
    }
    .product-terza-meet-left h2 {
        font-size: 34px;
    }
    .product-terza-meet-left .lead-strong {
        font-size: 19px;
    }
    .product-terza-meet-left .desc {
        font-size: 17px;
    }
    .product-terza-meet-right {
        border-radius: 12px;
    }
    .product-terza-why-faq-hero {
        min-height: 210px;
    }
    .product-terza-why-faq-head {
        min-height: 210px;
    }
    .product-terza-why-faq-head h2 {
        font-size: 32px;
    }
    .product-terza-why-faq-panel-wrap {
        margin-top: -32px;
        max-width: calc(100% - 16px);
        padding-bottom: 16px;
    }
    .product-terza-why-faq-panel {
        padding: 6px 14px;
    }
    .product-terza-why-faq-item summary {
        font-size: 24px;
        padding: 14px 0;
    }
    .product-terza-why-faq-item summary::after {
        font-size: 22px;
    }
    .product-terza-why-faq-answer {
        font-size: 16px;
        line-height: 1.45;
        padding-bottom: 12px;
    }
    .product-terza-vitality {
        padding: 64px 0;
    }
    .product-terza-vitality-head {
        text-align: left;
    }
    .product-terza-vitality-head h2 {
        font-size: 24px;
    }
    .product-terza-vitality-head p {
        font-size: 15px;
    }
    .product-terza-vitality-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }
    .product-terza-vitality-card {
        padding: 20px 14px;
    }
    .product-terza-vitality-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    .product-terza-vitality-card h3 {
        font-size: 17px;
    }
    .product-terza-clinics-trust-hero {
        min-height: 210px;
    }
    .product-terza-clinics-trust-head {
        min-height: 210px;
    }
    .product-terza-clinics-trust-head h2 {
        font-size: 28px;
    }
    .product-terza-clinics-trust-card-wrap {
        margin-top: -30px;
        max-width: calc(100% - 16px);
        padding-bottom: 18px;
    }
    .product-terza-clinics-trust-card {
        padding: 14px 12px 16px;
    }
    .product-terza-clinics-trust-item + .product-terza-clinics-trust-item {
        margin-top: 14px;
    }
    .product-terza-clinics-trust-item h3 {
        font-size: 18px;
    }
    .product-terza-clinics-trust-item .role,
    .product-terza-clinics-trust-item .quote {
        font-size: 15px;
    }
    .product-terza-evidence {
        padding: 20px 0 28px;
    }
    .product-terza-evidence-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
    .product-terza-evidence-card {
        min-height: 0;
        padding: 16px 12px;
    }
    .product-terza-evidence-card h3 {
        font-size: 20px;
    }
    .product-terza-evidence-card p {
        font-size: 16px;
    }
    .product-terza-evidence-certified {
        margin: 14px 0 12px;
        font-size: 20px;
    }
    .product-terza-evidence-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .product-terza-evidence-cert-item {
        min-height: 56px;
        font-size: 17px;
    }
    .product-terza-instagram {
        padding: 20px 0 30px;
    }
    .product-terza-instagram-head h2 {
        font-size: 34px;
    }
    .product-terza-instagram-profile {
        align-items: flex-start;
        gap: 10px;
    }
    .product-terza-instagram-avatar {
        width: 54px;
        height: 54px;
    }
    .product-terza-instagram-username {
        font-size: 20px;
    }
    .product-terza-instagram-desc {
        font-size: 14px;
    }
    .product-terza-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .product-terza-instagram-actions {
        gap: 8px;
    }
    .product-terza-instagram-btn {
        width: 100%;
        font-size: 15px;
    }
    .product-terza-how-content {
        padding: 28px 16px 30px;
    }
    .product-terza-how-content h2 {
        font-size: 34px;
        margin-bottom: 12px;
    }
    .product-terza-how-list {
        gap: 12px;
    }
    .product-terza-how-list li {
        font-size: 18px;
        line-height: 1.35;
        gap: 10px;
    }
    .product-terza-how-list li::before {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}
