/* ===== FONTS ===== */
@font-face {
    font-family: Roboto;
    src: local("Roboto"), url(../fonts/Roboto-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Montserrat;
    src: local("Montserrat"), url(../fonts/Montserrat-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== ROOT / VARIABLES ===== */
:root {
    --color-primary: #036adb;
    --color-primary-dark: #034791;
    --color-primary-light: #5690cf;
    --color-accent: #ffda1b;
    --color-accent-hover: #f5cc00;
    --color-text: #1a1a2e;
    --color-text-light: #4a4a68;
    --color-bg: #ffffff;
    --color-bg-light: #f8fafd;
    --color-bg-blue: #eff6ff;
    --color-bg-muted: #eef1fa;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-soft: 0 11px 35px rgba(0, 0, 0, 0.05);
    --shadow-btn: 0 10px 25px rgba(249, 182, 65, 0.25);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--color-primary);
    color: #fff;
}

body {
    width: 100%;
    color: var(--color-text);
    background: url(../img18/header.svg) no-repeat 100% 0;
    background-size: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 992px) {
    body {
        background: url(../img18/header.svg) no-repeat 57% 0;
    }
}

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

/* ===== FOCUS STATES (Accessibility) ===== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ===== HEADER ===== */
header {
    width: 100%;
    font-size: 1rem;
}

header nav {
    padding-top: 3.25em;
}

/* --- Logo --- */
header nav .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    background: none;
}

header nav .logo img {
    margin-right: 8px;
}

header nav .logo span {
    font-size: 1.188em;
    flex-wrap: nowrap;
}

/* --- Nav Links --- */
header nav .links ul {
    margin-bottom: 0;
    padding-left: 0;
}

@media (max-width: 500px) {
    header nav .links ul {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        padding: 1rem 3rem;
        background-color: rgba(137, 183, 243, 0.95);
        border-radius: var(--radius-sm);
        backdrop-filter: blur(8px);
    }
}

header nav .links ul li {
    font-family: var(--font-body);
    display: inline-block;
    list-style-type: none;
    margin-right: 0.438em;
    text-align: center;
}

@media (max-width: 992px) {
    header nav .links ul li {
        font-family: var(--font-heading);
    }
}

header nav .links ul li a {
    color: var(--color-text);
    text-decoration: none;
    padding: 0.4em 0.6em;
    border-radius: 4px;
    transition: color var(--transition), background-color var(--transition);
}

header nav .links ul li a:hover {
    color: var(--color-primary-dark);
    background-color: rgba(3, 106, 219, 0.06);
    text-decoration: none;
}

/* --- Nav CTA Button --- */
@media (max-width: 992px) {
    header nav .btn_nav {
        margin-top: 1rem;
    }
}

header nav .btn_nav a {
    font-family: var(--font-heading);
    color: var(--color-primary-light);
    text-decoration: none;
    padding: 0.5em 1.5rem;
    background: var(--color-bg);
    border: 2px solid var(--color-primary-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: inline-block;
}

header nav .btn_nav a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(3, 106, 219, 0.25);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
header .title-content-btn {
    font-size: 1rem;
    padding: 4.688em 0 0 0;
}

@media (max-width: 992px) {
    header .title-content-btn {
        padding: 1.6em 0 0 0;
    }
}

header .title-content-btn .title {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-size: 2.938em;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.064em;
    letter-spacing: -0.02em;
}

@media (max-width: 992px) {
    header .title-content-btn .title {
        text-align: center;
    }
}

@media (max-width: 576px) {
    header .title-content-btn .title {
        font-size: 1.938em;
    }
}

@media (max-width: 425px) {
    header .title-content-btn .title {
        font-size: 1.5em;
    }
}

header .title-content-btn .title span {
    color: var(--color-primary);
}

@media (max-width: 992px) {
    header .title-content-btn .title span {
        text-align: center;
        color: #0054ad;
    }
}

/* --- Three feature pills --- */
header .title-content-btn .content {
    margin-bottom: 0.766em;
}

@media (max-width: 768px) {
    header .title-content-btn .content {
        padding-left: 2rem;
    }
}

header .title-content-btn .content ul {
    padding: 0;
}

header .title-content-btn .content ul li {
    font-family: var(--font-heading);
    list-style-type: none;
    padding: 0.6em 15px;
}

@media (max-width: 992px) and (min-width: 768px) {
    header .title-content-btn .content ul li {
        margin-top: 1rem;
        text-align: center;
    }
}

header .title-content-btn .content ul li .vessel {
    padding: 0.6em 1.185rem 0.6em 4rem;
}

@media (max-width: 768px) {
    header .title-content-btn .content ul li .vessel {
        text-align: center;
        padding-left: 0;
    }
}

header .title-content-btn .content ul li:first-child .vessel {
    background: url(../img18/stage1.jpg) no-repeat 0 center;
}

header .title-content-btn .content ul li:nth-child(2) .vessel {
    background: url(../img18/stage2.jpg) no-repeat 0 center;
}

header .title-content-btn .content ul li:last-child .vessel {
    background: url(../img18/stage3.jpg) no-repeat 0 center;
}

/* --- Description --- */
header .title-content-btn .content_description {
    font-family: var(--font-body);
    margin-bottom: 57px;
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.05em;
    line-height: 1.6;
}

/* --- Primary CTA Button --- */
header .title-content-btn .btn {
    font-family: var(--font-heading);
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 5.375em;
}

header .title-content-btn .btn a {
    color: var(--color-text);
    text-decoration: none;
    background: var(--color-accent);
    box-shadow: var(--shadow-btn);
    padding: 0.75em 5rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: all var(--transition);
}

header .title-content-btn .btn a:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 12px 30px rgba(249, 182, 65, 0.35);
    transform: translateY(-2px);
}

@media (max-width: 425px) {
    header .title-content-btn .btn a {
        width: 100%;
        padding: 0.75em 0.7rem;
        text-align: center;
    }
}

/* --- Four checkmark features --- */
header .title-content-btn ul.four_ok {
    font-family: var(--font-heading);
    background: rgba(243, 244, 248, 0.6);
    list-style-type: none;
    border-radius: var(--radius-sm);
    padding: 0.5em 0;
}

header .title-content-btn ul.four_ok li {
    font-weight: 700;
    font-size: 0.9em;
    padding: 1em 0 1em 3.75em;
    display: inline-block;
    background: url(../img18/ok.png) no-repeat 0 center;
    line-height: 1.4;
}

/* ===== SECURITY SECTION ===== */
.security {
    font-size: 1rem;
    width: 100%;
    background: url(../img18/octopus1.png) no-repeat;
    background-size: auto;
    padding-top: 341px;
    padding-bottom: 241px;
}

@media (max-width: 768px) {
    .security {
        padding-top: 6.25rem;
        margin-bottom: 6.25rem;
        background: url(../img18/octopus1.png) no-repeat 0 -70%;
    }
}

@media (max-width: 576px) {
    .security {
        background: url(../img18/octopus1.png) no-repeat center -200%;
    }
}

.security .security_row .security_title {
    font-family: var(--font-heading);
    font-size: 1.875em;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .security .security_row .security_title {
        color: #1800a1;
    }
}

.security .security_row .security_content span {
    font-family: var(--font-body);
    font-size: 1.125em;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-light);
}

