/* Custom premium styling for wholesale chemical and beauty portal */

:root {
    --primary-color: #00a896;      /* Clean turquoise/teal from "chemicals and cleanliness" theme */
    --primary-hover: #028090;
    --primary-light: #e8f7f5;
    
    --secondary-color: #028090;    /* Calm elegant deep slate teal */
    --accent-color: #f0f3f4;       /* Safe light surfaces */
    
    --text-main: #2b3a42;          /* Readable dark grey */
    --text-muted: #5e6e7a;
    --text-white: #ffffff;
    
    --bg-main: #f9fbfb;            /* Soft clean background with a touch of mint-blue tint */
    --bg-white: #ffffff;
    
    --border-color: #e2eceb;
    --border-hover: #b4dbd7;
    
    --shadow-soft: 0 4px 20px rgba(0, 168, 150, 0.04);
    --shadow-medium: 0 10px 30px rgba(0, 168, 150, 0.08);
    --shadow-premium: 0 20px 40px rgba(2, 128, 144, 0.12);
    
    --transition-speed: 0.3s;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(0, 168, 150, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 150, 0.4);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--secondary-color);
    border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background var(--transition-speed), box-shadow var(--transition-speed);
}

.main-header.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-soft);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary-color);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-and-buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
}

.phone-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.phone-block {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    text-align: right;
}

