@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --text: #cbd5e1;
    --text-dark: #64748b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    width: auto;
    height: 48px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

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

.nav-review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.42rem 1rem;
    line-height: 1;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;

}

.nav-review-button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.nav-review-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

body {
    transition: opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}

body.lang-switching-page,
body.lang-switching {
    opacity: 0;
    pointer-events: none;
}

.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0.12rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.38);
    border: 1px solid rgba(148, 163, 184, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lang-switcher::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    width: calc(50% - 2px);
    border-radius: 999px;
    background: linear-gradient(135deg, #a5f3fc, #e0e7ff);
    box-shadow: 0 4px 14px rgba(165, 243, 252, 0.24);
    transform: translate3d(0%, 0, 0);
    transition: transform 0.72s cubic-bezier(0.19, 0.9, 0.22, 1), box-shadow 0.72s ease;
    will-change: transform;
    z-index: 0;
}

.lang-switcher[data-active="en"]::before {
    transform: translate3d(100%, 0, 0);
}

.lang-pill {
    border: none;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    min-width: 1.85rem;
    padding: 0.32rem 0.46rem;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.22s ease, transform 0.22s ease;
    position: relative;
    z-index: 1;
}

.lang-pill:hover {
    color: var(--white);
    transform: translateY(-0.5px);
}

.lang-pill.is-active {
    color: #0f172a;
}

.lang-pill:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.92);
    outline-offset: 1px;
}

.lang-nav-item {
    margin-left: -0.5rem;
}

.navbar-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    width: 0%;
    transition: width 0.12s ease-out;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    background-image: url("assets/hero_picture.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(4.25rem, 7vh, 5.75rem) 2rem clamp(2rem, 4.5vh, 3.25rem);
    overflow: hidden;
    margin-bottom: -1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(160deg, rgba(2, 6, 23, 0.62), rgba(15, 23, 42, 0.5)),
        radial-gradient(120% 90% at 50% 15%, rgba(99, 102, 241, 0.22), rgba(2, 6, 23, 0)),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.92;
    backdrop-filter: blur(1.8px) saturate(1.06);
}

.review-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.review-bubble {
    position: absolute;
    max-width: min(280px, 26vw);
    padding: 0.95rem 1.3rem;
    border-radius: 44px 54px 48px 52px / 42px 46px 50px 44px;
    background: rgba(15, 23, 42, 0.54);
    border: 1px solid rgba(191, 219, 254, 0.52);
    backdrop-filter: blur(10px);
    color: #f8fafc;
    box-shadow:
        0 12px 25px rgba(2, 6, 23, 0.36),
        inset 0 1px 0 rgba(191, 219, 254, 0.35);
    opacity: 0;
    transform: scale(0.88) translateY(10px);
    filter: blur(4px);
    transition: opacity 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
                filter 0.9s ease;
    animation: floatCloud var(--bubble-float-duration, 11s) ease-in-out infinite;
    animation-delay: var(--bubble-float-delay, 0s);
    pointer-events: auto;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.review-bubble.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

.review-bubble.is-dragging {
    cursor: grabbing;
    animation: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.review-bubble-stars {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: #fde68a;
    text-shadow: 0 1px 4px rgba(2, 6, 23, 0.58);
}

.review-bubble-text {
    font-size: 0.9rem;
    line-height: 1.35;
    display: block;
    margin: 0.2rem 0;
    color: rgba(248, 250, 252, 0.98);
    text-shadow: 0 1px 5px rgba(2, 6, 23, 0.58);
}

.review-bubble-author {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    opacity: 0.96;
    color: rgba(224, 231, 255, 0.96);
    text-shadow: 0 1px 4px rgba(2, 6, 23, 0.52);
}

@keyframes floatCloud {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1) rotate(-0.9deg);
    }
    25% {
        transform: translate3d(calc(var(--bubble-drift-x, 14px) * 0.45), calc(var(--bubble-drift-y, -18px) * 0.55), 0) scale(1.03) rotate(1deg);
    }
    50% {
        transform: translate3d(var(--bubble-drift-x, 14px), var(--bubble-drift-y, -18px), 0) scale(1.06) rotate(-0.35deg);
    }
    75% {
        transform: translate3d(calc(var(--bubble-drift-x, 14px) * 0.35), calc(var(--bubble-drift-y, -18px) * 0.4), 0) scale(1.02) rotate(0.75deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: clamp(0rem, 0.5vh, 0.45rem);
    pointer-events: none;
}

.hero-content a,
.hero-content button {
    pointer-events: auto;
}

.hero h1 {
    font-size: clamp(2.35rem, 5.6vw, 4.25rem);
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 3px 16px rgba(2, 6, 23, 0.58);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(248, 250, 252, 0.96);
    text-shadow: 0 2px 12px rgba(2, 6, 23, 0.5);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .phoneNum {
    font-size: 1rem;
    margin: 1rem;
    margin-top: 1.5rem;
    border: 2px dashed rgba(148, 163, 184, 0.32);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.why-choose-us {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 4rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.why-choose-us h2{
    font-size: 2.4rem;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}
.slider-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 250px;
    cursor: grab;
    user-select: none;
}
.slider-track .feature-item {
    position: absolute;
    overflow: hidden;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(8px);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(4px);
    opacity: 0.3;
    transform: scale(0.85);
    pointer-events: auto;
}

.slider-track .feature-item::before {
    content: "";
    position: absolute;
    top: -35%;
    right: -20%;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.24), rgba(79, 195, 247, 0));
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.slider-track .feature-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.14) 48%, transparent 82%);
    transform: translateX(-140%);
    transition: transform 0.75s ease;
}