.security .security_row .security_content .first {
    margin-bottom: 1.875em;
}

/* ===== AUTOMATIC SECTION ===== */
.automatic {
    font-size: 1rem;
    margin-bottom: 61px;
}

@media (max-width: 1200px) {
    .automatic {
        font-size: 0.875em;
    }
}

.automatic .automatic_row .automatic-title h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 52px;
}

@media (max-width: 1200px) {
    .automatic .automatic_row .automatic-title h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .automatic .automatic_row .automatic-title h3 {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .automatic .automatic_row .automatic-title h3 {
        font-size: 1.5rem;
    }
}

.automatic .automatic_row .automatic-title p {
    font-family: var(--font-body);
    font-size: 1.125em;
    width: 85%;
    margin-bottom: 85px;
    line-height: 1.7;
    color: var(--color-text-light);
}

@media (max-width: 1200px) {
    .automatic .automatic_row .automatic-title p {
        text-align: center;
        margin: 0 auto 4rem auto;
    }
}

.automatic .automatic_row .automatic-title .btn_nav {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.automatic .automatic_row .automatic-title .btn_nav a {
    font-family: var(--font-heading);
    font-size: 1em;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    background: var(--color-accent);
    box-shadow: var(--shadow-btn);
    padding: 12px 80px;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: inline-block;
}

.automatic .automatic_row .automatic-title .btn_nav a:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 12px 30px rgba(249, 182, 65, 0.35);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .automatic .automatic_row .automatic-title .btn_nav a {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 2rem;
        width: 100%;
        padding: 12px;
    }
}

/* --- Venn Diagram Circles --- */
.automatic .automatic_row .automatic-circles {
    background: url(../img18/Automatic.png) no-repeat center center;
    display: flex;
    align-items: center;
    height: 570px;
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles {
        display: flex;
        flex-direction: column;
        height: auto;
        background: none;
        gap: 2rem;
        padding: 2rem 0;
    }
}

.automatic .automatic_row .automatic-circles .circle1 {
    font-family: var(--font-heading);
    width: 25%;
    text-align: right;
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle1 {
        text-align: center;
        width: auto;
        background: var(--color-bg-light);
        padding: 1.5rem;
        border-radius: var(--radius-md);
    }
}

.automatic .automatic_row .automatic-circles .circle1 h5 {
    position: relative;
    font-family: var(--font-body);
    font-weight: 700;
    right: -30px;
    margin-bottom: 1.7rem;
    color: var(--color-text);
}

@media (max-width: 1200px) and (min-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle1 h5 {
        right: -120px;
    }
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle1 h5 {
        right: 0;
        margin-bottom: 1rem;
        color: var(--color-primary);
    }
}

.automatic .automatic_row .automatic-circles .circle1 ul {
    font-family: var(--font-body);
    list-style-type: none;
}

@media (max-width: 1200px) and (min-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle1 ul {
        position: relative;
        left: 80px;
    }
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle1 ul {
        padding-left: 0;
    }
}

.automatic .automatic_row .automatic-circles .circle1 ul li {
    font-family: var(--font-body);
    line-height: 2.7;
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle1 ul li {
        line-height: 1.8;
    }
}

.automatic .automatic_row .automatic-circles .crossing {
    width: 50%;
    text-align: center;
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .crossing {
        padding: 2rem 1.5rem;
        width: auto;
        background: linear-gradient(135deg, var(--color-bg-blue), var(--color-bg-light));
        border-radius: var(--radius-md);
        border: 2px solid var(--color-primary);
    }
}

.automatic .automatic_row .automatic-circles .crossing h5 {
    font-family: var(--font-body);
    font-weight: 700;
    color: #31049b;
}

.automatic .automatic_row .automatic-circles .crossing ul {
    list-style-type: none;
    padding: 0;
}

.automatic .automatic_row .automatic-circles .crossing ul li {
    font-family: var(--font-body);
    line-height: 2.7;
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .crossing ul li {
        font-weight: 700;
        line-height: 2;
    }
}

.automatic .automatic_row .automatic-circles .circle2 {
    width: 25%;
    text-align: left;
    position: relative;
    top: -20px;
}

@media (max-width: 1200px) and (min-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle2 {
        top: -38px;
        right: 83px;
    }
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle2 {
        position: static;
        text-align: center;
        width: auto;
        background: var(--color-bg-light);
        padding: 1.5rem;
        border-radius: var(--radius-md);
    }
}

.automatic .automatic_row .automatic-circles .circle2 h5 {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 700;
    left: -30px;
    margin-bottom: 1.7rem;
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle2 h5 {
        left: 0;
        text-align: center;
        margin-bottom: 1rem;
        color: var(--color-primary);
    }
}

.automatic .automatic_row .automatic-circles .circle2 ul {
    list-style-type: none;
    padding: 0;
}

@media (max-width: 1200px) and (min-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle2 ul {
        padding: 5px;
    }
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle2 ul {
        text-align: center;
    }
}

.automatic .automatic_row .automatic-circles .circle2 ul li {
    font-family: var(--font-body);
    line-height: 2.7;
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .automatic .automatic_row .automatic-circles .circle2 ul li {
        line-height: 1.8;
    }
}

/* ===== MAIN WRAPPER ===== */
.main {
    width: 100%;
    background: url(../img18/main.jpg) no-repeat center 40%;
    background-size: 100% auto;
}

/* ===== ADVANTAGES SECTION ===== */
.main .advantages .img_wrap {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background: var(--color-bg-light);
    margin-bottom: 27px;
    transition: all var(--transition);
}

.main .advantages .img_wrap:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(3, 106, 219, 0.12);
}

