:root {
    /* Primary Colors - Industrial Blue + Safety Orange */
    --primary-dark: #0a1628;
    --primary-blue: #1e3a5f;
    --primary-light: #2d4a6f;
    --accent-orange: #ff6b35;
    --accent-yellow: #ffc857;
    --accent-hover: #ff8555;

    /* Neutrals */
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2d4a6f 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ffc857 100%);
    --gradient-card: linear-gradient(180deg, rgba(30,58,95,0.05) 0%, rgba(30,58,95,0.02) 100%);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-orange);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    margin-left: 16px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 8px;
    margin-left: 24px;
}

.lang-btn {
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    background: var(--accent-orange);
    color: var(--white);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 200, 87, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Animated crane illustration */
.hero-crane {
    position: absolute;
    right: -100px;
    bottom: -50px;
    width: 600px;
    height: 600px;
    opacity: 0.08;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--accent-orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-benefits svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--accent-orange);
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ==================== TRUST BADGES ==================== */
.trust-badges {
    padding: 60px 0;
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.trust-item {
    text-align: center;
    padding: 24px;
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-orange);
}

.trust-item h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.5;
}

/* ==================== PROBLEMS & SOLUTIONS ==================== */
.problems-solutions {
    padding: 80px 0;
    background: var(--white);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.ps-column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.ps-column-header .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ps-problems .ps-column-header .icon {
    background: rgba(220, 53, 69, 0.1);
}

.ps-solutions .ps-column-header .icon {
    background: rgba(40, 167, 69, 0.1);
}

.ps-column-header h3 {
    font-size: 24px;
    color: var(--primary-dark);
}

.ps-card {
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid;
    background: var(--gray-100);
    transition: all var(--transition-base);
}

.ps-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.ps-problems .ps-card {
    border-left-color: #dc3545;
}

.ps-solutions .ps-card {
    border-left-color: #28a745;
}

.ps-card h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ps-problems .ps-card h4::before {
    content: '✕';
    color: #dc3545;
    font-weight: 700;
}

.ps-solutions .ps-card h4::before {
    content: '✓';
    color: #28a745;
    font-weight: 700;
}

.ps-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==================== EQUIPMENT ==================== */
.equipment {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

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

.equipment-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
}

.equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.equipment-image {
    height: 140px;
    background: var(--gray-100);
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.equipment-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin: 20px 20px 8px;
}

.equipment-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 20px 22px;
}

/* ==================== EQUIPMENT ICONS ==================== */
.equipment-icons {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.equipment-icon-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.equipment-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.equipment-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--gradient-hero);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(10, 22, 40, 0.25);
}

.equipment-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.equipment-icon-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.equipment-icon-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==================== GUARANTEES & RESULTS ==================== */
.guarantees {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.guarantees-grid,
.results-grid,
.prep-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--gray-600);
    font-size: 15px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.results {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

/* ==================== SCOPE ==================== */
.scope {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.scope-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px 24px;
}

.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.scope-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==================== NORMS ==================== */
.norms {
    padding: var(--section-padding) 0;
}

.norms-note {
    margin: 12px 0 0;
    color: var(--gray-600);
    font-size: 15px;
    text-align: center;
}

.norms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    max-width: 860px;
    margin: 20px auto 0;
}

.norm-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--primary-dark);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.norm-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 53, 0.35);
}

.norm-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.norm-item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.norm-item-title {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
}

.norm-item-sub {
    color: var(--gray-600);
    font-size: 13px;
}

.norm-item-arrow {
    width: 18px;
    height: 18px;
    stroke: var(--accent-orange);
    margin-left: auto;
    flex-shrink: 0;
}

/* ==================== PREPARATION ==================== */
.prep {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.step-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

/* ==================== SERVICES ==================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, transparent 100%);
    opacity: 0.03;
}

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

.section-label {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 18px;
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 200, 87, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--accent-orange);
    stroke-width: 1.5;
    fill: none;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 14px;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ==================== ADVANTAGES ==================== */
.advantages {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.advantage-item {
    text-align: center;
    padding: 32px 24px;
}

.advantage-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.advantage-item h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.advantage-item p {
    color: var(--gray-600);
    font-size: 14px;
}

/* ==================== WHY TRUST US ==================== */
.why-trust {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a5c 100%);
    color: white;
}

.why-trust .section-label {
    color: var(--accent);
}

.why-trust .section-title {
    color: white;
}

.why-trust .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-trust-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.why-trust-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.why-trust-icon {
    margin-bottom: 20px;
}

.why-trust-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
    stroke-width: 1.5;
}

