#languages img {
    width: 30px;
    border: 1px solid #ccc;
    border-radius: 50px;
}

#languages .lang-btn {
    display: flex;
    align-items: center;
}

#languages .lang-btn img {
    opacity: 0.4;
    transition: opacity 0.15s ease-in-out;
}

#languages .lang-btn.active-lang img,
#languages .lang-btn:hover img {
    opacity: 1;
}

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

p {
    font-size: 17px !important;
}

:root {
    --orange: #f26522;
    --teal: #3c8d5a;
    --dark-blue: #1e2d4a;

    --card-blue: #3A4671;
    --bg-hero: #ffffff;
    --bg-benefits: #fff;
    --bg-about: #f5ead4;
    --bg-look: #d0dff2;
    --bg-cta: #fff;
    --bg-footer: #1e2d4a;
    --text: #000;
    --text-light: #000;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg-hero);
    font-size: 15px;
    line-height: 1.65;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.bold {
    font-weight: bold;
}

.margin-bottom-1 {
    margin-bottom: 30px !important;
}

.nav-wrapper {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

#nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

#nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

#languages {
    display: flex;
    align-items: center;
    gap: 10px;

}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    text-decoration: none;
    padding: 6px 12px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a.active {
    color: var(--orange);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

/* -----------------------------------------------------------------------
   Resources dropdown (desktop nav)
   ----------------------------------------------------------------------- */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 6px 12px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
    color: var(--orange);
}

.nav-dropdown-toggle .nav-caret {
    font-size: 18px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle .nav-caret,
.nav-dropdown.open .nav-dropdown-toggle .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown-toggle.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 12px;
    right: 22px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
    padding: 6px;
    z-index: 200;
}

/* invisible bridge so the menu doesn't close in the gap below the toggle */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 9px 14px;
    border-radius: 6px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
    background: #f6f6f6;
    color: var(--orange);
}

.nav-dropdown-menu a.active {
    color: var(--orange);
}

/* Resources label inside the mobile overlay menu */
.overlay-group-label {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #999;
}

.overlay a.overlay-login {
    display: inline-block;
    margin-top: 22px;
    padding: 11px 28px;
    font-size: 16px;
    color: #fff;
    background: var(--orange);
    border-radius: 25px;
}

.overlay a.overlay-login:hover {
    color: #fff;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-nav {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 25px;
    text-decoration: none;

    font-size: 14px;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--orange);
    color: white;
    border: none;
}

.btn-secondary {
    background: var(--teal);
    color: white;
    border: none;
}

.btn-outline {
    background: seagreen;
    color: #fff;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    color: #000;
}

.mobile-menu-icon .material-icons {
    font-size: 32px;

    line-height: 1;
    display: block;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: #fff;
}

.overlay-content {
    position: relative;
    top: 10%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    display: block;
    padding: 8px;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.overlay a:hover {
    color: var(--orange);
}

.overlay .closebtn {
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 40px;
    padding: 0;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px;
    }

    .overlay .closebtn {
        font-size: 30px;
        top: 15px;
        right: 35px;
    }
}

.hero {
    background: var(--bg-hero);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.logo-hero {
    width: 400px;
    margin-bottom: 23px;
}

.logo-nav {
    width: 40px;

}

.hero-text h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-blue);
    margin: 0 0 20px;
}

.hero-text p {
    color: var(--text-light);
    margin: 0 0 14px;
    font-size: 15px;
}

.hero-buttons {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1.3;
    align-self: stretch;
}

.hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(60, 141, 90, 0.16);
}

.section {
    padding: 70px 0;
}

.section-center {
    text-align: center;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 12px;
    text-align: center;
}

.quote-icon {
    font-size: 50px !important;
    /* margin-bottom: 20px; */
    color: #f26522;
}

.accent-line {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 44px;
}

.accent-line span {
    display: block;
    height: 3px;
    border-radius: 3px;
}

.accent-line .line-orange {
    width: 70px;
    background: var(--orange);
}

.accent-line-left {
    display: flex;
    gap: 4px;
    margin-bottom: 22px;
}

.accent-line-left span {
    display: block;
    height: 3px;
    border-radius: 3px;
}

.accent-line-left .line-orange {
    width: 28px;
    background: var(--orange);
}

.benefits-bg {
    background: var(--bg-benefits);
    position: relative;
    overflow: hidden;
}