.header-phone {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.phone-status {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
}

.header-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.whatsapp-btn-header {
    background-color: #25d366;
    color: var(--text-white);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.whatsapp-btn-header:hover {
    background-color: #20ba5a;
    color: var(--text-white);
    transform: scale(1.03);
}

.telegram-btn-header {
    background-color: #0088cc;
    color: var(--text-white);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    justify-content: center;
}

.telegram-btn-header:hover {
    background-color: #0077b5;
    color: var(--text-white);
    transform: scale(1.03);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all var(--transition-speed)
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
}

.mobile-contacts-info {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.mobile-phone {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.mobile-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mobile-messengers {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.wa-mobile-btn {
    background-color: #25d366;
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 125px 24px 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(232, 247, 245, 0.6) 100%), url('/staticfiles/b47739ff9ba04395bbfae4dbc57ba2f5.png') no-repeat center center / cover;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-badge {
    background: linear-gradient(135deg, #ff9f1c 0%, #ff6b6b 100%);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-main);
}

.feature-icon {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-content {
    max-width: 620px;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 168, 150, 0.15);
    border: 1px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
}

.hero-image-pane {
    flex: 1;
    max-width: 500px;
    margin-left: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.hero-surface-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    position: relative;
    max-width: 400px;
    z-index: 2;
}

.card-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.card-tag {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Credibility Strip */
.credibility-strip {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
}

.strip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cred-item {
    text-align: center;
    flex: 1;
}

.cred-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

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

.cred-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

/* Section Header Structure */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-subtitle {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Categories Section */
.categories-section {
    background-color: var(--bg-main);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.category-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-speed);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-hover);
}

.cat-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: block;
}

.cat-card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
}

.cat-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.cat-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cat-card-list {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.cat-card-list li {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-card-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2rem;
}

.categories-cta-box {
    background-color: var(--primary-light);
    border: 1.5px dashed var(--border-hover);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.categories-cta-box p {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Advantages Section */
.advantages-section {
    background-color: var(--bg-white);
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.advantages-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.adv-item {
    display: flex;
    gap: 24px;
}

.adv-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.adv-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.adv-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.advantages-illustration {
    display: flex;
    justify-content: center;
}

.features-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 440px;
}

.mosaic-tile {
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    transition: transform var(--transition-speed);
}

.mosaic-tile:hover {
    transform: scale(1.03);
}

.mosaic-tile.primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    grid-column: span 2;
}

.mosaic-tile.light {
    background-color: var(--accent-color);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.mosaic-tile.accent {
    background-color: var(--primary-light);
    color: var(--secondary-color);
}

.mosaic-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.mosaic-desc {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Delivery Section */
.delivery-section {
    background-color: var(--bg-main);
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.delivery-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.delivery-card.highlighted {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.del-badge {
    background-color: var(--accent-color);
    color: var(--text-muted);
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.del-badge.badge-accent {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.del-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.del-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.del-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.del-features-list li {
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.del-features-list li::before {
    content: "➔";
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2px;
}

/* Process Section */
.process-section {
    background-color: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step-card {
    position: relative;
    padding: 24px 16px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form Section */
.form-section {
    background-color: var(--bg-main);
}

.form-wrapper {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border: 1px solid var(--border-color);
}

.form-info-pane {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info-pane h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-info-pane p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.quick-contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qc-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.qc-icon {
    background-color: rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.qc-details {
    display: flex;
    flex-direction: column;
}

.qc-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.qc-link {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
}

.form-card-pane {
    padding: 60px;
    background-color: var(--bg-white);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background-color: var(--bg-main);
    transition: all var(--transition-speed);
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
    background-color: var(--bg-white);
}

.form-group-checkbox {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-group-checkbox label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
}

.form-group-checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
    overflow: hidden;
    transition: border-color var(--transition-speed);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: left;
}

.faq-icon-indicator {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
    content: "";
    position: absolute;
    background-color: var(--text-muted);
    transition: transform var(--transition-speed);
}

.faq-icon-indicator::before {
    top: 7px;
    left: 0;
    width: 100%;
    height: 2px;
}

.faq-icon-indicator::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 100%;
}

.faq-item.active .faq-icon-indicator::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon-indicator::before {
    transform: rotate(180deg);
    background-color: var(--primary-color);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-out;
}

.faq-content p {
    padding: 0 24px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contacts & Map Section */
.contacts-section {
    background-color: var(--bg-main);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contacts-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.cd-icon {
    font-size: 1.4rem;
}

.cd-text {
    display: flex;
    flex-direction: column;
}

.cd-text text {
    display: flex;
    flex-direction: column;
}

.cd-text strong {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.cd-text span,
.cd-link {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 600;
}

.cd-messenger-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cd-messenger-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.whatsapp-links-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.wa-contact-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #20ba5a;
}

.wa-contact-link::before {
    content: "•";
    color: #20ba5a;
    font-size: 1.5rem;
    margin-right: 8px;
    line-height: 1;
}

.telegram-links-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.tg-contact-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0088cc;
}

.tg-contact-link::before {
    content: "•";
    color: #0088cc;
    font-size: 1.5rem;
    margin-right: 8px;
    line-height: 1;
}

.tg-contact-link:hover {
    color: #0077b5;
}

.map-container {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}

.map-placeholder {
    height: 400px;
    position: relative;
    background-color: #f0f7f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-card-overlay {
    position: absolute;
    z-index: 10;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    max-width: 320px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.map-card-overlay h4 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.map-card-overlay p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.map-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Footer styling */
.main-footer {
    background-color: var(--text-main);
    color: var(--text-white);
    padding: 30px 24px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand .logo {
    color: var(--text-white);
    margin-bottom: 16px;
    display: inline-block;
}

.brand-sub {
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 320px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.legal-info {
    text-align: right;
}

/* Cookie Banner styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--border-color);
    padding: 16px 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.5;
}

.cookie-text a {
    text-decoration: underline;
    font-weight: 600;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 168, 150, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 150, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Breakpoints */

@media (max-width: 1024px) {
    .hero-container {
        justify-content: center;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 32px 24px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-pane {
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-surface-card {
        max-width: 100%;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .advantages-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-illustration {
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-info-pane {
        padding: 40px;
    }
    
    .form-card-pane {
        padding: 40px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .header-contacts .whatsapp-btn-header,
    .header-contacts .telegram-btn-header,
    .header-contacts .header-buttons,
    .header-contacts .phone-block,
    .header-contacts .phone-and-buttons,
    .header-contacts .phone-column {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .strip-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .cd-divider {
        display: none;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .legal-info {
        text-align: center;
    }
    
    .cookie-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner button {
        align-self: flex-start;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

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

#i5b0bv {
  height: 609px;
}

/* Visual editor additions: source CSS above is preserved. */
#ir7u05-2 {
  color: rgb(0, 168, 150);
  transition: color 0.3s;
  font-size: 16px;
}

/* Visual editor additions: source CSS above is preserved. */
#ikzv2i-2 {
  color: rgb(0, 168, 150);
  transition: color 0.3s;
  font-size: 16px;
}

/* Visual editor additions: source CSS above is preserved. */
#i85fhk {
  font-size: 0.9rem;
}