.slider-track .feature-item h3,
.slider-track .feature-item p {
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease, color 0.35s ease;
}

.slider-track .feature-item.active {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 0 16px 44px rgba(2, 6, 23, 0.55);
}

.slider-track .feature-item.active:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(79, 195, 247, 0.42);
    box-shadow: 0 24px 56px rgba(2, 6, 23, 0.58), 0 0 0 1px rgba(79, 195, 247, 0.08);
    background: linear-gradient(160deg, rgba(37, 49, 73, 0.92), rgba(15, 23, 42, 0.94));
}

.slider-track .feature-item.active:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.slider-track .feature-item.active:hover::after {
    transform: translateX(140%);
}

.slider-track .feature-item.active:hover h3 {
    transform: translateY(-2px);
    color: #ffffff;
}

.slider-track .feature-item.active:hover p {
    transform: translateY(2px);
    color: rgba(226, 232, 240, 0.92);
}

.slider-track .feature-item.prev {
    transform: translateX(-70%) scale(0.8);
    z-index: 1;
}
.slider-track .feature-item.next {
    transform: translateX(70%) scale(0.8);
    z-index: 1;
}

.slider-track .feature-item:not(.active):not(.prev):not(.next) {
    pointer-events: none;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
}
.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.slider-dots .dot.active {
    background: #4fc3f7;
    transform: scale(1.3);
}

.partners-section {
    padding-top: 4rem;
    padding-bottom: 1.5rem;
}

.partners-header {
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 220px));
    justify-content: center;
    gap: 1rem;
}

.partner-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    overflow: hidden;
    min-height: 150px;
    padding: 1.1rem;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.88), rgba(15, 23, 42, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.22);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.partner-card::before {
    content: "";
    position: absolute;
    inset: auto -35% -45% auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.28), rgba(56, 189, 248, 0));
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.35s ease;
}

.partner-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.14) 48%, transparent 80%);
    transform: translateX(-135%);
    transition: transform 0.7s ease;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(56, 189, 248, 0.32);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.32), 0 0 0 1px rgba(56, 189, 248, 0.08);
    background: linear-gradient(160deg, rgba(37, 52, 78, 0.94), rgba(15, 23, 42, 0.98));
}

.partner-card:hover::before {
    transform: scale(1.15);
    opacity: 1;
}

.partner-card:hover::after {
    transform: translateX(135%);
}

.partner-card-muted {
    background: linear-gradient(160deg, rgba(20, 29, 46, 0.58), rgba(15, 23, 42, 0.72));
    border-style: dashed;
    border-color: rgba(148, 163, 184, 0.24);
    opacity: 0.9;
}

.partner-card-muted:hover {
    border-color: rgba(148, 163, 184, 0.34);
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.24);
}

.partner-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--white);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(99, 102, 241, 0.95));
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.partner-card-muted .partner-mark {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.9), rgba(100, 116, 139, 0.9));
}

.partner-card:hover .partner-mark {
    transform: translateY(-2px) rotate(-8deg) scale(1.08);
    box-shadow: 0 14px 28px rgba(56, 189, 248, 0.28);
}

.partner-name {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    transition: transform 0.35s ease, letter-spacing 0.35s ease;
}

.partner-tag {
    color: var(--text-dark);
    font-size: 0.88rem;
    line-height: 1.45;
    transition: transform 0.35s ease, color 0.35s ease;
}