.about-bg {
    background: var(--bg-about);
    position: relative;
    overflow: hidden;
}

.about-bg::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 48px;
}

.look-bg {
    background: var(--bg-look);
    position: relative;
    overflow: hidden;
}

.look-bg::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 48px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0px;
}

.benefit-card {
    background: var(--card-blue);
    color: #fff;
    padding: 30px 24px;

    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(58, 70, 113, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0px 0px 6px 0px;
}

.benefit-card p {
    font-size: 14px !important;
    margin: 0;
    opacity: 0.88;
    line-height: 1.5;
}

.split {
    display: flex;
    align-items: center;
    /* Tightened from 60px to halve the explicit space between the
       image column and the text column. Combined with the wider image
       width below, the visible gap drops by roughly 50%, which lets
       longer Czech headings on the About section breathe instead of
       wrapping one word to its own line. */
    gap: 30px;
    position: relative;
    z-index: 1;
}

.split-image {
    flex: 0 0 42%;
}

.split-image img {
    /* Widened from 70% so the image fills more of its column. The
       empty space to the right of the image (it stays left-aligned
       inside its column) was the bigger contributor to the visible
       image-to-text gap; bumping the image width shrinks that empty
       strip. The mobile @media block overrides this to 95%, which
       is unchanged. */
    width: 85%;
    border: 1px solid #e0c898;
    border-radius: 20px;
    display: block;
    box-shadow: 0 16px 48px rgba(242, 101, 34, 0.13);
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 10px;
}

.split-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 14px;
}

.look-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.look-card {
    background: #fff;
    border: 1px solid #9fb6d2;
    border-radius: 14px;
    padding: 26px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(62, 100, 180, 0.08);
}

.look-card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 7px;
}

.look-card-body p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.resources-banner {
    background: #fff;
    border: 1px solid #e0c898;
    border-radius: 24px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.resources-banner-text {
    flex: 1;
}

.resources-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: purple;

    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resources-h3-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.resources-h3-row h3 {
    margin: 0;
}

.resources-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.resources-banner-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
}

.resources-banner-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.55;
    max-width: 750px;
}

.cta-section {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 50px 0px;
}

.cta-obligations {
    text-align: center;
    font-style: italic;
    font-size: 13px;
    color: #777;
}

.cta-box {
    background: linear-gradient(135deg, #fff8f4 0%, #fce8dd 100%);
    border: 1px solid #f26522;
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(242, 101, 34, 0.09);
}

.cta-box-newsletter {
    background: linear-gradient(135deg, #fff8f4 0%, #fce8dd 100%);
    border: 1px solid #f26522;
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(242, 101, 34, 0.09);
}

.cta-left {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
}

.cta-heart {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(242, 101, 34, 0.22);
}

.cta-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 6px;
    line-height: 1.3;
}

.cta-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.cta-newsletter-input {
    width: 100%;
    min-width: 320px;
    padding: 11px 18px;
    border-radius: 10px;
    border: 1px solid #d6dde3;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: var(--dark-blue);
    outline: none;
    margin-bottom: 7px;
}

.cta-newsletter-input:focus {
    border-color: var(--orange);
}

/* Stop the button from stretching to match the input's width;
   align it under the right edge of the input field */
.cta-newsletter-input+.btn {
    width: fit-content;
    align-self: flex-end;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.footer {
    background: var(--bg-footer);
    color: #fff;
    padding: 50px 0 0;
    position: relative;
}

.fb-icon {
    width: 50px !important;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand img {
    width: 270px;
}

.footer-signin {
    margin-top: 14px;
}

.footer-brand p {
    font-size: 15px !important;
    color: #ccc;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #fff;
}

.footer-col a {
    display: block;
    font-size: 15px;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.program-hero {
    background: linear-gradient(160deg, #f8fbfa 0%, #eaf2f5 100%);
    border-bottom: 1px solid #d3dde0;
    padding: 30px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.program-hero::before,
.program-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.program-hero::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(60, 141, 90, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -80px;
}

.program-hero::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.07) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
}

.program-hero h1 {
    font-size: 46px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 16px;
    position: relative;
}

.program-hero .hero-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 18px !important;
    color: #222;
    line-height: 1.7;
    position: relative;
    font-weight: bold;
}

.program-hero .accent-line {
    margin-bottom: 28px;
}


/* Articles Hero */
.article-hero {
    background: linear-gradient(160deg, #f8fbfa 0%, #eaf2f5 100%);
    border-bottom: 1px solid #d3dde0;
    padding: 50px 0 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-hero::before,
.article-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.article-hero::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(60, 141, 90, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -80px;
}

.article-hero::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.07) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
}

.article-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 16px;
    position: relative;
}

.article-hero .hero-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 18px !important;
    color: #222;
    line-height: 1.7;
    position: relative;
    font-weight: bold;
}

.article-hero .accent-line {
    margin-bottom: 28px;
}




.overview-section {
    background: #fff;
    padding: 60px 0 30px 0;
}

.testing-section {
    background: #fff;
    padding: 10px 0 60px 0;
}

.overview-intro {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.overview-intro p {
    font-size: 17px;
    color: var(--text-light);
    margin: 0 0 14px;
}

.overview-section .benefit-cards {
    margin-top: 0;
}

.how-section {
    background: var(--bg-look);
    padding: 60px 0;
}

.how-intro {
    max-width: 660px;
    margin: 0 auto 56px;
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
}

.program-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 56px;
}

.program-flow::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(16.66% + 21px);
    right: calc(16.66% + 21px);
    height: 2px;
    background: var(--teal);
    z-index: 0;
}