.why-trust-item h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-trust-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== PROCESS ==================== */
.process {
    padding: var(--section-padding) 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(255, 200, 87, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process .section-label {
    color: var(--accent-yellow);
}

.process .section-title {
    color: var(--white);
}

.process .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-steps::before {
    content: none;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-orange);
    transition: all var(--transition-base);
}

.process-step:hover .step-number {
    background: var(--accent-orange);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.process-step h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    grid-column: span 2;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-orange);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 520px;
}

/* ==================== CTA ==================== */
.cta {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.cta-box {
    background: var(--gradient-hero);
    border-radius: 32px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-orange);
    flex-shrink: 0;
}

/* CTA Panel (replaces form) */
.cta-panel {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-panel-header h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.cta-panel-header p {
    color: var(--gray-600);
    font-size: 15px;
    margin: 0;
}

/* Messenger CTA */
.messenger-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-panel .messenger-cta {
    margin-top: 0;
    flex-direction: column;
    gap: 12px;
}

.cta-panel .messenger-btn {
    width: 100%;
    justify-content: center;
}

.messenger-btn svg {
    width: 24px;
    height: 24px;
}

.messenger-btn img {
    width: 24px;
    height: 24px;
    display: block;
}

.messenger-btn.telegram {
    background: #0088cc;
    color: var(--white);
}

.messenger-btn.telegram:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.messenger-btn.viber {
    background: #7360f2;
    color: var(--white);
}

.messenger-btn.viber:hover {
    background: #5a4bc7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115, 96, 242, 0.3);
}

.messenger-btn.phone {
    background: var(--accent-orange);
    color: var(--white);
}

.messenger-btn.phone:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.quick-contact-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 16px;
}

.cta-response-time {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.cta-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
}

.cta-step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.cta-phone-card {
    background: var(--gray-100);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-phone-label {
    font-size: 12px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-phone-number {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
}

.cta-phone-number:hover {
    color: var(--accent-orange);
}

.cta-phone-meta {
    font-size: 13px;
    color: var(--gray-600);
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
    padding: 140px 0 80px;
    background: var(--gray-100);
}

.legal-card {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.legal-card h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.legal-card h2 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-card p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
}
/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link img {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-orange);
}

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

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

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--accent-orange);
}

/* ==================== SERVICE PAGE STYLES ==================== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.5);
}

/* Service Hero modifier */
.service-hero {
    padding-top: 140px;
}

.service-hero .hero-content {
    max-width: 800px;
}

/* Service Pricing Table */
.service-pricing {
    padding: 80px 0;
}

.pricing-table-wrap {
    margin-top: 48px;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pricing-table th,
.pricing-table td {
    padding: 20px 24px;
    text-align: left;
}

.pricing-table thead {
    background: var(--primary-dark);
    color: white;
}

.pricing-table th {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.pricing-table td {
    color: var(--text-secondary);
}

.pricing-table td strong {
    color: var(--accent-orange);
    font-size: 18px;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.pricing-note svg {
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.pricing-cta {
    text-align: center;
    margin-top: 32px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 16px;
    }

    .hero-content {
        padding: 120px 0 80px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-item {
        padding: 16px;
    }

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

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

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

    .equipment-icons-grid {
        grid-template-columns: 1fr;
    }

    .equipment-image {
        height: 160px;
    }

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

    .why-trust-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .cta-box {
        padding: 32px 24px;
    }

    .cta-panel {
        padding: 28px;
    }

    .cta-steps {
        grid-template-columns: 1fr;
    }

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

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

    /* Service page responsive 768px */
    .service-hero {
        padding-top: 120px;
    }

    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .service-equipment .equipment-grid {
        grid-template-columns: 1fr;
    }

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

    .include-item {
        padding: 24px;
    }

    .include-num {
        font-size: 36px;
    }

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

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

    .pricing-table th,
    .pricing-table td {
        padding: 16px;
        font-size: 14px;
    }

    .pricing-table td strong {
        font-size: 16px;
    }

    .service-info,
    .service-equipment,
    .service-includes,
    .service-pricing,
    .related-services {
        padding: 64px 0;
    }
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    color: var(--white);
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}
