/* ==========================================================================
   ВАЛЕН — Бухгалтерские услуги в Иркутске (Vanilla CSS)
   ========================================================================== */

/* --- CSS Variables / Design System --- */
:root {
    --primary: #0052cc;
    --primary-hover: #0043a8;
    --primary-light: #eff6ff;
    --primary-border: #bfdbfe;

    --text-dark: #0f172a;
    --text-heading: #091e42;
    --text-muted: #64748b;
    --text-secondary: #475569;

    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --bg-container: #f1f5f9;
    --bg-blue-card: #f0f5fd;

    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.08);

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

section,
[id] {
    scroll-margin-top: 88px;
}



a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

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

/* --- Container Utility --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography Helpers --- */
.section-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.nav-link:hover {
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.phone-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #1b3bbb;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0b1a48;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.phone-number:hover {
    color: var(--primary);
}

.work-hours {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Hamburger Button — Hidden on desktop */
.hamburger-btn {
    display: none;
}

.hamburger-btn .bar {
    width: 100%;
    height: 2.5px;
    background-color: #1b3bbb;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

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

.hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}



/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 0 0 0;
    background: #ffffff;
    overflow: hidden;
}

/* Office image stretching to right edge of viewport */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;

    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

@media (min-width: 1400px) {
    .hero-bg-wrapper {
        width: 55%;
        height: 100%;
    }
}

@media (min-width: 1750px) {
    .hero-bg-wrapper {
        width: 57%;
    }
}