.program-step {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #9fb6d2;
    padding: 36px 28px 28px;
    text-align: center;
    box-shadow: 0 6px 28px rgba(30, 45, 74, 0.08);
    position: relative;
    z-index: 1;
    margin: 0 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 4px 14px rgba(60, 141, 90, 0.30);
}

.program-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: green;
    margin: 0 0 10px;
}

.program-step p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.program-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #9fb6d2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 45, 74, 0.10);
}

.highlight-col {
    padding: 40px 38px;
}

.highlight-col:first-child,
.highlight-col:nth-child(2) {
    border-right: 1px solid #e8eef6;
}

@media (max-width: 960px) {
    .program-highlight {
        grid-template-columns: 1fr;
    }

    .highlight-col:first-child,
    .highlight-col:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #e8eef6;
    }
}

.highlight-col .highlight-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--teal);
    border-radius: 20px;
    padding: 3px 12px;
    margin-bottom: 14px;
}

.highlight-col:last-child .highlight-tag {
    background: var(--orange);
}

.highlight-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 12px;
}

.highlight-col p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.75;
    margin: 0;
}

.dashboard-section {
    background: var(--bg-about);
    padding: 60px 0;
}

.dashboard-intro {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
}

.dashboard-images {

    max-width: 800px;
    margin: 0 auto 50px auto;
}

.dashboard-images img {
    width: 100%;

    display: block;
    border: 1px solid #ccc;
    border-radius: 18px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 18px 50px rgba(30, 45, 74, 0.12);
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1190px;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .dashboard-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .dashboard-features {
        grid-template-columns: 1fr;
    }
}

.dashboard-feature {
    text-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 26px 20px;
    border: 1px solid #e0c898;
    box-shadow: 0 4px 18px rgba(30, 45, 74, 0.07);
}

.dashboard-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background: var(--card-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.dashboard-feature h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 7px;
}

.dashboard-feature p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.articles-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.articles-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: none;
    background: none;
    color: #000;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.articles-tab .material-icons {
    font-size: 1.15rem;
}

.articles-tab:hover {
    background: rgba(140, 61, 143, 0.08);
}

.articles-tab-active {
    background: #8C3D8F;
    color: #fff;
}

.articles-tab-active:hover {
    background: #8C3D8F;
}

#page-section-white-top {
    padding: 30px;
}

#articles-page-title {
    text-align: center;
    color: var(--dark-blue);
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 16px;
}

#articles-page-description {
    color: #333;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 600;
}

#articles-page-description-2 {
    color: #8C3D8F;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 600;
}

#page-section-white-top .articles-filter-tabs {
    margin: 18px 0 36px;
}

.articles-empty {
    text-align: center;
    color: #888;
    margin-top: 40px;
}

.articles-list {
    max-width: 650px;
    margin: 15px auto;
}

.article-card {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.article-card:last-child {
    border-bottom: none;
}

.article-card.hidden {
    display: none;
}

.article-card-image {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ccc;
    border-radius: 7px;
}

.article-card-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    border-radius: 4px;
}

