:root {
    --color-primary: #1B4B91;
    --color-primary-dark: #0A1220;
    --color-accent: #2FAE73;
    --color-accent-light: #8FD3A8;
    --color-success: #2FAE73;
    --color-success-dark: #23935f;
    --color-text: #121A2A;
    --color-text-muted: #5b6472;
    --color-bg-alt: #F1EEE5;
    --color-cream: #F8F6F0;
    --color-cream-deep: #EFEBE0;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --shadow-sm: 0 4px 20px rgba(10,18,32,0.08);
    --shadow-md: 0 12px 40px rgba(10,18,32,0.12);
    --shadow-lg: 0 24px 60px rgba(10,18,32,0.18);
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-cream);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

/* Skip link (доступність) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 10px 0;
    z-index: 3000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

/* ---------- Іконки (SVG-спрайт замість emoji) ---------- */
.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.icon-fill {
    fill: currentColor;
    stroke: none;
    color: #e8a83c;
}

/* Honeypot-поле форм: приховане від людей, видиме ботам */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(60,50,35,0.09);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(60,50,35,0.14);
    top: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.header.scrolled .nav-wrapper {
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header.scrolled .logo-image {
    width: 50px;
    height: 50px;
}

.logo-text h2 {
    color: #1B4B91;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    transition: font-size 0.3s ease;
}

.header.scrolled .logo-text h2 {
    font-size: 1.3rem;
}

.logo-text span {
    display: block;
    color: #5b6472;
    font-size: 0.78rem;
    white-space: nowrap;
    transition: font-size 0.3s ease;
}

.header.scrolled .logo-text span {
    font-size: 0.7rem;
}

.nav {
    display: flex;
    gap: 1.4rem;
    transition: gap 0.3s ease;
}

.header.scrolled .nav {
    gap: 1.1rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1B4B91;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1B4B91;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B4B91;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #0A1220;
    transform: scale(1.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: none;
}

.cta-btn {
    background: #1B4B91;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 32px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: #0A1220;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 75, 145, 0.3);
}

.header.scrolled .cta-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #1B4B91;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Call Button */
.call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #1B4B91;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(27, 75, 145, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.call-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.call-btn:hover::before {
    width: 100%;
    height: 100%;
}

.call-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(27, 75, 145, 0.6);
}