.hero-bg-img {
    width: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-main-row {
    min-height: 260px;
    display: flex;
    align-items: flex-start;
    padding-top: 32px;
    padding-bottom: 20px;
}

.hero-content {
    max-width: 520px;
    padding-right: 40px;
    position: relative;
}

/* White gradient mask behind text for readability over bg image */
.hero-content::before {
    content: '';
    position: absolute;
    top: -32px;
    left: -40px;
    right: -80px;
    bottom: -20px;
    background: linear-gradient(to right, #ffffff 60%, rgba(255, 255, 255, 0.85) 80%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0b1a48;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-title-blue {
    color: #1b4ed8;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 480px;
}

/* 4 Feature Cards — overlap hero bg image by ~50% */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -10px;
    padding-bottom: 24px;
}


.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Services Overview (IP/OOO & Marketplaces)
   ========================================================================== */
.services-overview-section {
    padding: 16px 0 32px;
}

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

.service-box {
    background: var(--bg-blue-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 20px;
}

.ip-ooo-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ip-ooo-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    min-height: 180px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.ip-ooo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.badge-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ip-ooo-type {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-heading);
}

.ip-ooo-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.ip-ooo-illustration {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.card-svg-illust {
    width: 90px;
    height: 60px;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ip-ooo-card:hover .card-svg-illust {
    opacity: 1;
    transform: translateY(-2px);
}

/* Marketplaces Box */
.service-box-marketplaces {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.mp-content {
    flex: 1;
    max-width: 320px;
}

.mp-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.mp-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 16px;
}

.mp-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.mp-badge-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mp-badge-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.wb-badge {
    background: linear-gradient(135deg, #cb11ab 0%, #8c007e 100%);
}

.ozon-badge {
    background: #005bff;
}

.yandex-badge {
    background: #ff0000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    padding: 0;
}

.mega-badge {
    background: #ffc400;
    color: #000000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    padding: 0;
}

.mp-mascot-wrapper {
    width: 180px;
    flex-shrink: 0;
}

.mp-mascot-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==========================================================================
   Tasks & Pricing Section
   ========================================================================== */
.tasks-pricing-section {
    padding: 32px 0;
}

.tasks-pricing-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
}

/* 6 Tasks Grid */
.tasks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.task-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.task-card:hover {
    border-color: var(--primary-border);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.task-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.35;
    margin-bottom: 6px;
}

.task-content p {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Pricing Column */
.pricing-column {
    display: flex;
    flex-direction: column;
}

.pricing-card-wrapper {
    background: var(--bg-blue-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.pricing-content-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
    flex: 1;
}

.pricing-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.pricing-type {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
    display: block;
}

.pricing-price-line {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.from-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-heading);
}

.period {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.calc-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.3;
}

.calculator-illustration {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: center;
}

/* ==========================================================================
   Lead Form Banner Section
   ========================================================================== */
.lead-banner-section {
    padding: 24px 0 40px;
}

.lead-banner {
    background: var(--bg-blue-card);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(191, 219, 254, 0.5);
}

.lead-banner-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.gift-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #ffffff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.gift-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.gift-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    height: 48px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0 16px;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.15);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    max-width: 580px;
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid #94a3b8;
    border-radius: 4px;
    background: #ffffff;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
}

.checkbox-label input:checked+.checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked+.checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.checkbox-text a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.form-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

.btn-outline {
    background: #ffffff;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
}

/* ==========================================================================
   Contacts & Map Section
   ========================================================================== */
.contacts-section {
    padding: 32px 0 48px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: flex-start;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 500;
}

.contact-link {
    font-weight: 700;
    color: var(--text-heading);
}

.contact-link:hover {
    color: var(--primary);
}

.map-wrapper {
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #091747;
    padding: 24px 0;
    margin-top: 0;
    color: #ffffff;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.copyright {
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
}

.copyright-sub {
    font-size: 0.8rem;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-link {
    font-size: 0.85rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ==========================================================================
   Success Modal
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 24px;
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary, #0052cc);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 82, 204, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-hover, #0043a8);
    box-shadow: 0 6px 18px rgba(0, 82, 204, 0.45);
    transform: translateY(-2px);
}

.scroll-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .tasks-pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

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

    .pricing-content-row {
        flex-direction: column;
    }

    .calculator-illustration {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-main-row {
        min-height: auto;
        padding: 24px 0 16px;
    }

    .hero-bg-wrapper {
        position: relative;
        width: 100%;
        border-radius: var(--radius-md);
        margin-bottom: 24px;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-content::before {
        display: none;
    }


    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: 8px;
    }

    .nav {
        position: fixed;
        top: 82px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        gap: 16px;
    }


    .nav.active {
        transform: translateY(0);
    }

    .header-contact .work-hours {
        display: none;
    }


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

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

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

    .service-box-marketplaces {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .mp-mascot-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 1440px) {
  #itvmxx {
    width: 73px;
    height: 47px;
  }
}

#itvmxx {
  width: 73px;
  height: 47px;
}

@media (max-width: 1440px) {
  #i89j {
    width: 82px;
    height: 53px;
  }
}

#i89j {
  width: 82px;
  height: 53px;
}

@media (max-width: 480px) {
  #i0055 {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  #ietv9 {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  #isu25 {
    height: 30px;
    width: 30px;
  }
}

@media (max-width: 480px) {
  #ilc0m {
    padding: 8px 8px 8px 8px;
    align-items: center;
    flex-wrap: nowrap;
    align-self: auto;
  }
}

@media (max-width: 480px) {
  #izohb {
    text-align: left;
    align-content: stretch;
  }
}

@media (max-width: 480px) {
  #i78i4 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  #i8udv {
    padding: 10px 0px 20px 0px;
  }
}

@media (max-width: 480px) {
  #iljji {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  #i0rmx6 {
    width: 227px;
    height: 206px;
  }
}

/*start_css_for_il9wv*/
#il9wv.hero-section {
    position: relative;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

#il9wv .hero-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

#il9wv .hero-bg-img {
    width: 100%;
    object-fit: cover;
    object-position: left center;
}

#il9wv .hero-container {
    position: relative;
    z-index: 2;
}

#il9wv .hero-main-row {
    min-height: 260px;
    display: flex;
    align-items: flex-start;
    padding-top: 32px;
    padding-bottom: 20px;
}

#il9wv .hero-content {
    max-width: 520px;
    padding-right: 40px;
    position: relative;
}