.article-card-title {
    margin: 15px 0 10px;
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
}

.article-card-title a {
    color: var(--dark-blue);
    text-decoration: none;
}

.article-card-title a:hover {
    text-decoration: underline;
}

.article-card-excerpt {
    margin: 0 0 14px;
    color: #333;
    line-height: 1.5;
    font-size: 1.05rem;
}

.article-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.article-card-tag {
    background: var(--recipe-color, #439eb0);
    color: #fff;
    border-radius: 20px;
    padding: 4px 11px;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.article-featured-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    margin: 0 auto 24px;
    border-radius: 7px;
}

.article-featured-image-placeholder {
    width: 100%;
    max-width: 650px;
    height: 240px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin: 0 auto 24px;
}

.article-page-body {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
    font-size: 1.05rem;
}

.article-page-body p,
.article-page-body ul,
.article-page-body ol {
    margin-bottom: 0.6em;
}

.article-page-body h3 {
    color: var(--dark-blue);
    line-height: 1.3;
    margin: 20px 0 10px;
}

.article-back-link {
    max-width: 650px;
    margin: 40px auto 0;
}

.article-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #8C3D8F;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

.article-back-link a:hover {
    background: #7a3478;
}

.recipe-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 1.25rem auto 1.75rem;
    max-width: 650px;
}

.recipe-intro {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #444;
    margin: 0 auto 2rem;
    max-width: 650px;
}

.recipe-body {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid #aaa;
    padding: 15px;
    border-radius: 10px;
}