@media (max-width: 768px) {
    .main .advantages .img_wrap {
        margin-left: auto;
        margin-right: auto;
    }
}

.main .advantages h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 52px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .main .advantages h3 {
        text-align: center;
        margin: 0 auto 2rem;
    }
}

.main .advantages h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .main .advantages h6 {
        text-align: center;
    }
}

.main .advantages img {
    background: none;
}

.main .advantages p {
    font-family: var(--font-body);
    padding-bottom: 62px;
    margin: 0;
    line-height: 1.6;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .main .advantages p {
        text-align: center;
        padding-bottom: 2rem;
    }
}

/* ===== SIMPLE USING SECTION ===== */
.main .simple_using {
    width: 75%;
    margin: 88px auto 178px auto;
    box-shadow: 0 0 150px rgba(50, 38, 124, 0.1);
    border-radius: var(--radius-lg);
    background: var(--color-bg);
}

@media (max-width: 992px) {
    .main .simple_using {
        margin-bottom: 3rem;
    }
}

@media (max-width: 1200px) {
    .main .simple_using {
        width: 95%;
    }
}

@media (min-width: 2560px) {
    .main .simple_using {
        width: 60%;
    }
}

.main .simple_using .container {
    padding: 113px 0 90px 0;
}

@media (max-width: 1200px) {
    .main .simple_using .container {
        padding: 2rem 1rem;
    }
}