#il9wv .hero-content::before {
    content: '';
    position: absolute;
    top: -32px;
    left: -40px;
    right: -80px;
    bottom: -20px;
    background: linear-gradient(to right, #ffffff 60%, rgba(255, 255, 255, 0.85) 80%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

#il9wv .hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0b1a48;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

#il9wv .hero-title-blue {
    color: #1b4ed8;
}

#il9wv .hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 480px;
}

#il9wv .hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -10px;
    padding-bottom: 24px;
}

#il9wv .feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#il9wv .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border);
}

#il9wv .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#il9wv .feature-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 4px;
}

#il9wv .feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 991px) {
    #il9wv .hero-bg-wrapper {
        width: 55%;
        height: 100%;
    }
    #il9wv .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    #il9wv .hero-bg-wrapper {
        position: relative;
        width: 100%;
        margin-bottom: 24px;
    }
    #il9wv .hero-main-row {
        min-height: auto;
        padding-top: 24px;
        padding-bottom: 16px;
    }
    #il9wv .hero-content {
        max-width: 100%;
        padding-right: 0;
    }
    #il9wv .hero-content::before {
        display: none;
    }
    #il9wv .hero-title {
        font-size: 2.25rem;
    }
    #il9wv #iljji.hero-features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 5px !important;
    }
    #il9wv .feature-card {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 16px !important;
    }
}

@media (max-width: 479px) {
    #il9wv .hero-title {
        font-size: 1.8rem;
    }
}
/*end_css_for_il9wv*/

/*start_css_for_tasks*/
#tasks.tasks-pricing-section {
    padding-top: 32px;
    padding-bottom: 32px;
}

#tasks .container {
    width: 100%;
    max-width: 1240px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding-top: 0px;
    padding-right: 24px;
    padding-bottom: 0px;
    padding-left: 24px;
}

#tasks .tasks-pricing-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    row-gap: 32px;
    column-gap: 32px;
}

#tasks .tasks-column {
    display: flex;
    flex-direction: column;
}

#tasks .section-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-heading, #0f172a);
    letter-spacing: -0.02em;
    margin-top: 0px;
    margin-bottom: 8px;
}

#tasks .section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted, #64748b);
    line-height: 1.5;
    margin-top: 0px;
    margin-bottom: 24px;
}

#tasks .tasks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
    column-gap: 16px;
}

#tasks .task-card {
    background-color: #ffffff;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    display: flex;
    row-gap: 14px;
    column-gap: 14px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: var(--border-color, #e2e8f0);
    border-right-color: var(--border-color, #e2e8f0);
    border-bottom-color: var(--border-color, #e2e8f0);
    border-left-color: var(--border-color, #e2e8f0);
    border-top-left-radius: var(--radius-md, 8px);
    border-top-right-radius: var(--radius-md, 8px);
    border-bottom-right-radius: var(--radius-md, 8px);
    border-bottom-left-radius: var(--radius-md, 8px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

#tasks .task-card:hover {
    border-top-color: var(--primary-border, #cbd5e1);
    border-right-color: var(--primary-border, #cbd5e1);
    border-bottom-color: var(--primary-border, #cbd5e1);
    border-left-color: var(--primary-border, #cbd5e1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
}

#tasks .task-icon {
    width: 36px;
    height: 36px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: var(--primary-light, #eff6ff);
    color: var(--primary, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#tasks .task-icon svg {
    display: block;
}

#tasks .task-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading, #0f172a);
    line-height: 1.35;
    margin-top: 0px;
    margin-bottom: 6px;
}

#tasks .task-content p {
    font-size: 0.825rem;
    color: var(--text-muted, #64748b);
    line-height: 1.4;
    margin: 0;
}

#tasks .pricing-column {
    display: flex;
    flex-direction: column;
}

#tasks .pricing-card-wrapper {
    background-color: var(--bg-blue-card, #f0f9ff);
    border-top-left-radius: var(--radius-lg, 12px);
    border-top-right-radius: var(--radius-lg, 12px);
    border-bottom-right-radius: var(--radius-lg, 12px);
    border-bottom-left-radius: var(--radius-lg, 12px);
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    margin-bottom: 16px;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

#tasks .pricing-content-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 20px;
    column-gap: 20px;
}

#tasks .pricing-cards {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    column-gap: 16px;
    z-index: 2;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

#tasks .pricing-item {
    background-color: #ffffff;
    border-top-left-radius: var(--radius-md, 8px);
    border-top-right-radius: var(--radius-md, 8px);
    border-bottom-right-radius: var(--radius-md, 8px);
    border-bottom-left-radius: var(--radius-md, 8px);
    padding-top: 18px;
    padding-right: 22px;
    padding-bottom: 18px;
    padding-left: 22px;
    box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgba(226, 232, 240, 0.6);
    border-right-color: rgba(226, 232, 240, 0.6);
    border-bottom-color: rgba(226, 232, 240, 0.6);
    border-left-color: rgba(226, 232, 240, 0.6);
}

#tasks .pricing-type {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-heading, #0f172a);
    margin-bottom: 4px;
    display: block;
}

#tasks .pricing-price-line {
    display: flex;
    align-items: baseline;
    row-gap: 4px;
    column-gap: 4px;
    flex-wrap: wrap;
}

#tasks .from-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, #64748b);
}

#tasks .price-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-heading, #0f172a);
}

#tasks .period {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, #64748b);
}

#tasks .calc-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted, #64748b);
    line-height: 1.3;
}