@media (max-width: 1000px) {
    .nav-links {
        display: none !important;
    }

    #nav-right .btn-nav.btn-primary {
        display: none !important;
    }

    .mobile-menu-icon {
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 960px) {

    .hero-content,
    .split {
        flex-direction: column;
    }

    .benefit-cards {
        grid-template-columns: 1fr 1fr;
    }

    .look-cards {
        grid-template-columns: 1fr 1fr;
    }

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

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .resources-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .program-flow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-flow::before {
        display: none;
    }

    .program-step {
        margin: 0;
    }

    .program-highlight {
        grid-template-columns: 1fr;
    }

    .highlight-col:first-child {
        border-right: none;
        border-bottom: 1px solid #e8eef6;
    }

    .dashboard-images {
        grid-template-columns: 1fr;
    }

    .dashboard-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .benefit-cards,
    .look-cards,
    .dashboard-features {
        grid-template-columns: 1fr;
    }

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

    .hero-text h1 {
        font-size: 30px;
    }

    .program-hero h1 {
        font-size: 32px;
    }

    .article-hero h1 {
        font-size: 32px;
    }

    .cta-box {
        padding: 34px 28px;
    }

    .hero {
        padding-top: 28px;
        padding-bottom: 40px;
    }

    .section {
        padding: 32px 0;
    }

    .hero-content {
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .logo-hero {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .split-text {
        text-align: center;
    }

    .accent-line-left {
        justify-content: center;
    }

    .split-image {
        text-align: center;
    }

    .split-image img {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .resources-banner {
        align-items: center;
        text-align: center;
    }

    .resources-banner-text {
        text-align: center;
    }

    .resources-h3-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .resources-banner-text {
        text-align: center;
    }

    .articles-filter-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-box {
        align-items: center;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .cta-text {
        text-align: center;
    }

    .cta-buttons {
        align-items: center;
        width: 100%;
    }

    .cta-newsletter-input+.btn {
        align-self: center;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .footer-brand p {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

.test-card-vw,
.test-card-nl {
    background: #fff;
    border: 1px solid;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.test-card-vw h3,
.test-card-nl h3 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.test-card-vw p,
.test-card-nl p {
    margin-top: 7px;
    margin-bottom: 20px;
}

.test-card-vw {
    border-color: #a8c4e0;
}

.test-card-nl {
    border-color: #e0c898;
}

.test-tags-vw,
.test-tags-nl {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.test-tags-vw span,
.test-tags-nl span {
    padding: 5px 15px;
    border-radius: 20px;
    color: #000;
    font-size: 0.85rem;
    white-space: nowrap;
}

.test-tags-vw span {
    background: #d0dff2;
}

.test-tags-nl span {
    background: #f5ead4;
}

.pricing-card {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(30, 45, 74, 0.10);
    overflow: hidden;
    border: 1px solid #ccc;
}

.pricing-card-header {
    background: #3A4671;
    color: #fff;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pricing-card-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    display: block;
    margin-bottom: 6px;
}

.pricing-card-tagline {
    font-size: 14px;
    margin: 0;
    opacity: 0.85;
    line-height: 1.5;
    max-width: 400px;
}

.pricing-card-price {
    text-align: right;
    flex-shrink: 0;
}

.price-amount {
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    display: inline;
    margin-right: 6px;
}

.price-period {
    font-size: 14px;
    opacity: 0.85;
}

.pricing-features {
    padding: 10px 40px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid #f0f4f8;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    display: block;
    margin-bottom: 4px;
}

.pricing-feature-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.pricing-free-month {
    margin: 0 40px 30px;
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f4ec 100%);
    border: 1px solid #8ec6a5;
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-free-month-badge {
    flex-shrink: 0;
    background: var(--teal);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 5px 14px;
    white-space: nowrap;
    margin-top: 2px;
    align-self: flex-start;
}

.pricing-free-month-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 8px;
    line-height: 1.65;
}

.pricing-free-month-text p:last-child {
    margin-bottom: 0;
}

.pricing-free-month-bold {
    font-weight: 700;
    color: var(--dark-blue) !important;
}

.pricing-card-footer {
    background: var(--bg-about);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pricing-card-footer p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    max-width: 480px;
}

.lab-pricing-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.lab-pricing-intro {
    text-align: center;
    margin-bottom: 36px;
}

.lab-pricing-intro p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.lab-pricing-range {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.lab-range-card {
    background: #fff;
    border: 1px solid #9fb6d2;
    border-radius: 20px;
    padding: 32px 56px;
    text-align: center;
    box-shadow: 0 6px 28px rgba(30, 45, 74, 0.09);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lab-range-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.lab-range-amount {
    font-size: 23px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.1;
}

.lab-range-note {
    font-size: 13px;
    color: var(--text-light);
}

.lab-pricing-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.lab-pricing-cta .btn-consultation {
    background: seagreen;
    color: #fff;
}

@media (max-width: 700px) {
    .pricing-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .pricing-card-price {
        text-align: left;
    }

    .pricing-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-free-month {
        flex-direction: column;
        gap: 12px;
        margin-left: 14px;
        margin-right: 14px;
    }

    .pricing-features,
    .pricing-card-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .pricing-free-month {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.test-price-lab-header {
    text-align: center;
    margin-bottom: 40px;
}

.test-price-lab-header.vibrant .test-price-lab-badge {
    background: var(--bg-look);
    color: var(--dark-blue);
}

.test-price-lab-header.nordic .test-price-lab-badge {
    background: #f5ead4;
    color: #7a5a1e;
}

.test-bundle-card {
    max-width: 820px;
    margin: 0 auto 32px;
    background: var(--card-blue);
    color: #fff;
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(58, 70, 113, 0.22);
}

.test-bundle-left {
    width: 100%;
}

.test-bundle-tag {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 3px 12px;
    margin-bottom: 12px;
}

.test-bundle-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
}

.test-bundle-card p {
    font-size: 13px;
    margin: 0 0 16px;
    opacity: 0.85;
    line-height: 1.6;
}

.test-bundle-includes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.test-bundle-includes span {
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 3px 11px;
    letter-spacing: 0.02em;
}

.test-bundle-price {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.test-bundle-amount {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.test-bundle-note {
    font-size: 13px;
    opacity: 0.65;
}

.test-price-list {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #9fb6d2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 45, 74, 0.07);
}

.overview-section .test-price-list {
    border-color: #ccc;
}

.test-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 28px;
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.15s;
}

.test-price-row:last-child {
    border-bottom: none;
}

.test-price-row:hover {
    background: #f8fafc;
}

.test-price-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.test-price-note {
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    background: #e6f4ec;
    border-radius: 20px;
    padding: 2px 9px;
}

.test-price-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-blue);
    flex-shrink: 0;
}

.test-shipping-notice {
    max-width: 820px;
    margin: 24px auto 0;
    background: #f8fafc;
    border: 1px solid #9fb6d2;
    border-radius: 12px;
    padding: 16px 22px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.test-shipping-notice svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.test-shipping-notice p {
    font-size: 14px !important;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .test-bundle-card {
        gap: 20px;
    }

    .test-price-row {
        padding: 14px 20px;
    }
}

.test-price-section-label {
    max-width: 820px;
    margin: 0 auto 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding-left: 4px;
    text-align: center;
}

.faq-section {
    background: #fff;
    padding: 70px 0 60px;
}

.faq-nav-link.active {
    background: #fff;
    color: var(--orange);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(30, 45, 74, 0.08);
}

.faq-group {
    margin-bottom: 52px;
}

.faq-group-header {
    margin-bottom: 20px;
}

.faq-group-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 5px 16px;
}

.faq-group-badge.program {
    background: #175974;
    color: #fff;
}

.faq-group-badge.testing {
    background: #755743;
    color: #fff;
}

.faq-group-badge.dashboard {
    background: #cb8840;
    color: #fff;
}

.faq-item {
    border-bottom: 1px solid #eef2f7;
}

.faq-item:first-of-type {
    border-top: 1px solid #eef2f7;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-item.open .faq-question {
    color: var(--orange);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #dde4ef;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--dark-blue);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s, background 0.2s;
}

.faq-icon::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
    border-color: var(--orange);
    background: var(--orange);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
    background: #fff;
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin: 0 0 14px;
    padding-bottom: 6px;
}

.faq-answer p:last-child {
    margin-bottom: 20px;
}

.faq-more {
    background: linear-gradient(135deg, #fff8f4 0%, #fce8dd 100%);
    border: 1px solid rgba(242, 101, 34, 0.2);
    border-radius: 20px;
    padding: 36px 40px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.faq-more-left {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
}

.faq-more-icon {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    font-size: 26px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(242, 101, 34, 0.22);
}

.faq-more-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 8px;
}

.faq-more-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    max-width: 720px;
}

@media (max-width: 860px) {
    .faq-more {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .faq-more-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }
}

.webinar-hero-note {
    max-width: 620px;
    margin: 30px auto 0;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.65;
    text-align: center;
}

.webinar-card {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(30, 45, 74, 0.10);
    border: 1px solid #ccc;
}

.webinar-soon-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(30, 45, 74, 0.10);
    border: 1px solid #ccc;
}

.webinar-card-header {
    background: var(--card-blue);
    color: #fff;
    padding: 36px 40px 30px;
}

.webinar-card-tag {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 3px 12px;
    margin-bottom: 14px;
}

.webinar-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.3;
}

.webinar-soon-header {
    background: #8C3D8F;
    color: #fff;
    padding: 20px 20px 15px 20px;
}

.webinar-soon-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 7px;
    line-height: 1.3;
    text-align: center;
}

.webinar-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.webinar-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.webinar-meta-item svg rect,
.webinar-meta-item svg line,
.webinar-meta-item svg circle,
.webinar-meta-item svg polyline {
    stroke: rgba(255, 255, 255, 0.8);
}

.webinar-card-body {
    padding: 32px 40px;
}

.webinar-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin: 0 0 14px;
}

.webinar-card-body p:last-child {
    margin-bottom: 0;
}

.webinar-card-emphasis {
    font-weight: 700;
    color: var(--dark-blue) !important;
}

.webinar-purpose-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.webinar-purpose-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 16px;
}

.webinar-learn-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.webinar-learn-item {
    background: #fff;
    border: 1px solid #9fb6d2;
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(30, 45, 74, 0.07);
}

.webinar-learn-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.webinar-learn-item p {
    font-size: 13px;
    color: var(--dark-blue);
    font-weight: 500;
    margin: 0;
    line-height: 1.55;
    padding-top: 4px;
}

.webinar-presenter-card {
    background: #fff;
    border: 1px solid #e0c898;
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 4px 20px rgba(30, 45, 74, 0.07);
}

.webinar-presenter-inner {
    display: flex;
    align-items: center;
    gap: 22px;
}

.webinar-presenter-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(30, 45, 74, 0.12);
}

.webinar-presenter-eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}

.webinar-presenter-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 6px;
}

.webinar-presenter-body p:last-child {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.webinar-registration-card {
    background: #fff;
    border: 1px solid #e0c898;
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: 0 4px 20px rgba(30, 45, 74, 0.07);
}

.webinar-registration-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 6px;
}

.webinar-registration-card>p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 22px;
}