.main .simple_using .container .row {
    margin-left: 0;
    margin-right: 0;
}

.main .simple_using .item {
    margin-bottom: 20px;
}

.main .simple_using h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .main .simple_using h3 {
        margin: auto;
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

.main .simple_using h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    padding-top: 68px;
}

@media (max-width: 1200px) {
    .main .simple_using h6 {
        text-align: center;
        padding-top: 1.5rem;
    }
}

.main .simple_using p {
    font-family: var(--font-body);
    color: var(--color-text-light);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .main .simple_using p {
        text-align: center;
    }
}

.main .simple_using .wrap {
    display: flex;
    flex-direction: column;
    width: 362px;
    height: 168px;
    box-shadow: var(--shadow-soft);
    padding: 0 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.main .simple_using .wrap:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

@media (max-width: 1200px) {
    .main .simple_using .wrap {
        width: 100%;
        height: auto;
        padding: 1.5rem 1.25rem;
    }
}

.main .simple_using .item:nth-child(2) > .wrap {
    background: url(../img18/su1.svg) no-repeat 2rem center;
}

.main .simple_using .item:nth-child(3) > .wrap {
    background: url(../img18/su2.svg) no-repeat 2rem center;
}

.main .simple_using .item:nth-child(4) > .wrap {
    background: url(../img18/su3.svg) no-repeat 2rem center;
}

.main .simple_using .item:nth-child(5) > .wrap {
    background: url(../img18/su4.svg) no-repeat 2rem center;
}

.main .simple_using .item:nth-child(6) > .wrap {
    background: url(../img18/su5.svg) no-repeat 2rem center;
}

@media (max-width: 1200px) {
    .main .simple_using .wrap {
        background-position: center top !important;
        padding-top: 4rem;
    }
}

/* ===== REPORTING SECTION ===== */
.main .reporting {
    margin-bottom: 258px;
}

@media (max-width: 992px) {
    .main .reporting {
        margin-bottom: 4rem;
    }
}

.main .reporting .row {
    margin-left: 0;
    margin-right: 0;
}

.main .reporting h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.main .reporting h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 42px;
}

@media (max-width: 1200px) {
    .main .reporting h3 {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .main .reporting h3 {
        margin-left: 15px;
    }
}

.main .reporting p {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-light);
}

.main .reporting .img {
    width: 87px;
    height: 87px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform var(--transition);
}

.main .reporting .features:hover .img {
    transform: scale(1.1);
}

.main .reporting .img.loupe {
    background: url(../img18/loupe.svg) no-repeat center center;
    background-color: var(--color-bg);
}