.call-icon {
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.call-btn:hover .call-icon {
    transform: scale(1.1);
}

.call-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 28px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.call-button:hover .call-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(27, 75, 145, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(27, 75, 145, 0.7), 0 0 0 10px rgba(27, 75, 145, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(27, 75, 145, 0.4);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #e9edf5 0%, var(--color-cream) 65%);
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    margin-top: 96px;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.hero-overlay {
    position: absolute;
    top: -220px;
    left: -260px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27,75,145,0.18) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-blob-2 {
    position: absolute;
    bottom: -260px;
    right: -220px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(169,194,160,0.22) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    text-align: left;
}

.trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.2rem;
}

.hero-content h1 {
    font-size: 3.4rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--color-primary-dark);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats-wrap {
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.75rem 1.5rem;
}

.stat-item {
    text-align: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    background: transparent;
    transform: translateY(-5px);
}

.stat-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.stat-item:nth-child(1) .stat-icon-circle { background: #E3EAF5; }
.stat-item:nth-child(2) .stat-icon-circle { background: #f6ecd9; }
.stat-item:nth-child(3) .stat-icon-circle { background: #E1F3E8; }
.stat-item:nth-child(4) .stat-icon-circle { background: #eee6f7; }

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.82rem;
    opacity: 1;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    box-shadow: var(--shadow-sm);
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border-color: transparent;
}

.hero-btn small {
    font-size: 0.8rem;
    opacity: 0.85;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

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

.hero-btn.primary:hover {
    box-shadow: 0 14px 34px rgba(27,75,145,0.35);
}

.hero-call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--color-primary-dark);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid #e5e9df;
}

.hero-call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(27,75,145,0.08), transparent);
    transition: left 0.5s;
}

.hero-call-btn:hover::before {
    left: 100%;
}

.hero-call-btn:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero-call-btn .call-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-call-btn:hover .call-icon {
    transform: scale(1.1) rotate(10deg);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    background: rgba(47, 174, 115, 0.1);
    padding: 0.7rem 1.3rem;
    border-radius: 32px;
    border: 1px solid rgba(47, 174, 115, 0.25);
    font-weight: 500;
    color: #1f8038;
    animation: fadeInUp 1s ease-out 0.8s both;
    margin: 0;
    max-width: fit-content;
}

.guarantee-icon {
    font-size: 1.2rem;
}

/* ---------- Hero visual (framed image + badge) ---------- */
.hero-visual {
    position: relative;
}

.hero-image-frame {
    border-radius: 42% 58% 53% 47% / 48% 39% 61% 52%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
    background: #fff;
    padding: 12px;
    transition: border-radius 0.6s ease;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 42% 58% 53% 47% / 48% 39% 61% 52%;
}

.hero-badge-circle {
    position: absolute;
    bottom: 24px;
    left: -22px;
    width: auto;
    height: auto;
    padding: 0.9rem 1.3rem;
    border-radius: 24px;
    background: #C9E4D3;
    color: #16241c;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    box-shadow: var(--shadow-md);
    border: none;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-badge-number {
    font-size: 1.9rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    color: #16241c;
}

.hero-badge-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    max-width: 92px;
    margin-top: 0.3rem;
    opacity: 0.95;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #1B4B91, #2FAE73);
    color: white;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.urgency-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.urgency-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.urgency-timer {
    display: flex;
    gap: 1rem;
}

.timer-item {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 14px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 60px;
}

.timer-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

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

.urgency-btn {
    background: white;
    color: #1B4B91;
    border: none;
    padding: 1rem 2rem;
    border-radius: 32px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.urgency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1B4B91;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1B4B91, #2FAE73);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.price-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2FAE73, #23935f);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 32px;
    margin-top: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(47, 174, 115, 0.3);
}

/* About Section */
.about {
    padding: 110px 0;
    background: #F1EEE5;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(60,50,35,0.09);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(27, 75, 145, 0.05), transparent);
    transition: left 0.5s;
    z-index: 1;
    pointer-events: none;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(60,50,35,0.14);
}

/* Повноширокий банер-зображення у верхній частині картки (16:9-подібне) */
.card-banner {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    display: block;
}

.card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-card:hover .card-banner img,
.service-card:hover .card-banner img {
    transform: scale(1.08);
}

.card-body {
    padding: 1.75rem 2rem 2rem;
}

.about-card h3 {
    color: #1B4B91;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-proof {
    background: linear-gradient(135deg, #2FAE73, #23935f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 22px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Testimonials Section */
.testimonials {
    padding: 110px 0;
    background: linear-gradient(135deg, #F1EEE5, #ede7d9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(60,50,35,0.09);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #2FAE73;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(60,50,35,0.14);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e8a83c;
    display: flex;
    gap: 0.15rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author strong {
    color: #1B4B91;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 110px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.service-card {
    background: #F1EEE5;
    border-radius: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(60,50,35,0.14);
    background: white;
}

.service-card h3 {
    color: #1B4B91;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #0A1220;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    transition: transform 0.2s ease;
}

.service-card:hover li {
    transform: translateX(5px);
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2FAE73;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.service-card:hover li:before {
    transform: scale(1.2);
}

.service-guarantee {
    background: linear-gradient(135deg, #2FAE73, #23935f);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 22px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

/* Advantages Section */
.advantages {
    padding: 110px 0;
    background: #F1EEE5;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 22px;
    box-shadow: 0 5px 15px rgba(60,50,35,0.09);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 75, 145, 0.1), rgba(10, 18, 32, 0.05));
    transition: width 0.3s ease;
}

.advantage-item:hover::before {
    width: 100%;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(60,50,35,0.14);
}

.advantage-number {
    background: linear-gradient(135deg, #1B4B91, #2FAE73);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.advantage-item:hover .advantage-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 5px 15px rgba(27, 75, 145, 0.3);
}

.advantage-item h3 {
    color: #1B4B91;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.advantage-item p {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.advantage-proof {
    background: linear-gradient(135deg, #8FD3A8, #C9E4D3);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    display: inline-block;
}

/* Prices Section */
.prices {
    padding: 110px 0;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(60,50,35,0.09);
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(60,50,35,0.14);
}

.pricing-card.popular {
    border: 3px solid #1B4B91;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-15px);
}

.popular-badge {
    background: linear-gradient(135deg, #1B4B91, #2FAE73);
    color: white;
    padding: 0.5rem 1rem;
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    width: 120px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pricing-header {
    background: linear-gradient(135deg, #1B4B91 0%, #2FAE73 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.price-container {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1B4B91;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-period {
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.pricing-body {
    padding: 2rem;
}

.occupancy {
    text-align: center;
    background: linear-gradient(135deg, #F1EEE5, #ede7d9);
    padding: 1rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.pricing-card:hover .occupancy {
    background: linear-gradient(135deg, #1B4B91, #2FAE73);
    color: white;
    transform: scale(1.05);
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #e8e2d5;
    transition: all 0.3s ease;
}

.features li:hover {
    padding-left: 2.5rem;
    color: #1B4B91;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2FAE73;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.features li:hover:before {
    transform: scale(1.3);
    color: #1B4B91;
}

.pricing-bonus {
    background: linear-gradient(135deg, #8FD3A8, #C9E4D3);
    color: #333;
    padding: 0.8rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bonus-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dot-basic { background: #1B4B91; }
.dot-standard { background: #d4a24a; }
.dot-luxury { background: #23935f; }

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, #1B4B91, #2FAE73);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.pricing-btn:hover::before {
    left: 100%;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(27, 75, 145, 0.3);
}

.pricing-guarantee {
    text-align: center;
    color: #2FAE73;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-footer {
    text-align: center;
    margin-top: 2rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #F1EEE5;
    padding: 1rem 2rem;
    border-radius: 22px;
    display: inline-flex;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons span {
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--color-cream);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg, #123a72, #0A1220);
}

.cta-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    opacity: 0.28;
    z-index: 0;
}

.cta-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18,58,114,0.92), rgba(10,18,32,0.94));
    z-index: 1;
}

.cta-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 1;
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 28px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.benefit-icon {
    font-size: 1.2rem;
    color: #2FAE73;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: linear-gradient(135deg, #8FD3A8, #C9E4D3);
    color: #333;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 8px 25px rgba(169, 194, 160, 0.3);
}

.cta-primary-btn small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(169, 194, 160, 0.5);
}

.cta-phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-phone-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.phone-icon {
    font-size: 1.2rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(47, 174, 115, 0.2);
    padding: 1rem 2rem;
    border-radius: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(47, 174, 115, 0.3);
    font-weight: 500;
    margin: 0 auto;
    max-width: fit-content;
}

/* Contacts Section */
.contacts {
    padding: 110px 0;
    background: #F1EEE5;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(60,50,35,0.09);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(60,50,35,0.14);
}

.contact-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
}

.contact-item h3 {
    color: #1B4B91;
    margin-bottom: 0.5rem;
}

.contact-item small {
    color: #2FAE73;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 22px;
    box-shadow: 0 5px 15px rgba(60,50,35,0.09);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 35px rgba(60,50,35,0.14);
}

.contact-form h3 {
    color: #1B4B91;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.form-benefits {
    margin-bottom: 1.5rem;
}

.form-benefit {
    color: #2FAE73;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e8e2d5;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1B4B91;
    box-shadow: 0 0 0 3px rgba(27, 75, 145, 0.1);
    transform: translateY(-2px);
}

.contact-form button {
    width: 100%;
    background: linear-gradient(135deg, #1B4B91, #2FAE73);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(27, 75, 145, 0.3);
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 28px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: #333;
    background: rgba(60,50,35,0.09);
    transform: rotate(90deg);
}

.modal-header h2 {
    color: #1B4B91;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-benefits {
    margin-bottom: 1.5rem;
}

.modal-benefit {
    color: #2FAE73;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

#modalForm input,
#modalForm select,
#modalForm textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e8e2d5;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#modalForm input:focus,
#modalForm select:focus,
#modalForm textarea:focus {
    outline: none;
    border-color: #1B4B91;
    box-shadow: 0 0 0 3px rgba(27, 75, 145, 0.1);
    transform: translateY(-2px);
}

#modalForm button {
    width: 100%;
    background: linear-gradient(135deg, #1B4B91, #2FAE73);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

#modalForm button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

#modalForm button:hover::before {
    left: 100%;
}

#modalForm button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(27, 75, 145, 0.3);
}

.modal-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0A1220, #060a12);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: #2FAE73;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #2FAE73;
    border-radius: 1px;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section p:hover {
    opacity: 1;
}

.footer-trust {
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-cta {
    margin-top: 1rem;
}

.footer-btn {
    background: linear-gradient(135deg, #8FD3A8, #C9E4D3);
    color: #333;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 28px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 194, 160, 0.3);
}

.footer-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1a2436;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        margin-top: 84px;
        padding-top: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .header-phone {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        color: #1B4B91;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .header-phone .icon {
        width: 0.95em;
        height: 0.95em;
        flex-shrink: 0;
    }

    .mobile-menu-btn {
        padding: 0.3rem;
        flex-shrink: 0;
    }

    .cta-btn {
        display: none;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(60,50,35,0.09);
        gap: 1rem;
        border-radius: 0 0 15px 15px;
    }

    .nav.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    .nav-wrapper {
        flex-wrap: nowrap;
        position: relative;
        gap: 0.4rem;
    }

    .logo {
        flex-direction: row;
        text-align: left;
        gap: 0.4rem;
        min-width: 0;
        flex-shrink: 1;
    }

    .logo-text {
        min-width: 0;
    }

    .logo-image {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .logo-text span {
        display: block;
        font-size: 0.62rem;
        white-space: normal;
        line-height: 1.2;
        max-width: 130px;
    }

    .logo-text h2 {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0;
    }

    .about,
    .testimonials,
    .services,
    .advantages,
    .prices,
    .contacts,
    .process,
    .faq,
    .cta-section {
        padding: 64px 0;
    }

    .cta-panel {
        padding: 3rem 1.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-visual {
        order: -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .hero-badge-circle {
        padding: 0.7rem 1rem;
        bottom: 14px;
        left: -10px;
    }

    .hero-badge-number {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .hero-btn,
    .hero-call-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* На мобільному дзвінок вже доступний через нижню sticky-панель
       і плавучий стек месенджерів — приховуємо дублікат, щоб він
       не перекривався цими елементами */
    .hero-call-btn {
        display: none;
    }

    .urgency-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .urgency-timer {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-15px) scale(1.02);
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .advantage-number {
        align-self: center;
    }

    .call-button {
        bottom: 20px;
        right: 20px;
    }

    .call-btn {
        width: 50px;
        height: 50px;
    }

    .call-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        margin-top: 76px;
        padding-top: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .hero-buttons {
        gap: 0.8rem;
    }

    .hero-btn,
    .hero-call-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }

    .nav-wrapper {
        padding: 0.5rem 0;
    }

    .logo {
        gap: 0.3rem;
    }

    .logo-image {
        width: 34px;
        height: 34px;
    }

    .logo-text h2 {
        font-size: 0.9rem;
    }

    .header.scrolled .logo-image {
        width: 32px;
        height: 32px;
    }

    .header.scrolled .logo-text h2 {
        font-size: 0.85rem;
    }

}

/* ===================================================================
   Модернізація 2026: нові секції та компоненти
   =================================================================== */

/* ---------- Decorative blobs ---------- */
.about,
.faq,
.prices,
.testimonials {
    position: relative;
    overflow: hidden;
}

.about::after,
.faq::after,
.prices::after,
.testimonials::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27,75,145,0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about::after { top: -150px; right: -150px; }
.faq::after { top: -200px; right: -120px; }
.prices::after { bottom: -180px; left: -180px; background: radial-gradient(circle, rgba(169,194,160,0.14) 0%, transparent 70%); }
.testimonials::after { top: -160px; left: -160px; background: radial-gradient(circle, rgba(47,174,115,0.07) 0%, transparent 70%); }

.about .container,
.faq .container,
.prices .container,
.testimonials .container {
    position: relative;
    z-index: 1;
}

/* ---------- Scroll-appear animation ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Ripple effect ---------- */
button, .btn, .hero-btn, .cta-primary-btn, .hero-call-btn, .cta-phone-btn {
    position: relative;
    overflow: hidden;
}

/* ---------- Сучасний tactile feedback для всіх кнопок/CTA ---------- */
button,
.btn,
.hero-btn,
.hero-call-btn,
.cta-btn,
.cta-primary-btn,
.cta-phone-btn,
.urgency-btn,
.pricing-btn,
.footer-btn,
.mobile-cta-btn,
.branch-route-btn,
a.phone-number,
input[type="submit"] {
    cursor: pointer;
    transition-property: transform, box-shadow, background-color, border-color, color;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

button:active,
.btn:active,
.hero-btn:active,
.hero-call-btn:active,
.cta-btn:active,
.cta-primary-btn:active,
.cta-phone-btn:active,
.urgency-btn:active,
.pricing-btn:active,
.footer-btn:active,
.mobile-cta-btn:active,
.branch-route-btn:active {
    transform: scale(0.96);
    transition-duration: 100ms;
}

button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to { transform: scale(4); opacity: 0; }
}

/* ---------- Success toast ---------- */
.success-toast {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
    background: rgba(0,0,0,0.35);
}

.success-toast-inner {
    background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
    color: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    animation: successSlideIn 0.4s ease;
}

.success-toast-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-toast-inner h3 { margin-bottom: 1rem; }
.success-toast-inner p { margin-bottom: 1.5rem; }

.success-toast-close {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1.2rem;
    border-radius: 28px;
    cursor: pointer;
    font-weight: 600;
}

@keyframes successSlideIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* ---------- Social proof toast ---------- */
.social-proof-toast {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: linear-gradient(135deg, var(--color-success), var(--color-success-dark));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 32px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1500;
    box-shadow: 0 8px 25px rgba(47, 174, 115, 0.3);
    animation: slideInLeft 0.5s ease, slideOutLeft 0.5s ease 4s;
    max-width: 300px;
}

@keyframes slideInLeft {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-120%); opacity: 0; }
}

/* ---------- Contact FAB stack (messengers + call) ---------- */
.contact-fab-stack {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.contact-fab-stack .call-button {
    position: static;
}

.fab-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-btn:hover {
    transform: scale(1.15) rotate(-6deg);
}

.fab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-icon svg {
    width: 19px;
    height: 19px;
}

.fab-telegram { background: #29a9eb; }
.fab-viber { background: #7360f2; }
.fab-whatsapp { background: #25D366; }

.fab-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 28px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-sticky-cta {
    display: none;
}

/* ---------- About (image layout) ---------- */
.about-flex {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-height: 460px;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.05);
}

/* ---------- Process Section ---------- */
.process { padding: 110px 0; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 1rem;
}

.process-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.process-step h3 {
    color: var(--color-primary);
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ---------- FAQ Section ---------- */
.faq {
    padding: 110px 0;
    background: var(--color-bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.3rem 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.6rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ---------- Address lists (Contacts + Footer) ---------- */
.address-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.address-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--color-text);
    background: var(--color-bg-alt);
    padding: 0.7rem 1rem;
    border-radius: 14px;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.address-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateX(4px);
}

.footer-address-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-address-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.footer-address-link:hover {
    color: #2FAE73;
    padding-left: 4px;
}

.footer-messengers {
    display: flex;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-messengers a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-messengers a svg {
    width: 17px;
    height: 17px;
}

.footer-messengers a:hover {
    background: #2FAE73;
    transform: translateY(-3px);
}

/* ---------- Responsive additions ---------- */
@media (max-width: 900px) {
    .about-flex {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 74px;
    }

    .contact-fab-stack {
        bottom: 90px;
        right: 20px;
        gap: 0.7rem;
    }

    .fab-btn {
        width: 44px;
        height: 44px;
    }

    .fab-icon svg {
        width: 18px;
        height: 18px;
    }

    .fab-tooltip {
        display: none;
    }

    .social-proof-toast {
        bottom: 90px;
    }

    .about-image-wrap {
        max-height: 320px;
    }

    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 -4px 20px rgba(60,50,35,0.11);
        padding: 0.6rem;
        gap: 0.6rem;
    }

    .mobile-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0.85rem;
        border-radius: 14px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .mobile-cta-btn:active {
        transform: scale(0.96);
    }

    .mobile-cta-call {
        background: var(--color-bg-alt);
        color: var(--color-primary);
        border: 2px solid var(--color-primary);
    }

    .mobile-cta-form {
        background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
        color: white;
    }
}

/* ---------- Tablet: 6 пунктів меню + CTA мають вміститись ---------- */
@media (max-width: 1100px) and (min-width: 769px) {
    .nav { gap: 1rem; }
    .nav-link { font-size: 0.92rem; }
    .cta-btn { padding: 0.6rem 1rem; font-size: 0.8rem; white-space: nowrap; }
    .logo-text span { font-size: 0.68rem; white-space: nowrap; }
    .logo-text h2 { font-size: 1.25rem; white-space: nowrap; }
    .header-actions { gap: 0.6rem; }
}