.webinar-form-field {
    margin-bottom: 16px;
}

.webinar-form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.webinar-form-field input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #dde4ef;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.webinar-form-field input:focus {
    border-color: var(--teal);
}

.webinar-submit {
    width: 100%;
    margin-top: 8px;
    padding: 13px;
    font-size: 15px;
    justify-content: center;
    border: none;
}

.webinar-bottom-stack {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 900px) {
    .webinar-learn-list {
        grid-template-columns: 1fr;
    }

    .webinar-card-header,
    .webinar-card-body {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 600px) {
    .webinar-learn-item {
        padding: 18px 16px;
    }

    .webinar-registration-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .webinar-presenter-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
}

.about-profile {
    display: grid;
    grid-template-columns: 325px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.about-photo-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(30, 45, 74, 0.13);
}

.about-photo-wrap img {
    width: 100%;
    display: block;
}

.about-credentials-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 18px;
}

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

.about-credentials-list li {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    padding: 14px 0;
    border-bottom: 1px solid #eef2f7;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-credentials-list li:first-child {
    border-top: 1px solid #eef2f7;
}

.about-credentials-list li>span:last-child {
    font-weight: 400;
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 860px) {
    .about-profile {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-photo-wrap {
        max-width: 95%;
        margin: 0 auto;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
    text-decoration: none;
    display: block;
    margin: 0 0 3px;
}

.contact-info-sub {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.contact-consultation-nudge {
    margin-top: 10px;
    background: #faf8f8;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 24px 22px;
}

.contact-consultation-nudge p {
    font-size: 15px !important;
    color: var(--text-light);
    margin: 0 0 16px;
    line-height: 1.65;
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 38px;
    box-shadow: 0 8px 40px rgba(30, 45, 74, 0.09);
    border: 1px solid #ddd;
}

.contact-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 15px;
}

.contact-form-card>p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 26px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-field {
    margin-bottom: 18px;
}

.contact-form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 7px;
    letter-spacing: 0.02em;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #dde4ef;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    border-color: var(--teal);
}

.contact-submit {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    margin-top: 4px;
    border: none;
}

@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .section-title {
        font-size: 23px;
    }

    .contact-info {
        text-align: center;
        align-items: center;
    }

    .contact-info-block {
        justify-content: center;
    }

    .contact-consultation-nudge {
        width: 100%;
    }

    .contact-form-card {
        padding: 28px 18px;
    }
}