.partner-card:hover .partner-name,
.partner-card:hover .partner-tag {
    transform: translateX(4px);
}

.partner-card:hover .partner-name {
    letter-spacing: 0.01em;
}

.partner-card:hover .partner-tag {
    color: rgba(226, 232, 240, 0.88);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    justify-items: center;
}

.pricing-grid .pricing-card {
    width: 100%;
    max-width: none;
}

.pricing-grid .custom-package-card {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1024px) {
    .pricing-grid .custom-package-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid .pricing-card {
        max-width: 760px;
    }

    .pricing-header,
    .pricing-price,
    .pricing-actions {
        text-align: center;
    }

    .pricing-features {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-grid .custom-package-card {
        grid-column: auto;
        max-width: 760px;
    }
}

.pricing-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid var(--primary);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
    box-shadow: 0 24px 66px rgba(99, 102, 241, 0.4);
}

.pricing-card.featured::before {
    height: 6px;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.pricing-header {
    margin-bottom: 0.5rem;
}

.pricing-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-info-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: rgba(15, 23, 42, 0.45);
    color: var(--text);
    font: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.package-info-button:hover {
    background: rgba(79, 195, 247, 0.14);
    color: var(--white);
    border-color: rgba(79, 195, 247, 0.6);
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.price-period {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-top: 0;
}

.pricing-features {
    list-style: none;
    margin: 0.5rem 0;
    flex: 1;
}

.pricing-features li {
    padding: 0.2rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.contact-section {
    background: var(--dark-light);
    position: relative;
    padding-bottom: 0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    
    padding: 2rem;

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1rem;
    margin-right: 6rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.submit-button {
    width: 100%;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.submit-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.18) 48%, transparent 78%);
    transform: translateX(-140%);
    transition: transform 0.7s ease;
    pointer-events: none;
    z-index: -1;
}

.submit-button:hover {
    transform: translateY(-0.25px);
    box-shadow: 0 7px 18px rgba(99, 102, 241, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    filter: brightness(1.015) saturate(1.04);
}

.submit-button:hover::before {
    transform: translateX(140%);
}

.submit-button:active {
    transform: translateY(0);
    filter: brightness(0.995);
}

.info-section {
    background: var(--dark-light);
    padding: 5rem 0;
    border: 0px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
    text-align: center;
}

.info-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.info-subtitle {
    font-size: 1.15rem;
    color: var(--text-dark);
    max-width: 620px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    min-width: 240px;
    flex: 1 1 240px;
    max-width: 340px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 14px 36px rgba(99, 102, 241, 0.18);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient);
    color: var(--white);
    margin-bottom: 0.3rem;
}

.info-card-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
}

.info-card-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
}

.info-note {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
}

footer {
    background: rgba(15, 23, 42, 0.8);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: var(--text-dark);
}

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

.reveal {
    opacity: 0;
    transform: translate3d(0, 48px, 0) scale(0.98);
    filter: blur(10px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
                filter 0.7s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

:where(.reveal).is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.reveal-left {
    transform: translate3d(-52px, 0, 0) scale(0.98);
}

.reveal-right {
    transform: translate3d(52px, 0, 0) scale(0.98);
}

.reveal-zoom {
    transform: translate3d(0, 30px, 0) scale(0.92);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-zoom {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

.floating-consultation-button {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--white);
    background: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.35);
    transition: opacity 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    transform-origin: center;
    animation: consultationBounce 2.8s ease-in-out infinite, consultationPulse 2.8s ease-in-out infinite;
}

.floating-consultation-button:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(var(--consult-scale, 1));
    filter: brightness(1.06);
    box-shadow: 0 16px 32px rgba(14, 165, 233, 0.45);
}

.floating-consultation-button.is-faded {
    pointer-events: none;
}

.floating-consultation-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.95);
    outline-offset: 3px;
}

.review-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.package-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1900;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.package-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.package-modal {
    width: min(620px, 100%);
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.58);
    padding: 1.4rem;
    transform: translateY(18px) scale(0.96);
    transition: transform 0.24s ease;
    position: relative;
}

.package-modal-backdrop.is-open .package-modal {
    transform: translateY(0) scale(1);
}

.package-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.package-modal h2 {
    color: var(--white);
    margin-bottom: 0.4rem;
}

.package-modal-price {
    color: #67e8f9;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.package-modal-description {
    color: var(--text);
    margin-bottom: 1rem;
}

.package-modal-features {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    max-height: 52vh;
    overflow-y: auto;
    padding-right: 0.2rem;
}

.package-modal-features li {
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.42);
    padding: 0.75rem;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.75rem;
    align-items: start;
}