.main .reporting .img.file {
    background: url(../img18/file.svg) no-repeat center center;
    background-color: var(--color-bg);
}

.main .reporting .img.server {
    background: url(../img18/server.svg) no-repeat center center;
    background-color: var(--color-bg);
}

.main .reporting .card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-blue);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-sm);
    height: 100%;
    padding: 30px 30px 20px;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.main .reporting .card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
    border-color: rgba(3, 106, 219, 0.15);
}

.main .reporting a.btn_reporting {
    padding: 14px 20px;
    background: var(--color-accent);
    box-shadow: var(--shadow-btn);
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: inline-block;
}

.main .reporting a.btn_reporting:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 12px 30px rgba(249, 182, 65, 0.35);
    transform: translateY(-2px);
}

/* ===== SAFETY SECTION ===== */
.main .safety {
    width: 100%;
    margin-bottom: 166px;
    background: url(../img18/octopus.png) no-repeat 80% 95%;
    background-size: auto;
}

@media (max-width: 992px) {
    .main .safety {
        padding-bottom: 5rem;
        margin-bottom: 0;
        background: url(../img18/octopus.png) no-repeat 87% 96%;
        background-size: contain;
    }
}

.main .safety .container-lg {
    padding-bottom: 56px;
}

@media (max-width: 992px) {
    .main .safety .container-lg .row {
        width: 95%;
        margin: auto;
    }
}

.main .safety h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .main .safety h3 {
        text-align: center;
    }
}

.main .safety h5 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.main .safety p {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-light);
}

.main .safety [class^="safety_element"] {
    padding: 13px 0 20px 70px;
    margin-bottom: 10px;
    transition: transform var(--transition);
}

.main .safety [class^="safety_element"]:hover {
    transform: translateX(6px);
}

.main .safety .safety_element1 {
    background: url(../img18/sf1.svg) no-repeat;
}

.main .safety .safety_element2 {
    background: url(../img18/sf2.svg) no-repeat;
}

.main .safety .safety_element3 {
    background: url(../img18/sf3.svg) no-repeat;
}

.main .safety .safety_element4 {
    background: url(../img18/sf4.svg) no-repeat;
}

@media (max-width: 768px) {
    .main .safety [class^="safety_element"] {
        padding: 50px 0 20px 0;
        background-position: center top !important;
    }

    .main .safety [class^="safety_element"]:hover {
        transform: none;
    }
}

/* ===== WAYS SECTION ===== */
.ways {
    position: relative;
    background: url(../img18/image4.png) no-repeat;
    background-size: cover;
    margin-bottom: 360px;
}

@media (max-width: 768px) {
    .ways {
        margin-bottom: 12.5rem;
    }
}

.ways .ways_wrap {
    padding: 150px 0 410px 0;
}

@media (max-width: 768px) {
    .ways .ways_wrap {
        padding-bottom: 15rem;
        padding-top: 80px;
    }
}

.ways .ways_wrap .row {
    margin-left: 0;
    margin-right: 0;
}

.ways .ways_wrap h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .ways .ways_wrap h3 {
        text-align: center;
    }
}

.ways .ways_wrap .way {
    margin-bottom: 10px;
}

.ways .ways_wrap .way:nth-child(odd) {
    padding-right: 0;
}

@media (max-width: 768px) {
    .ways .ways_wrap .way:nth-child(odd) {
        padding-right: 0.938rem;
    }
}

.ways .ways_wrap .way:nth-child(even) {
    padding-left: 0;
}

@media (max-width: 768px) {
    .ways .ways_wrap .way:nth-child(even) {
        padding-left: 0.938rem;
    }
}

