/* === Voltarion CH — Petrol + Terracotta theme === */
:root {
    --main-color: #ffffff;
    --second-color: #2c5560;          /* primary petrol */
    --third-color: #c08763;            /* terracotta accent */
    --advantages-color: #173139;       /* deep petrol (dark section bg) */

    --text-color-main: #1a2b30;
    --text-color-second: #2c5560;

    --form-button-background: #2c5560;
    --form-button-background-hover: #173139;
    --form-button-color: #ffffff;
    --form-border: 1px solid #2c5560;

    --css-loader-color: #2c5560;

    --language-switcher-item-hover-color: #2c5560;
}

/* Global text contrast & section hardening */
body {
    color: var(--text-color-main);
    background: #f8f7f4;
}

a { color: var(--second-color); }
a:hover { color: var(--third-color); }

/* Header — sticky */
.main_header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: #ffffff;
    border-bottom: 1px solid rgba(44, 85, 96, 0.12);
    box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.main_header .container { padding-top: 12px; padding-bottom: 12px; }
.main_header .navbar-brand {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--second-color);
    font-weight: 700; font-size: 22px;
}
.main_header .navbar-brand img { height: 38px; width: auto; }
.main_header .navbar-brand span { color: var(--second-color); }

/* Primary menu */
.primary_menu ul {
    display: flex; list-style: none; gap: 28px;
    margin: 0; padding: 0;
}
.primary_menu ul li a {
    color: var(--text-color-main);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.primary_menu ul li a:hover,
.primary_menu ul li.active a,
.primary_menu ul li.current-menu-item a {
    color: var(--second-color);
    border-color: var(--third-color);
}

/* Sign up button (header CTA) */
.sign-up-button {
    display: inline-block;
    background: var(--second-color);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s, transform .15s;
    border: 1px solid var(--second-color);
}
.sign-up-button:hover {
    background: var(--third-color);
    border-color: var(--third-color);
    color: #ffffff !important;
}

/* Hero */
.section_cta {
    background: linear-gradient(135deg, #f4f1ec 0%, #e9efef 60%, #d8e4e6 100%);
    padding: 60px 0 72px 0;
}
.section_cta .cta_wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.section_cta h1 {
    color: var(--second-color);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    margin: 0 0 18px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.section_cta h1 strong { font-weight: 700; }
.section_cta .text {
    font-size: 17px; line-height: 1.65; color: #2b3a3f; max-width: 560px;
}
.section_cta .text strong { color: var(--second-color); }
.section_cta .buttons { margin-top: 26px; }
.section_cta .buttons .btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--second-color);
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background .2s;
    border: 1px solid var(--second-color);
}
.section_cta .buttons .btn:hover { background: var(--third-color); border-color: var(--third-color); }
.section_cta .offices { margin-top: 32px; }
.section_cta .offices p { color: #45575c; font-size: 14px; margin-bottom: 10px; }
.section_cta .offices-logo img { border-radius: 3px; border: 1px solid #cfdcde; }

/* Hero right-side image */
.section_cta .right_side {
    background: url('/images/hero-image-net.webp') center/contain no-repeat;
    min-height: 380px;
    border-radius: 12px;
}

/* Section: as seen on */
#as-seen-on h2 { color: #1a2b30 !important; font-size: 22px !important; font-weight: 600 !important; margin-bottom: 18px; }
#as-seen-on .as-seen-on__content {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-around; gap: 24px;
}
#as-seen-on .wp-block-image img {
    max-height: 36px; width: auto; object-fit: contain;
    /* press logos — DO NOT recolor */
    filter: none;
    opacity: 0.85;
}

/* Steps + warnings sidebar */
.steps-warning {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin: 56px 0;
}
.steps-block__wrapper h2 {
    color: var(--second-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}
.steps-block__list { display: grid; gap: 18px; }
.steps__item {
    display: grid; grid-template-columns: 64px 1fr; gap: 18px;
    background: #ffffff; padding: 22px; border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border-left: 4px solid var(--third-color);
}
.steps-block__number {
    width: 56px; height: 56px;
    background: var(--second-color); color: #fff;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 700; font-size: 20px;
}
.steps-block__label {
    display: block; font-weight: 600; color: var(--second-color);
    font-size: 17px; margin-bottom: 6px;
}
.steps-block__text { color: #43585d; font-size: 15px; margin: 0; }
.steps-block__cta { margin-top: 26px; }
.steps-block__cta .btn-primary {
    display: inline-block; padding: 12px 28px;
    background: var(--second-color); color: #fff !important;
    border-radius: 8px; text-decoration: none; font-weight: 600;
}
.steps-block__cta .btn-primary:hover { background: var(--third-color); }

/* Warnings sidebar */
.warnings { background: #fbf6f1; border: 1px solid #ecd9c7; padding: 22px; border-radius: 12px; }
.warnings__title { color: #6c3b16; font-size: 18px; margin: 0 0 14px 0; font-weight: 700; }
.warnings__icon { display: inline-block; margin-right: 6px; color: var(--third-color); }
.warning-item {
    display: grid; grid-template-columns: auto 1fr auto; gap: 10px;
    align-items: center; padding: 12px 0;
    border-bottom: 1px solid #ecd9c7;
    text-decoration: none; color: #3b2812;
}
.warning-item:last-child { border-bottom: none; }
.warning-item__badge {
    background: var(--third-color); color: #ffffff;
    padding: 3px 8px; font-size: 11px; border-radius: 4px; font-weight: 600;
}
.warning-item__text { margin: 0; font-size: 13px; line-height: 1.4; color: #3b2812; }
.warning-item__arrow { color: var(--second-color); font-size: 18px; }

.sidebar-banners { display: grid; gap: 12px; margin-top: 18px; }
.sidebar-banner {
    display: flex; align-items: center; gap: 12px;
    background: var(--second-color); color: #ffffff !important;
    padding: 14px 16px; border-radius: 10px;
    text-decoration: none; font-weight: 500; font-size: 14px;
}
.sidebar-banner.banner-b { background: #3d6e7a; }
.sidebar-banner:hover { background: var(--third-color); }
.banner-icon { font-size: 22px; }

/* Modal overlay */
.warning-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(20,40,46,0.75);
    display: none; align-items: center; justify-content: center;
    z-index: 2000;
}
.warning-modal-overlay--active { display: flex; }
.warning-modal {
    background: #fff; max-width: 560px; width: 92%;
    border-radius: 12px; padding: 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.warning-modal__title { color: var(--second-color); margin: 0 0 4px 0; font-size: 20px; }
.warning-modal__date { display: block; color: #7a8b8f; font-size: 13px; margin-bottom: 16px; }
.warning-modal__close {
    background: none; border: none; font-size: 26px; float: right; cursor: pointer;
    color: var(--second-color);
}
.warning-modal__content { color: #2b3a3f; font-size: 14px; line-height: 1.55; }
.warning-modal__content p { margin: 0 0 10px 0; }

/* Advantages dark section */
#section-advantages {
    background: var(--advantages-color) !important;
    padding: 60px 28px;
    border-radius: 12px;
    margin: 40px 0;
}
#section-advantages > .wp-block-group__inner-container { max-width: 1200px; margin: 0 auto; }
#section-advantages h2 {
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 32px !important;
}
#section-advantages .wp-block-columns {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
@media (max-width: 991px) { #section-advantages .wp-block-columns { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { #section-advantages .wp-block-columns { grid-template-columns: 1fr; } }
#section-advantages .wp-block-column { text-align: left; }
#section-advantages .wp-block-column h3 { color: #ffffff !important; font-size: 19px !important; margin: 14px 0 10px 0; }
#section-advantages .wp-block-column p { color: rgba(255,255,255,0.85) !important; font-size: 15px !important; line-height: 1.55; }
#section-advantages .wp-block-image img { width: 48px !important; height: 48px !important; }

/* Testimonials */
#testimonials-users { margin: 40px 0; }
#testimonials-users h2 { color: var(--second-color); }
.testimonials-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 22px; }
@media (max-width: 991px) { .testimonials-columns { grid-template-columns: 1fr; } }
.testimonials-card {
    background: #ffffff !important;
    padding: 22px; border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid #e5e1d8;
    display: flex !important; flex-direction: column; gap: 12px;
}
.testimonials-card h3 { color: var(--second-color) !important; margin: 0; font-size: 17px !important; }
.testimonials-card h4 { color: var(--second-color) !important; font-size: 14px !important; margin: 0; font-weight: 600; }
.testimonials-card p { color: #3a4a4e !important; margin: 0; font-size: 14px !important; line-height: 1.55 !important; }
.testimonials-user {
    display: grid !important; grid-template-columns: 64px 1fr !important; gap: 12px; align-items: center;
}
.testimonials-user img { width: 56px !important; height: 56px !important; border-radius: 50%; }
.testimonials-profit {
    display: grid !important; grid-template-columns: 1fr 1px 1fr !important;
    gap: 12px; padding: 12px 0; border-top: 1px dashed #e5e1d8; border-bottom: 1px dashed #e5e1d8;
}
.testimonials-profit > div:nth-child(2) { background: #e5e1d8; }

/* Features section (alt look) */
.bot_features_section h2 { color: var(--second-color); margin-bottom: 32px; }
.features2_wrapper {
    display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 20px;
}
@media (max-width: 991px) { .features2_wrapper { grid-template-columns: 1fr; } }
.features2_wrapper .feature {
    background: #ffffff; border-radius: 12px; padding: 28px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
    border: 1px solid #e9e4d8;
    transition: background .25s, color .25s;
}
.features2_wrapper .feature .icon {
    width: 56px; height: 56px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(44,85,96,0.08); border-radius: 12px; padding: 10px;
}
.features2_wrapper .feature .icon img { width: 100%; height: 100%; object-fit: contain; }
.features2_wrapper .feature .heading {
    font-size: 22px; font-weight: 600; color: var(--second-color);
    margin-bottom: 12px;
}
.features2_wrapper .feature .descr { color: #3a4a4e; font-size: 15px; line-height: 1.6; }
.features2_wrapper .feature .descr strong { color: var(--second-color); }
.features2_wrapper .feature:hover {
    background: var(--second-color);
    border-color: var(--second-color);
}
.features2_wrapper .feature:hover .heading,
.features2_wrapper .feature:hover .descr,
.features2_wrapper .feature:hover .descr strong { color: #ffffff !important; }
.features2_wrapper .feature:hover .icon { background: rgba(255,255,255,0.18); }
.features2_wrapper .feature:hover .icon img { filter: brightness(0) invert(1); }

/* CTA button row */
.lp_button_wrapper { margin: 40px auto; text-align: center; }
.target_lp_button {
    display: inline-block; padding: 12px 36px;
    border: 2px solid var(--second-color); color: var(--second-color);
    text-decoration: none; font-weight: 600; border-radius: 999px;
    transition: background .2s, color .2s;
}
.target_lp_button:hover { background: var(--second-color); color: #fff; }

/* FAQ */
.faq__block { margin: 50px 0; }
.faq__block h2 { color: var(--second-color); margin-bottom: 28px; }
.faq__wrapper { display: grid; grid-template-columns: 1fr; }
.faq-wrapper__row { display: grid; gap: 6px; }
.accordion {
    background: #ffffff; border: 1px solid #e5e1d8; border-radius: 10px; padding: 6px 18px;
}
.accordion .faq__question {
    cursor: pointer; padding: 16px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-weight: 600; color: var(--second-color); font-size: 17px;
}
.accordion .faq__answer {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .3s, opacity .3s;
    color: #3a4a4e; font-size: 15px; line-height: 1.6;
}
.accordion.active .faq__answer { max-height: 800px; opacity: 1; padding-bottom: 16px; }
.accordion .faq__arrow svg { transition: transform .25s; }
.accordion.active .faq__arrow svg { transform: rotate(180deg); }

/* Trust / extra-content blocks */
.trust-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    margin: 36px 0;
}
@media (max-width: 991px) { .trust-row { grid-template-columns: 1fr; } }
.trust-card {
    background: #fff; border: 1px solid #e5e1d8; border-radius: 12px; padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.trust-card h3 { color: var(--second-color); font-size: 19px; margin: 0 0 8px 0; }
.trust-card p { color: #3a4a4e; font-size: 15px; line-height: 1.55; margin: 0; }

/* Footer */
.main_footer {
    background: #102025; color: #c3d1d4;
    padding: 56px 0 32px 0; margin-top: 60px;
}
.main_footer .footer-navbar-brand {
    display: inline-flex; align-items: center; gap: 10px;
    color: #ffffff; text-decoration: none; font-weight: 700; font-size: 20px;
    margin-bottom: 18px;
}
.main_footer .footer-navbar-brand img { height: 32px; width: auto; }
.main_footer .footer-navbar-brand span { color: #ffffff; }
.footer_menu_2 ul { list-style: none; padding: 0; margin: 0 0 18px 0; }
.footer_menu_2 ul li a {
    color: #c3d1d4; text-decoration: none; line-height: 2;
    transition: color .2s;
}
.footer_menu_2 ul li a:hover { color: var(--third-color); }
.main_footer p { color: #a9b9bc; font-size: 12.5px; line-height: 1.7; }
.main_footer .copyright { color: #ffffff; margin-top: 14px; font-size: 13px; }

/* Mobile burger button + offcanvas (custom, no Bootstrap JS needed) */
.mob-nav-toggler {
    display: none;
    width: 44px; height: 44px; padding: 0;
    border: 1px solid rgba(44,85,96,0.4); border-radius: 10px;
    background: #ffffff; color: var(--second-color); cursor: pointer;
    align-items: center; justify-content: center;
}
.offcanvas {
    position: fixed; top: 0; right: 0;
    width: min(86vw, 360px); height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 30px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 1500;
    display: flex; flex-direction: column;
}
.offcanvas.open { transform: translateX(0); }
.offcanvas-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; border-bottom: 1px solid #e5e1d8;
}
.offcanvas-title { margin: 0; color: var(--second-color); font-size: 18px; font-weight: 700; }
.btn-close {
    background: none; border: none; font-size: 28px; cursor: pointer;
    color: var(--second-color); line-height: 1; padding: 0 6px;
}
.offcanvas-body { padding: 22px; }
.mob-links-nav { display: flex; flex-direction: column; gap: 14px; }
.mob-links-nav a {
    color: var(--text-color-main); text-decoration: none;
    font-weight: 600; font-size: 17px;
    padding-bottom: 8px; border-bottom: 1px solid #ece8df;
}
.mob-links-nav a.btn { background: var(--second-color); color: #fff; border: none; text-align: center; padding: 12px 18px; border-radius: 8px; }

.offcanvas-backdrop {
    position: fixed; inset: 0; background: rgba(15,25,30,0.5);
    opacity: 0; visibility: hidden; transition: opacity .28s ease;
    z-index: 1400;
}
.offcanvas-backdrop.show { opacity: 1; visibility: visible; }

/* Layout helpers */
.container { max-width: 1180px; margin: 0 auto; padding: 0 18px; }
.row { display: flex; flex-wrap: wrap; }
.col-12 { width: 100%; }
.text-end { text-align: right; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }

/* Responsive */
@media (max-width: 991px) {
    .section_cta .cta_wrapper { grid-template-columns: 1fr; }
    .section_cta { padding: 36px 0 44px 0; }
    .section_cta h1 { font-size: 36px; }
    .section_cta .right_side { display: none; }
    .steps-warning { grid-template-columns: 1fr; }
    .primary_menu, .header-desktop-only { display: none !important; }
    .mob-nav-toggler { display: inline-flex; }
    .main_header .header-mobile-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .main_header .header-desktop-row { display: none; }
    .main_footer .footer-row { display: grid; grid-template-columns: 1fr; gap: 28px; }
}
@media (min-width: 992px) {
    .main_header .header-mobile-row { display: none; }
    .main_header .header-desktop-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .main_footer .footer-row { display: grid; grid-template-columns: 1fr 2fr; gap: 36px; }
}

/* Forms */
.form-card {
    background: #ffffff; border-radius: 12px; padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 560px; margin: 0 auto;
    border: 1px solid #e5e1d8;
}
.form-card h2 { color: var(--second-color); margin: 0 0 16px 0; font-size: 24px; }
.form-card label { display: block; color: var(--second-color); font-size: 14px; font-weight: 600; margin: 12px 0 6px 0; }
.form-card input,
.form-card select,
.form-card textarea {
    width: 100%; padding: 12px 14px; border-radius: 8px;
    border: 1px solid #cfd9db; background: #fff; color: var(--text-color-main);
    font-size: 15px; box-sizing: border-box;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
    outline: none; border-color: var(--second-color);
    box-shadow: 0 0 0 3px rgba(44,85,96,0.12);
}
.form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-card .form-row { grid-template-columns: 1fr; } }
.form-card .form-tel {
    display: grid; grid-template-columns: 120px 1fr; gap: 8px; align-items: stretch;
}
.form-card .form-tel select { padding: 12px 8px; }
.form-card .form-submit {
    display: block; width: 100%; margin-top: 18px;
    padding: 13px; border: none; border-radius: 999px;
    background: var(--second-color); color: #fff;
    font-weight: 600; font-size: 16px; cursor: pointer;
    transition: background .2s;
}
.form-card .form-submit:hover { background: var(--third-color); }
.form-card .consent { font-size: 12.5px; color: #56676c; margin-top: 10px; }
.form-card .consent a { color: var(--second-color); }

/* Body intro / content blocks */
.content-section { padding: 24px 0 12px 0; }
.content-section h2 {
    color: var(--second-color); font-size: 28px; font-weight: 700;
    margin: 28px 0 14px 0;
}
.content-section h3 {
    color: var(--second-color); font-size: 20px; font-weight: 600;
    margin: 20px 0 10px 0;
}
.content-section p {
    color: var(--text-color-main); font-size: 16px; line-height: 1.7; margin: 0 0 14px 0;
}
.content-section ul { padding-left: 22px; }
.content-section ul li { color: var(--text-color-main); line-height: 1.7; margin-bottom: 6px; }
.content-section strong { color: var(--second-color); }

/* Disclaimer block */
.disclaimer-block {
    background: #fff7ee; border-left: 4px solid var(--third-color);
    padding: 18px 22px; border-radius: 8px; margin: 30px 0;
    color: #4a3624;
    font-size: 14.5px; line-height: 1.6;
}
.disclaimer-block strong { color: #6c3b16; }

/* Page title header */
.page-hero {
    background: linear-gradient(135deg, #f4f1ec 0%, #e9efef 70%);
    padding: 48px 0 36px 0;
    border-bottom: 1px solid rgba(44,85,96,0.08);
    margin-bottom: 12px;
}
.page-hero h1 {
    color: var(--second-color); font-size: 40px; font-weight: 700; margin: 0;
}
.page-hero p { color: #45575c; font-size: 17px; margin: 12px 0 0 0; max-width: 720px; line-height: 1.55; }

/* Plans page */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 30px 0; }
@media (max-width: 991px) { .plans-grid { grid-template-columns: 1fr; } }
.plan-card {
    background: #fff; border: 1px solid #e5e1d8; border-radius: 12px; padding: 26px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    display: flex; flex-direction: column;
}
.plan-card.popular { border-color: var(--third-color); border-width: 2px; }
.plan-card h3 { color: var(--second-color); font-size: 22px; margin: 0 0 8px 0; }

/* Stack hardcoded 2-column form grids on mobile (contact / sign-up / login) */
@media (max-width: 720px) {
    .content-section > div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}
.plan-card .price {
    font-size: 36px; font-weight: 700; color: var(--second-color);
    margin: 8px 0 4px 0;
}
.plan-card .price small { font-size: 14px; color: #66767b; font-weight: 500; }
.plan-card ul { list-style: none; padding: 0; margin: 16px 0; flex: 1; }
.plan-card ul li {
    padding: 8px 0 8px 26px; position: relative;
    border-bottom: 1px solid #f0ece2; font-size: 15px; color: #3a4a4e;
}
.plan-card ul li::before {
    content: "✓"; position: absolute; left: 0; top: 8px;
    color: var(--third-color); font-weight: 700;
}
.plan-card .plan-cta {
    display: block; text-align: center; padding: 12px;
    background: var(--second-color); color: #fff !important;
    border-radius: 999px; text-decoration: none; font-weight: 600;
}
.plan-card .plan-cta:hover { background: var(--third-color); }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 26px 0; }
@media (max-width: 991px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
    background: #fff; border-radius: 12px; padding: 20px;
    border: 1px solid #e5e1d8; text-align: center;
}
.team-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.team-card h3 { color: var(--second-color); font-size: 17px; margin: 0; }
.team-card .role { color: #66767b; font-size: 13px; margin: 2px 0 8px 0; }
.team-card p { color: #43585d; font-size: 14px; line-height: 1.5; margin: 0; }