#tasks .calculator-illustration {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tasks .calculator-img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

#tasks #iuxgxt {
    display: none;
}

#tasks .promo-banner {
    display: flex;
    align-items: center;
    background-color: var(--bg-blue-card, #f0f9ff);
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgba(59, 130, 246, 0.25);
    border-right-color: rgba(59, 130, 246, 0.25);
    border-bottom-color: rgba(59, 130, 246, 0.25);
    border-left-color: rgba(59, 130, 246, 0.25);
    border-top-left-radius: var(--radius-lg, 12px);
    border-top-right-radius: var(--radius-lg, 12px);
    border-bottom-right-radius: var(--radius-lg, 12px);
    border-bottom-left-radius: var(--radius-lg, 12px);
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    row-gap: 20px;
    column-gap: 20px;
    margin-top: 16px;
}

#tasks #ixn9sg {
    width: 164px;
    height: 187px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

#tasks .promo-text-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    column-gap: 12px;
    flex-grow: 1;
}

#tasks .promo-description {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-heading, #0f172a);
    line-height: 1.45;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

#tasks .promo-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary, #3b82f6);
    color: #ffffff;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding-top: 8px;
    padding-right: 18px;
    padding-bottom: 8px;
    padding-left: 18px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration-line: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: rgba(59, 130, 246, 0.15) 0px 2px 4px;
}

#tasks .promo-btn:hover {
    background-color: var(--primary-hover, #2563eb);
    transform: translateY(-1px);
}

#tasks .promo-btn:active {
    transform: translateY(0px);
}

@media (max-width: 991px) {
    #tasks .tasks-pricing-grid {
        grid-template-columns: 1fr;
        row-gap: 32px;
        column-gap: 32px;
    }

    #tasks .pricing-cards {
        flex-direction: row;
        row-gap: 16px;
        column-gap: 16px;
    }

    #tasks .pricing-item {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0%;
    }

    #tasks .pricing-content-row {
        flex-direction: row;
        align-items: stretch;
    }
}