.package-modal-features li:last-child {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.package-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(79, 195, 247, 0.28), rgba(99, 102, 241, 0.22));
    border: 1px solid rgba(79, 195, 247, 0.35);
    color: #dbeafe;
    display: grid;
    place-items: center;
}

.package-feature-icon svg {
    width: 22px;
    height: 22px;
}

.package-feature-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.18rem;
}

.package-feature-detail {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.45;
}

.custom-package-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.custom-package-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.custom-package-modal {
    width: min(640px, 100%);
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.58);
    padding: 2rem;
    transform: translateY(18px) scale(0.96);
    transition: transform 0.24s ease;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.custom-package-modal-backdrop.is-open .custom-package-modal {
    transform: translateY(0) scale(1);
}

.custom-package-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    color: #cbd5e1;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.custom-package-modal-close:hover {
    color: var(--white);
}

.custom-package-modal-close svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
}

.custom-package-modal-content {
    color: var(--text);
}

.custom-builder-step {
    animation: fadeIn 0.3s ease;
}

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

.custom-builder-step h2 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.custom-builder-subtitle {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.custom-builder-section {
    margin-bottom: 1.8rem;
}

.custom-builder-label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.custom-builder-range {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, rgb(99, 102, 241), rgb(139, 92, 246));
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.custom-builder-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.custom-builder-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.custom-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.custom-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.custom-feature-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.custom-feature-group-title {
    margin: 0;
    color: rgba(226, 232, 240, 0.92);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.custom-feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.65rem;
}

.custom-feature-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: var(--text);
}

.custom-feature-checkbox:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.08);
}

.custom-feature-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.custom-feature-checkbox input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.custom-feature-choice {
    min-height: 52px;
}

.custom-builder-price-preview {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    text-align: center;
}

.custom-builder-price-preview p {
    color: var(--text);
    font-size: 1rem;
    margin: 0;
}

.custom-builder-price-preview strong {
    color: #4fc3f7;
    font-size: 1.4rem;
    font-weight: 700;
}

.custom-builder-button {
    width: 100%;
    padding: 0.95rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.custom-builder-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.custom-builder-button:active {
    transform: translateY(0);
}

.custom-builder-button-secondary {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: var(--text);
}

.custom-builder-button-secondary:hover {
    background: rgba(30, 41, 59, 1);
    border-color: rgba(148, 163, 184, 0.5);
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.4);
}

.custom-builder-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.custom-builder-buttons .custom-builder-button {
    margin-top: 0;
}

.custom-package-form {
    margin-top: 1rem;
}

.custom-package-card {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.04));
    border: 2px dashed rgba(99, 102, 241, 0.3);
}

.custom-package-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
}

.review-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.review-modal {
    width: min(560px, 100%);
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.58);
    padding: 1.4rem;
    transform: translateY(18px) scale(0.96);
    transition: transform 0.24s ease;
    position: relative;
}

.review-modal-backdrop.is-open .review-modal {
    transform: translateY(0) scale(1);
}

.review-modal h2 {
    color: var(--white);
    margin-bottom: 0.45rem;
}

.review-modal p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.review-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.review-form-group {
    margin-right: 0;
}

.review-form textarea {
    min-height: 130px;
}

.review-feedback {
    min-height: 1.35rem;
    margin-top: 0.1rem;
    margin-bottom: 0.7rem;
    font-size: 0.94rem;
    color: #67e8f9;
}

.review-feedback.is-error {
    color: #fca5a5;
}

.bot-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.all-reviews-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.all-reviews-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.all-reviews-modal {
    width: min(540px, 100%);
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.97), rgba(15, 23, 42, 0.99));
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 20px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.58);
    padding: 1.6rem 1.4rem 0.5rem;
    transform: translateY(18px) scale(0.96);
    transition: transform 0.24s ease;
    position: relative;
}

.all-reviews-modal-backdrop.is-open .all-reviews-modal {
    transform: translateY(0) scale(1);
}

.all-reviews-modal h2 {
    color: var(--white);
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.all-reviews-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.all-reviews-list {
    list-style: none;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-right: 0.25rem;
    padding-bottom: 1rem;
}

.all-reviews-list::-webkit-scrollbar {
    width: 5px;
}

.all-reviews-list::-webkit-scrollbar-track {
    background: transparent;
}

.all-reviews-list::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.3);
    border-radius: 999px;
}