.about-story-section {
    background: var(--bg-about);
    padding: 60px 0 40px;
}

.about-story-body {
    max-width: 900px;
    margin: 0 auto;
}

.about-story-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000;
    margin: 0 0 1.6rem;
}

.about-story-italic {
    font-style: italic;
    color: #555 !important;
}

.why-testing-section {
    background-color: #fff;
    padding: 72px 0 64px;
}

.why-testing-header {
    text-align: center;
    margin-bottom: 52px;
}

.why-testing-section .section-title {
    color: inherit;
}

.why-testing-section .accent-line {
    justify-content: center;
    display: flex;
    margin: 12px 0 24px;
}

.why-testing-lead {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #000;
}

.why-testing-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 48px;
    border: 1px solid #e0c898;
    border-radius: 16px;
    overflow: hidden;
}

.why-stat {
    background: #f5ead4;
    padding: 30px 20px;
    text-align: center;
}

.why-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.why-stat-number span {
    font-size: 1.2rem;
    color: #222;
}

.why-stat-label {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    max-width: 300px;
    margin: 0 auto;
}

.why-testing-systems {
    text-align: center;
    margin-bottom: 40px;
}

.why-systems-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 25px;
}

.why-systems-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.why-systems-pills span {
    background: #8C3D8F;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #fff;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease;
}


.program-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.program-pills span {
    background: #8C3D8F;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #fff;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.why-testing-close {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 680px) {
    .why-testing-stats {
        grid-template-columns: 1fr;
    }

    .why-stat-number {
        font-size: 1.5rem;
    }
}

.highlight-col .highlight-tag.highlight-tag-orange {
    background: var(--orange);
}

.highlight-col .highlight-tag.highlight-tag-purple {
    background: #7c4daa;
}

.overview-intro-tight {
    margin-bottom: 0;
    padding-top: 15px;
}

.section-center-spaced {
    margin-top: 56px;
}