@media (max-width: 767px) {
    #tasks.tasks-pricing-section {
        padding-top: 24px;
        padding-right: 0px;
        padding-bottom: 24px;
        padding-left: 0px;
    }

    #tasks .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #tasks .tasks-pricing-grid {
        row-gap: 24px;
        column-gap: 24px;
    }

    #tasks .tasks-grid {
        grid-template-columns: 1fr;
        row-gap: 12px;
        column-gap: 12px;
    }

    #tasks .task-card {
        padding-top: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
        padding-left: 16px;
        row-gap: 12px;
        column-gap: 12px;
    }

    #tasks .pricing-card-wrapper {
        padding-top: 20px;
        padding-right: 16px;
        padding-bottom: 20px;
        padding-left: 16px;
        margin-bottom: 12px;
    }

    #tasks .pricing-content-row {
        flex-direction: column;
        align-items: center;
        row-gap: 16px;
        column-gap: 16px;
        text-align: center;
    }

    #tasks .pricing-cards {
        width: 100%;
        row-gap: 12px;
        column-gap: 12px;
        flex-direction: column;
    }

    #tasks .pricing-item {
        padding-top: 14px;
        padding-right: 16px;
        padding-bottom: 14px;
        padding-left: 16px;
    }

    #tasks .pricing-price-line {
        justify-content: center;
    }

    #tasks .calculator-illustration {
        justify-content: center;
        width: 100%;
    }

    #tasks .calculator-img {
        width: 90px;
    }

    #tasks .section-title {
        font-size: 1.35rem;
        margin-bottom: 6px;
    }

    #tasks .section-subtitle {
        font-size: 0.875rem;
        margin-bottom: 18px;
    }

    #tasks .promo-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-top: 20px;
        padding-right: 16px;
        padding-bottom: 20px;
        padding-left: 16px;
        row-gap: 16px;
        column-gap: 16px;
    }

    #tasks #ixn9sg {
        width: 120px;
        height: auto;
    }

    #tasks .promo-btn {
        align-self: center;
        width: 100%;
        max-width: 280px;
    }
}
/*end_css_for_tasks*/

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 480px) {
  #iuxgxt {
    display: none;
  }
}

/*start_css_for_i6eo2u*/
#i6eo2u.lead-banner-section {
    padding: 32px 0 40px;
}

#i6eo2u .lead-banner {
    background: var(--bg-blue-card, #eff6ff);
    border-radius: var(--radius-xl, 24px);
    padding: 40px 48px;
    box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
    border: 1px solid rgba(191, 219, 254, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

#i6eo2u .lead-banner-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

#i6eo2u .gift-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #ffffff;
    color: var(--primary, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
    flex-shrink: 0;
}

#i6eo2u .gift-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

#i6eo2u .gift-text {
    text-align: left;
}

#i6eo2u .gift-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading, #0f172a);
    margin: 0 0 8px 0;
    line-height: 1.25;
}

#i6eo2u .gift-text p {
    font-size: 0.95rem;
    color: var(--text-secondary, #475569);
    margin: 0;
    line-height: 1.45;
}

#i6eo2u .lead-banner-actions {
    flex-shrink: 0;
}

#i6eo2u .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 28px;
    border-radius: var(--radius-md, 8px);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    box-sizing: border-box;
}

#i6eo2u .btn-primary {
    background: var(--primary, #2563eb);
    color: #ffffff;
}

#i6eo2u .btn-primary:hover {
    background: var(--primary-hover, #1d4ed8);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

@media (max-width: 991px) {
    #i6eo2u .lead-banner {
        padding: 32px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    #i6eo2u.lead-banner-section {
        padding: 24px 0 32px;
    }

    #i6eo2u .lead-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
        gap: 24px;
    }

    #i6eo2u .lead-banner-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    #i6eo2u .gift-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    #i6eo2u .gift-icon svg {
        width: 28px;
        height: 28px;
    }

    #i6eo2u .gift-text {
        text-align: center;
    }

    #i6eo2u .gift-text h2 {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    #i6eo2u .gift-text p {
        font-size: 0.875rem;
    }

    #i6eo2u .lead-banner-actions {
        width: 100%;
    }

    #i6eo2u .btn {
        width: 100%;
        height: 48px;
    }
}
/*end_css_for_i6eo2u*/

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 480px) {
  #ilc0m {
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
  }
}