.ways .ways_wrap p {
    font-family: var(--font-body);
    padding: 27px 30px;
    text-align: left;
    background: var(--color-bg);
    height: 100%;
    border-radius: 4px;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.ways .ways_wrap .way:hover p {
    border-left-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
    transform: translateX(4px);
}

/* --- Sustainability CTA Block --- */
.ways .sustainability {
    background: linear-gradient(135deg, #3b74bf, #2a5ba8);
    border-radius: var(--radius-md);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 100%;
    left: 50%;
    box-shadow: 0 20px 60px rgba(42, 91, 168, 0.3);
}

.ways .sustainability .btn_info,
.ways .sustainability .btn_test {
    text-align: center;
}

.ways .sustainability .title {
    padding-top: 53px;
    margin-bottom: 70px;
}

.ways .sustainability h1 {
    font-family: var(--font-heading);
    text-align: center;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .ways .sustainability h1 {
        font-size: 1.75rem;
    }
}

.ways .sustainability a {
    font-family: var(--font-heading);
    color: var(--color-text);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
}

.ways .sustainability .btn_test {
    padding: 12px 10px;
    background: var(--color-accent);
    box-shadow: var(--shadow-btn);
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.ways .sustainability .btn_test:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 182, 65, 0.35);
}

@media (max-width: 630px) {
    .ways .sustainability .btn_test {
        width: 90%;
    }
}

.ways .sustainability .btn_info {
    padding: 12px 10px;
    background: #e5e5e5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 93px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.ways .sustainability .btn_info:hover {
    background: #d9d9d9;
    transform: translateY(-2px);
}

@media (max-width: 630px) {
    .ways .sustainability .btn_info {
        width: 90%;
    }
}

/* ===== FOOTER ===== */
footer nav {
    padding-top: 52px;
    margin-bottom: 70px;
}

@media (max-width: 1200px) {
    footer nav {
        display: flex;
        justify-content: center;
    }
}

footer nav .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    background: none;
}

footer nav .logo img {
    margin-right: 8px;
}

@media (max-width: 576px) {
    footer nav .logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }
}

footer nav .links ul {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    footer nav .links ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 0;
    }
}

footer nav .links ul li {
    font-family: var(--font-body);
    display: inline-block;
    list-style-type: none;
    margin-right: 7px;
}

footer nav .links ul li a {
    color: var(--color-text);
    text-decoration: none;
    padding: 0.3em 0.5em;
    border-radius: 4px;
    transition: color var(--transition), background-color var(--transition);
}

footer nav .links ul li a:hover {
    color: var(--color-primary-light);
    background-color: rgba(3, 106, 219, 0.06);
    text-decoration: none;
}

/* --- Footer Connect Section --- */
footer .connect {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    footer .connect {
        margin-bottom: 3rem;
    }

    footer .connect > div {
        margin-bottom: 1.5rem;
    }
}

footer .connect h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-weight: 700;
    margin: 0 0 20px 20px;
}

@media (max-width: 576px) {
    footer .connect h6 {
        text-align: center;
        margin: 0 0 15px 0;
    }
}

footer .connect .contact_info .info_wrap .content1 {
    background: var(--color-bg-muted);
    padding: 20px;
    border-radius: var(--radius-sm);
}

footer .connect .contact_info .info_wrap .content1 a.number {
    display: block;
    background: url(../img18/phone.svg) no-repeat 0 center;
    padding-left: 25px;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1em;
    margin-bottom: 6px;
    transition: color var(--transition);
}

footer .connect .contact_info .info_wrap .content1 a.number:hover {
    color: var(--color-primary);
}

footer .connect .contact_info .info_wrap .content1 .adress {
    margin: 8px 0 0 0;
    padding-left: 25px;
    background: url(../img18/map.svg) no-repeat 0 5px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text-light);
}

/* --- Map --- */
footer .connect .map .map_wrap .content2 {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 250px;
}

footer .connect .map .map_wrap .content2 iframe {
    width: 100%;
    height: 100%;
}

/* --- Requisites --- */
@media (min-width: 768px) and (max-width: 992px) {
    footer .connect .requisites {
        font-family: var(--font-heading);
        padding-top: 2rem;
    }
}

footer .connect .requisites .content3 {
    background: var(--color-bg-muted);
    width: 100%;
    border-radius: var(--radius-sm);
}

footer .connect .requisites .content3 p {
    font-family: var(--font-body);
    font-size: 12px;
    padding: 1rem;
    margin: 0;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* --- Footer Bottom --- */
footer .ft {
    width: 100%;
    background: var(--color-bg-muted);
}

footer .ft p {
    font-family: var(--font-body);
    padding: 25px;
    margin: 0;
    font-size: 0.85em;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== SCROLL-TO-TOP ANIMATION (for anchors) ===== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