.all-review-item {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.all-review-item-stars {
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    color: #fde68a;
}

.all-review-item-text {
    color: rgba(248, 250, 252, 0.94);
    font-size: 0.95rem;
    line-height: 1.5;
}

.all-review-item-author {
    font-size: 0.82rem;
    color: rgba(224, 231, 255, 0.7);
    margin-top: 0.15rem;
}

.all-reviews-empty {
    color: var(--text-dark);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.95rem;
}

@keyframes consultationBounce {
    0%,
    100% {
        transform: translateY(0) scale(var(--consult-scale, 1));
    }
    40% {
        transform: translateY(-8px) scale(var(--consult-scale, 1));
    }
    70% {
        transform: translateY(-3px) scale(var(--consult-scale, 1));
    }
}

@keyframes consultationPulse {
    0%,
    100% {
        box-shadow: 0 12px 28px rgba(14, 165, 233, 0.35);
    }
    50% {
        box-shadow: 0 18px 38px rgba(20, 184, 166, 0.5);
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-consultation-button {
        animation: none;
        transform: none;
    }
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

nav.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

nav.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

nav.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hero {
        background-size: cover;
        background-position: 70% top;
        margin-bottom: -1.2rem;
    }

    /* Show hamburger, hide inline nav */
    .nav-hamburger {
        display: flex;
    }

    #navLinks {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1.5rem 1rem;
        background: rgba(10, 18, 35, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 14px 32px rgba(2, 6, 23, 0.55);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    }

    nav.nav-open #navLinks {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    #navLinks li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    #navLinks li:last-child {
        border-bottom: none;
    }

    #navLinks a {
        display: block;
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        box-sizing: border-box;
    }

    .nav-review-button {
        width: 100%;
        margin: 0.4rem 0;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        font-size: 1rem;
    }

    .lang-nav-item {
        margin-left: 0;
        padding: 0.6rem 0;
        justify-content: flex-start;
    }

    .lang-pill {
        min-width: 1.75rem;
        padding: 0.28rem 0.4rem;
        font-size: 0.68rem;
    }

    /* Why choose us slider */
    .why-choose-us {
        padding: 3rem 0; /* remove horizontal padding so cards can peek edge-to-edge */
    }

    .why-choose-us h2 {
        padding: 0 1.5rem;
    }

    .slider-wrapper {
        overflow: visible; /* let side cards peek out from behind section clip */
    }

    .slider-track {
        min-height: 220px;
    }

    /* Active card: wider on mobile */
    .slider-track .feature-item {
        width: 78%;
        max-width: none;
    }

    /* Bring side cards closer in so they peek more visibly */
    .slider-track .feature-item.prev {
        transform: translateX(-58%) scale(0.82);
    }

    .slider-track .feature-item.next {
        transform: translateX(58%) scale(0.82);
    }

    /* Keep reviews visible on mobile with reduced bubble footprint */
    .review-bubbles {
        display: block;
    }

    .review-bubble {
        max-width: min(210px, 46vw);
        padding: 0.72rem 0.9rem;
        border-radius: 18px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(15, 23, 42, 0.82);
        filter: none;
        box-shadow: 0 6px 16px rgba(2, 6, 23, 0.4);
        transition: opacity 1s ease;
        will-change: opacity;
        animation-name: none;
    }

    .review-bubble.is-visible {
        filter: none;
        transform: scale(1) translateY(0);
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.8rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Sections */
    section {
        padding: 5rem 0;
    }

    .why-choose-us h2 {
        font-size: 1.8rem;
    }

    /* Contact form */
    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        align-items: center;
        margin-right: 4rem;
        margin-left: -2.5rem;
    }

    /* Info cards — prevent email overflow */
    .info-card-value {
        overflow-wrap: break-word;
        word-break: break-all;
        max-width: 100%;
        font-size: 0.8rem;
    }

    .info-cards {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .info-card {
        min-width: 0;
        max-width: none;
        flex: 1 1 0;
        padding: 1.2rem 0.6rem;
        font-size: 0.85rem;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

    .info-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Floating button */
    .floating-consultation-button {
        right: 1rem;
        bottom: 1rem;
        font-size: 0.95rem;
        padding: 0.8rem 1.1rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 1.2rem;
    }

    .container {
        padding: 0 1rem;
    }

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

@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        padding-top: clamp(6rem, 14vh, 8rem);
        padding-bottom: clamp(1rem, 3.2vh, 1.8rem);
    }

    .hero h1 {
        font-size: clamp(2rem, 5.6vw, 2.8rem);
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: clamp(0.9rem, 1.9vw, 1.02rem);
        margin-bottom: 1.15rem;
    }
}