@media (max-width: 480px) {
  #i8udv {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 20px;
    padding-left: 0px;
  }
}

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 480px) {
  #ilc0m {
    align-items: center;
    flex-wrap: nowrap;
    align-self: auto;
  }
}

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 1440px) {
  #ixn9sg {
    width: 164px;
    height: 187px;
  }
}

#ixn9sg {
  width: 164px;
  height: 187px;
}

@media (max-width: 480px) {
  #ilc0m {
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
  }
}

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 480px) {
  #ikbzw8 {
    display: inline-block;
  }
}
/* ==========================================================================
   Cookie Disclaimer
   ========================================================================== */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;

    padding: 16px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.cookie-banner.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 16px 20px;

    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.cookie-banner-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: var(--primary-light);
    color: var(--primary);
}

.cookie-banner-content {
    flex: 1;
    min-width: 0;
}

.cookie-banner-title {
    margin-bottom: 4px;

    color: var(--text-heading);

    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

.cookie-banner-text {
    margin: 0;

    color: var(--text-muted);

    font-size: 0.825rem;
    line-height: 1.45;
}

.cookie-banner-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

.cookie-banner-btn {
    min-width: 110px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 0 22px;

    border: none;
    border-radius: var(--radius-md);

    background: var(--primary);
    color: #ffffff;

    font-size: 0.875rem;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 3px 10px rgba(0, 82, 204, 0.18);

    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.cookie-banner-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 5px 14px rgba(0, 82, 204, 0.25);
    transform: translateY(-1px);
}

.cookie-banner-btn:active {
    transform: translateY(0);
}


/* Tablet */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 12px 0;
    }

    .cookie-banner .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cookie-banner-inner {
        align-items: flex-start;
        padding: 16px;
        gap: 12px;
    }

    .cookie-banner-icon {
        width: 40px;
        height: 40px;
    }

    .cookie-banner-btn {
        min-width: 100px;
    }
}


/* Mobile */
@media (max-width: 600px) {
    .cookie-banner-inner {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 12px;

        border-radius: var(--radius-md);
    }

    .cookie-banner-content {
        grid-column: 2;
    }

    .cookie-banner-icon {
        grid-column: 1;
        grid-row: 1;
    }

    .cookie-banner-btn {
        grid-column: 1 / -1;

        width: 100%;
        height: 46px;

        margin-top: 4px;
    }

    .cookie-banner-title {
        font-size: 0.9rem;
    }

    .cookie-banner-text {
        font-size: 0.8rem;
    }
}

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 480px) {
  #ilc0m {
    align-items: center;
    flex-wrap: nowrap;
    align-self: auto;
  }
}

/* Visual editor additions: source CSS above is preserved. */
@media (max-width: 480px) {
  #ilc0m {
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
  }
}

/*start_css_for_contacts*/
#contacts {
    padding: 32px 0 48px;
}

#contacts .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

#contacts .section-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-heading, #0f172a);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

#contacts .contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: flex-start;
}

#contacts .contacts-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}

#contacts .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

#contacts .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light, #e0f2fe);
    color: var(--primary, #0284c7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#contacts .contact-icon svg {
    display: block;
}

#contacts .contact-text {
    font-size: 1rem;
    color: var(--text-dark, #1e293b);
    line-height: 1.4;
    font-weight: 500;
}

#contacts .contact-link {
    font-weight: 700;
    color: var(--text-heading, #0f172a);
    text-decoration: none;
    transition: color 0.2s ease;
}

#contacts .contact-link:hover {
    color: var(--primary, #0284c7);
}

#contacts .map-wrapper {
    height: 320px;
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
    border: 1px solid var(--border-color, #e2e8f0);
}

#contacts .map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    #contacts .contacts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    #contacts .map-wrapper {
        height: 280px;
    }
}

@media (max-width: 576px) {
    #contacts .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #contacts .section-title {
        font-size: 1.35rem;
        margin-bottom: 6px;
    }
}
/*end_css_for_contacts*/
