/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, Roboto, Helvetica, sans-serif;
    background: #fff;
    color: #000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1460px;
    /* 1420px content + 40px padding */
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    padding: 0;
    position: relative;
    z-index: 100;
    background: #fff;
    box-shadow: 0 4px 94px 0 #E9E8F0;
}

.header-content {
    display: flex;
    align-items: center;
    position: relative;
    height: 60px;
}

.logo {
    flex-shrink: 0;
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo svg {
    width: 95px;
    height: 15px;
}

.nav-menu ul {
    display: flex;
    gap: 50px;
}

.nav-menu a {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #0955E8;
}

.nav-products {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(0deg, #0955E8 0%, #0045CC 100%);
    border-radius: 0 0 20px 20px;
    padding: 20px 40px 16px;
    z-index: 10;
    min-width: 499px;
}

.nav-products ul {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.nav-products a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

.nav-products a:hover {
    opacity: 0.85;
}

.btn-quote {
    background: #0955E8;
    color: #fff;
    padding: 8px 38px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-quote:hover {
    background: #0745c0;
}

.lang-switch {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 40px;
    position: relative;
    min-height: 700px;
    background: url('../img/bg-7.png') center/cover no-repeat #F9F9F9;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-bubble {
    position: absolute;
}

.hero-bubble-tl {
    left: 0;
    top: 0;
}

.hero-bubble-mb {
    left: 25%;
    bottom: 0;
    transform: translateX(-50%);
}

.hero-bubble-mr {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 550px;
}

.hero-device {
    margin-bottom: 40px;
}

.hero-device svg {
    width: 105px;
    height: 169px;
}

.hero-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    letter-spacing: -2.4px;
    background: linear-gradient(91deg, #0955E8 38.78%, #000 62.98%, #0955E8 88.71%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #000;
    margin-bottom: 40px;
}

.hero-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-arrow svg {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.hero-arrow svg path {
    stroke: #0955E8;
}

.hero-arrow:hover {
    transform: translateY(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ===== BENEFITS CAROUSEL ===== */
.benefits-section {
    padding: 60px 20px;
}

.benefits-card {
    max-width: 1420px;
    margin: 0 auto;
    background: #F9F9F9;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 80px 40px 40px;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.benefits-deco {
    position: absolute;
    width: auto;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.benefits-deco-right {
    right: 0;
    top: -14px;
}

.benefits-deco-left {
    left: 0;
    top: 49px;
}

.benefits-koule {
    position: absolute;
    width: 103px;
    height: 102px;
    right: 80px;
    top: 40px;
    z-index: 1;
    pointer-events: none;
}

.benefits-slide-content {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.benefits-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0955E8, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: opacity 0.4s ease;
}

.benefits-icon svg {
    width: 24px;
    height: 24px;
}

.benefits-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    letter-spacing: -2.4px;
    background: linear-gradient(91deg, #0955E8 38.78%, #000 62.98%, #0955E8 88.71%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    transition: opacity 0.4s ease;
    text-align: center;
}

.benefits-desc {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #000;
    max-width: 566px;
    text-align: center;
    transition: opacity 0.4s ease;
}

/* Neumorphic circles */
.benefits-circles {
    display: flex;
    gap: 0;
    position: relative;
    z-index: 2;
    justify-content: center;
    padding-top: 40px;
}

.benefit-circle {
    width: 173px;
    height: 172px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    flex-shrink: 0;
}

.benefit-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #FFF;
    opacity: 0.6;
    box-shadow:
        26px 26px 38px 0 rgba(13, 39, 80, 0.16) inset,
        -31px -31px 33px 0 #FFF inset,
        -23px -23px 80px 0 #FFF,
        28px 28px 40px 0 rgba(13, 39, 80, 0.16);
    transition: opacity 0.4s ease;
}

.benefit-circle span {
    position: relative;
    z-index: 1;
    color: #0955E8;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    max-width: 80px;
    transition: color 0.4s ease;
}

.benefit-circle.active::before {
    opacity: 1;
    background: linear-gradient(135deg, #0955E8, #3366FF);
    box-shadow: none;
}

.benefit-circle.active span {
    color: #FFF;
}

/* ===== PRODUCTS GRID ===== */
.products-section {
    padding: 40px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    height: 700px;
}

.product-card {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s;
}

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

.product-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.product-card-bg img {
    position: absolute;
}

.product-deco-br {
    bottom: -50px;
    right: -50px;
    width: 470px;
}

.product-deco-tl {
    top: -50px;
    left: -50px;
    width: 470px;
}

.product-clean-mask {
    position: absolute;
    left: 0;
    top: 37px;
    width: 100%;
    height: 564px;
    overflow: hidden;
    z-index: 2;
}

.product-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #C4C4C4 38.74%, rgba(94, 94, 94, 0.00) 82.27%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.product-blur-img {
    position: absolute;
    left: 8px;
    top: 38px;
    width: 97%;
    filter: blur(32px);
    z-index: 0;
}

.product-bubble {
    position: absolute;
}

.product-bubble-tl {
    width: 441px;
    left: -254px;
    top: -77px;
}

.product-bubble-tr-rotated {
    width: 441px;
    left: 169px;
    top: -342px;
    transform: rotate(90deg);
}

.product-bubble-center {
    width: 441px;
    left: -61px;
    top: 63px;
}

.product-blob {
    position: absolute;
}

.product-blob-tr {
    width: 656px;
    left: 230px;
    top: -333px;
}

.product-blob-bl {
    width: 675px;
    left: -466px;
    top: 20px;
    filter: blur(87px);
}

.product-content {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.product-content h3 {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    letter-spacing: -2.4px;
    color: #fff;
}

.product-name {
    font-weight: 400;
}

.product-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 10px;
    max-width: 380px;
}

.product-bottom-text {
    position: relative;
    z-index: 1;
    padding: 0 40px 40px;
    text-align: center;
}

.product-bottom-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
}

.product-clean {
    background: #0955E8;
}

.product-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-control {
    background: #F9F9F9;
    flex: 1;
    color: #0955E8;
}

.product-control h3,
.product-control p {
    color: #0955E8;
}

.product-track {
    background: #F9F9F9;
    flex: 1;
    color: #0955E8;
}

.product-track h3,
.product-track p {
    color: #0955E8;
}

.product-solutions {
    background: #F9F9F9;
    color: #0955E8;
}

.product-solutions h3,
.product-solutions p {
    color: #0955E8;
}

/* ===== PARTNERS ===== */
.partners-section {
    padding: 40px 20px;
}

.partners-card {
    max-width: 1420px;
    margin: 0 auto;
    background: #F9F9F9;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 80px 50px;
    min-height: 480px;
    display: flex;
    align-items: flex-start;
}

.partners-deco {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.partners-deco img {
    position: absolute;
}

.partners-deco-bottom {
    width: 441px;
    right: 150px;
    bottom: -100px;
}

.partners-deco-top {
    width: 323px;
    left: 0;
    top: -77px;
}

.partners-deco-right {
    width: 323px;
    right: -80px;
    top: -20px;
}

.partners-content {
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.partners-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    letter-spacing: -2.4px;
    color: #0955E8;
    margin-bottom: 20px;
}

.partners-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #0955E8;
    margin-bottom: 40px;
}

.btn-blue-pill {
    display: inline-block;
    background: #0955E8;
    color: #fff;
    padding: 8px 38px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    transition: background 0.2s;
}

.btn-blue-pill:hover {
    background: #0745c0;
}

.partners-logos {
    position: absolute;
    z-index: 1;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partners-logos-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.partners-logos-row img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.partners-logos-row img:nth-child(4) {
    height: 32px;
}

.partners-logos-row img:nth-child(3) {
    height: 78px;
}

/* ===== FEATURES (Two blue cards) ===== */
.features-section {
    padding: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: #0955E8;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.feature-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    min-height: 400px;
    height: 100%;
}

.feature-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.feature-bg-img {
    position: absolute;
    width: 140%;
    left: -107px;
    top: -24px;
    border-radius: 20px;
    opacity: 0.3;
}

.feature-bg-overlay {
    position: absolute;
    width: 472px;
    right: -50px;
    top: -33px;
    opacity: 0.4;
    transform: rotate(-90deg);
}

.feature-card-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.feature-card-illustration {
    position: relative;
    z-index: 1;
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feature-card-illustration img {
    max-width: 100%;
    height: auto;
}

.feature-card-phone {
    position: relative;
    z-index: 1;
    flex: 0 0 45%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-top: 40px;
}

.feature-card-phone img {
    width: 280px;
    height: auto;
    border-radius: 12px;
}

.feature-card-content h3 {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -2.4px;
    color: #fff;
    margin-bottom: 20px;
    max-width: 500px;
}

.feature-card-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    max-width: 382px;
}

/* ===== RESULTS ===== */
.results-section {
    padding: 40px 20px;
}

.results-card {
    max-width: 1420px;
    margin: 0 auto;
    background: #F9F9F9;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
}

.results-content {
    position: relative;
    z-index: 1;
    padding: 40px 50px;
    max-width: 700px;
}

.results-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    letter-spacing: -2.4px;
    background: linear-gradient(91deg, #0955E8 38.78%, #000 62.98%, #0955E8 88.71%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
}

.results-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 30px;
}

.text-black {
    color: #000;
}

.text-blue {
    color: #0955E8;
}

.results-note {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #919191;
}

.results-graphic {
    position: absolute;
    right: 0;
    bottom: 0;
}

.results-sphere {
    display: block;
    width: auto;
    height: auto;
    max-height: 100%;
}

/* ===== UPDATES CTA ===== */
.updates-section {
    padding: 40px 20px;
}

.updates-card {
    max-width: 1420px;
    margin: 0 auto;
    background: #F9F9F9;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.updates-img-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 380px;
    height: 300px;
    object-fit: cover;
}

.updates-img-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 214px;
    height: 368px;
    object-fit: cover;
    border-radius: 20px;
}

.updates-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 40px;
}

.updates-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    letter-spacing: -2.4px;
    color: #0955E8;
    margin-bottom: 30px;
    max-width: 613px;
}

.btn-blue-large {
    display: inline-block;
    background: #0955E8;
    color: #fff;
    padding: 23px 50px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    transition: background 0.2s;
}

.btn-blue-large:hover {
    background: #0745c0;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    align-items: start;
}

.contact-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 61px;
    letter-spacing: -2.4px;
    color: #000;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    display: grid;
    grid-template-columns: 580px 460px;
    gap: 20px;
    margin-bottom: 30px;
}

.form-left textarea {
    width: 100%;
    height: 270px;
    background: #F9F9F9;
    border: none;
    border-radius: 20px;
    padding: 23px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    resize: none;
    outline: none;
}

.form-left textarea::placeholder {
    color: #898989;
}

.form-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-right input {
    width: 100%;
    height: 70px;
    background: #F9F9F9;
    border: none;
    border-radius: 20px;
    padding: 0 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    outline: none;
}

.form-right input::placeholder {
    color: #898989;
}

.btn-submit {
    width: 177px;
    height: 70px;
    background: #0955E8;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -1.2px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #0745c0;
}

.form-disclaimer {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #919191;
    max-width: 580px;
    margin-top: 15px;
}

.form-disclaimer a {
    color: #919191;
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: #F9F9F9;
    border-radius: 20px 20px 0 0;
    padding: 50px 0 40px;
    margin-top: 40px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo svg {
    width: 300px;
    height: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 200px 200px 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    margin-bottom: 8px;
}

.footer-col p {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
}

.footer-col-wide p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}

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

.footer-bottom p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}

.footer-contact {
    display: flex;
    gap: 30px;
}

.footer-contact a {
    font-size: 18px;
    color: #000;
    text-decoration: underline;
}

.footer-contact span {
    font-size: 18px;
    color: #000;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 99;
    padding: 30px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.mobile-products {
    margin-top: 15px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-products a {
    font-size: 16px;
    color: #666;
}

.mobile-menu .btn-quote {
    display: inline-block;
    color: #fff;
    background: #0955E8;
    padding: 10px 30px;
    border-radius: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 44px;
        line-height: 54px;
    }

    .benefits-title {
        font-size: 44px;
        line-height: 54px;
    }

    .benefits-circles {
        flex-wrap: wrap;
        gap: 10px;
    }

    .benefit-circle {
        width: 140px;
        height: 140px;
    }

    .products-grid {
        height: auto;
    }

    .partners-title,
    .results-title,
    .updates-title,
    .contact-title {
        font-size: 44px;
        line-height: 54px;
    }

    .feature-card-content h3 {
        font-size: 44px;
        line-height: 54px;
    }

    .partners-logos {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 30px;
    }

    .partners-card {
        flex-direction: column;
    }

    .results-graphic {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .nav-menu,
    .nav-products,
    .lang-switch {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-quote {
        margin-left: auto;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {

    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .benefits-card {
        padding: 40px 20px;
        min-height: auto;
    }

    .benefits-title {
        font-size: 32px;
        line-height: 40px;
    }

    .benefits-desc {
        font-size: 16px;
    }

    .benefit-circle {
        width: 100px;
        height: 100px;
    }

    .benefit-circle span {
        font-size: 11px;
        max-width: 60px;
    }

    .benefits-deco,
    .benefits-koule {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .product-center {
        gap: 15px;
    }

    .product-card {
        min-height: 300px;
    }

    .product-card.product-clean {
        min-height: 700px;
    }

    .product-content h3 {
        font-size: 36px;
        line-height: 44px;
    }

    .partners-card {
        padding: 40px 20px;
    }

    .partners-title {
        font-size: 32px;
        line-height: 40px;
    }

    .partners-deco {
        display: none;
    }

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

    .feature-card-content h3 {
        font-size: 32px;
        line-height: 40px;
    }

    .feature-card-content p {
        padding: 0 20px 20px;
    }

    .results-card {
        min-height: auto;
        padding: 20px;
    }

    .results-content {
        padding: 20px;
    }

    .results-title {
        font-size: 32px;
        line-height: 40px;
    }

    .updates-card {
        min-height: 300px;
    }

    .updates-title {
        font-size: 32px;
        line-height: 40px;
    }

    .updates-img-left,
    .updates-img-right {
        display: none;
    }

    .contact-title {
        font-size: 32px;
        line-height: 40px;
    }

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

    .form-left textarea {
        height: 150px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .footer-contact {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .benefits-title {
        font-size: 28px;
        line-height: 36px;
    }

    .benefit-circle {
        width: 80px;
        height: 80px;
    }

    .benefit-circle span {
        font-size: 10px;
        max-width: 50px;
        line-height: 13px;
    }

    .benefits-circles {
        gap: 5px;
    }
}

/* ===== ESD CARD ===== */
.esd-card {
    background: #0955E8;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    border-radius: 20px;
    display: flex;
    color: #fff;
    overflow: hidden;
}

.esd-image {
    width: 450px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
}

.esd-image img {
    width: 100%;
    margin-bottom: -10px;
    /* Flush bottom */
    display: block;
}

.esd-content {
    flex: 1;
    padding: 80px 40px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.esd-subtitle {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #fff;
}

.esd-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #fff;
}

.esd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.esd-badge {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

@media (max-width: 992px) {
    .esd-card {
        flex-direction: column;
    }

    .esd-image {
        width: 100%;
        padding-left: 0;
        justify-content: flex-start;
        order: 2;
        margin-top: 20px;
    }

    .esd-image img {
        width: 80%;
        max-width: 300px;
    }

    .esd-content {
        padding: 40px 30px 0;
        order: 1;
    }

    .esd-subtitle {
        font-size: 24px;
    }

    .esd-title {
        font-size: 36px;
    }
}

/* ===== OZUR CLEAN HERO ===== */
.oc-hero {
    position: relative;
    background: #F9F9F9;
    overflow: hidden;
}

.oc-hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.oc-hero-deco-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.oc-hero-deco-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.oc-hero-icon {
    width: 300px;
    height: auto;
    margin-top: 40px;
}

/* ===== TABS SECTION ===== */

.tabs-main-title {
    font-size: 48px;
    font-weight: 500;
    color: #0955E8;
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
}

.tabs-card {
    background: #F9F9F9;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    gap: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.tabs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 0 0 350px;
}

.tab-btn {
    appearance: none;
    border: 1px solid rgba(9, 85, 232, 0.3);
    background: transparent;
    color: #0955E8;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    padding: 12px 24px;
    border-radius: 30px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.tab-btn:hover {
    border-color: #0955E8;
    background: rgba(9, 85, 232, 0.05);
}

.tab-btn.active {
    background: #0955E8;
    color: #fff;
    border-color: #0955E8;
}

.tabs-content-area {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.tab-title {
    font-size: 28px;
    font-weight: 500;
    color: #0955E8;
    margin: 0;
}

.tab-number {
    font-size: 16px;
    font-weight: 600;
    color: #0955E8;
    margin-top: 5px;
}

.tab-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #0955E8;
    max-width: 500px;
}

.tab-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 60px;
}

.tab-timer {
    position: relative;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(9, 85, 232, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-timer svg {
    position: absolute;
    width: 46px;
    height: 46px;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: transparent;
    stroke-width: 2;
}

.circle-progress {
    fill: none;
    stroke: #0955E8;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dasharray 0.1s linear;
}

.timer-text {
    font-size: 13px;
    font-weight: 500;
    color: #999;
}

.tab-category {
    font-size: 15px;
    color: #0955E8;
    font-weight: 500;
}

@media (max-width: 992px) {
    .tabs-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .tabs-sidebar {
        flex: 0 0 auto;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .tabs-main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .tab-title {
        font-size: 22px;
    }

    .tab-footer {
        padding-top: 40px;
    }
}

/* ===== PURITY SECTION ===== */
.purity-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 50px rgba(9, 85, 232, 0.15);
}

.purity-left,
.purity-right {
    flex: 1;
    padding: 80px 60px;
    background-size: cover;
    background-position: center;
}

.purity-left {
    background-color: #033CC8;
    position: relative;
}

.purity-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    display: block;
}

.purity-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.purity-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 40px 0;
}

.purity-right {
    background-color: #0955E8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.purity-right p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 992px) {
    .purity-card {
        flex-direction: column;
    }

    .purity-left,
    .purity-right {
        padding: 40px 30px;
    }

    .purity-title {
        font-size: 32px;
    }
}

/* ===== SANITIZER CARD SECTION ===== */
.sanitizer-card {
    background: #F9F9F9;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    color: #333;
}

.product-image {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.product-content {
    flex: 1;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.product-title-group {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    margin: 0 0 5px;
}

.product-status {
    font-size: 15px;
    color: #888;
}

.sanitizer-card .product-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    max-width: none;
}

.product-features {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 20px 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 13px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
}

@media (max-width: 992px) {
    .sanitizer-card {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .product-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .product-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .product-features {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
        grid-template-rows: auto;
    }
}

/* ===== IMPACT SECTION ===== */
.impact-card {
    background: #F9F9F9;
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.impact-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    z-index: 0;
    pointer-events: none;
}

.impact-content {
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.impact-left {
    flex: 1.3;
}

.impact-right {
    flex: 1;
}

.impact-title {
    font-size: 18px;
    color: #0955E8;
    font-weight: 500;
    margin-bottom: 40px;
}

.impact-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.impact-table th {
    text-align: left;
    font-weight: 500;
    color: #0955E8;
    font-size: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(9, 85, 232, 0.2);
    vertical-align: bottom;
}

.impact-table td {
    padding: 30px 0;
    border-bottom: 1px solid rgba(9, 85, 232, 0.2);
}

.impact-val {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 56px;
    font-weight: 500;
    color: #0955E8;
    letter-spacing: -1px;
}

.impact-val img {
    width: 44px;
    height: 44px;
}

.impact-type {
    font-size: 15px;
    color: #0955E8;
    line-height: 1.5;
}

.impact-note {
    font-size: 15px;
    color: #0955E8;
    margin: 0;
}

.impact-huge {
    font-size: 180px;
    line-height: 1;
    font-weight: 400;
    color: #0955E8;
    margin: 30px 0 40px;
    letter-spacing: -6px;
}

.impact-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #0955E8;
    max-width: 90%;
    margin: 0;
}

.impact-divider {
    border: none;
    border-top: 1px solid rgba(9, 85, 232, 0.2);
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.impact-legend {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0955E8;
    font-size: 15px;
    line-height: 1.4;
}

.legend-item img {
    width: 40px;
    height: 40px;
}

.legend-item strong {
    font-weight: 500;
}

@media (max-width: 992px) {
    .impact-content {
        flex-direction: column;
        gap: 50px;
    }

    .impact-val {
        font-size: 32px;
    }

    .impact-val img {
        width: 28px;
        height: 28px;
    }

    .impact-huge {
        font-size: 120px;
    }

    .impact-legend {
        flex-direction: column;
        gap: 25px;
    }

    .impact-deco {
        width: 150px;
        bottom: 0;
        right: 0;
    }
}

/* ===== CONTROL HERO & PILL TAB ===== */
.oc-hero.control-hero {
    overflow: visible;
    /* CRITICAL for poking out switch */
}

.control-images-grid {
    display: flex;
    justify-content: center;
    gap: 150px;
    padding-bottom: 100px;
    margin-top: 40px;
}

.control-image-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.c-main-img {
    max-width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

.control-switcher-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    /* Pokes out of the container by 100% height (50% of self) or 100% (100% of self). If height is offset, translate(50%) is 50% element size. wait, 50% leaves it half in. Let's use 100% to push completely below */
}

.control-switcher-container {
    transform: translate(-50%, 50%);
}

.control-switch-bar {
    background: #fff;
    border-radius: 40px;
    padding: 6px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10;
}

.c-switch-btn {
    background: transparent;
    color: #666;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.c-switch-btn.active {
    background: #0955E8;
    color: #fff;
    box-shadow: 0 8px 20px rgba(9, 85, 232, 0.3);
}



.control-panes-wrapper {
    position: relative;
    min-height: 200px;
}

.control-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
    text-align: center;
}

.tabs-main-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 60px;
    background: linear-gradient(91deg, #0955E8 38.78%, #000 62.98%, #0955E8 88.71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.pane-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;

    background: linear-gradient(91deg, #0955E8 38.78%, #000 62.98%, #0955E8 88.71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.pane-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.control-pane.active {
    display: block;
}

@media (max-width: 992px) {
    .control-images-grid {
        flex-direction: column;
        gap: 50px;
        align-items: center;
        padding-bottom: 80px;
    }

    .control-switcher-container {
        width: 90%;
    }

    .control-switch-bar {
        width: 100%;
        justify-content: space-between;
    }

    .c-switch-btn {
        width: 50%;
        padding: 14px 10px;
        font-size: 14px;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-page-section {
    padding: 100px 0 80px;
}

.contact-page-title {
    font-size: 72px;
    font-weight: 300;
    margin: 0 0 80px;
    letter-spacing: -2px;
    background: linear-gradient(91deg, #0955E8 38.78%, #000 62.98%, #0955E8 88.71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

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

.contact-page-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-phone {
    font-size: 32px;
    font-weight: 300;
    color: #111;
    text-decoration: none;
    line-height: 1.2;
}

.contact-phone:hover {
    color: #0955E8;
}

.contact-email {
    font-size: 32px;
    font-weight: 300;
    color: #111;
    text-decoration: none;
    line-height: 1.2;
}

.contact-email:hover {
    color: #0955E8;
}

.contact-page-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-address-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-address-label {
    font-size: 13px;
    font-weight: 400;
    color: #888;
    letter-spacing: 0.02em;
}

.contact-address-text {
    font-size: 28px;
    font-weight: 300;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .contact-page-title {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-phone,
    .contact-email {
        font-size: 22px;
    }

    .contact-address-text {
        font-size: 22px;
    }
}

/* ===== TEAM PAGE ===== */
.team-page-title {
    font-size: 72px;
    font-weight: 300;
    margin: 0 0 60px;
    letter-spacing: -2px;
    background: linear-gradient(91deg, #0955E8 38.78%, #000 62.98%, #0955E8 88.71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.team-title-blue {
    color: #0955E8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 3.5;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(100%);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 85, 232, 0.7) 0%, transparent 55%);
    pointer-events: none;
}

.team-card-name {
    position: absolute;
    bottom: 48px;
    left: 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    white-space: nowrap;
    z-index: 2;
}

.team-card-role {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    z-index: 2;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-page-title {
        font-size: 48px;
    }
}

@media (max-width: 540px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== TEAM MODAL ===== */
.back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.back-arrow:hover {
    transform: scale(1.1);
}

.person-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.person-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #0955E8;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(9, 85, 232, 0.2);
    z-index: 2100;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2200;
    padding: 0;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.modal-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0955E8 0%, transparent 60%);
}

.modal-info {
    padding: 0 40px 40px;
    color: #fff;
}

.modal-info h2 {
    font-size: 32px;
    font-weight: 500;
    margin: -20px 0 20px;
    position: relative;
    z-index: 3;
}

.modal-bio {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.modal-role {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
    margin: 0;
}