:root {
    --primary: #F59E0B; /* rgba(245, 158, 11, 1) */
    --primary-dark: #D97706;
    --secondary: #2563EB; /* rgba(37, 99, 235, 1) */
    --accent: #2563EB;
    --dark: #111827; /* rgba(17, 24, 39, 1) */
    --light: #FFFFFF; /* rgba(255, 255, 255, 1) */
    --glass: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(189.94deg, #F59E0B 0%, #2563EB 50%, #111827 100%);
    background-size: 100% 400%;
    background-attachment: fixed;
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    transition: background-position 0.1s ease-out;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    color: var(--light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 70px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
   background: linear-gradient(90deg, #F59E0B 0%, #2563EB 65.38%);

    color: var(--light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-outline {
    position: relative;
    background: rgba(17, 24, 39, 0.6);
    color: var(--light);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1;
}

/* 🔥 Gradient border */
.btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 5px; /* border qalinligi */
    border-radius: 16px;

    background: linear-gradient(90deg, #2563EB 32.21%, #F59E0B 100%);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;

    mask-composite: exclude;

    z-index: -1;
}

.btn-outline:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--light);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    padding: 10px 0px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.header.scrolled {
    top: 12px;
    width: 90%;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.12);
}

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

.logo img {
    height: 45px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    transition: var(--transition);
}

.nav-toggle span + span {
    margin-top: 6px;
}

.header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-top: 10px;
    transition: max-height 0.35s ease, padding 0.35s ease, border-color 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease, margin-top 0.35s ease;
}

.mobile-menu .container {
    padding-top: 0;
    padding-bottom: 0;
    transition: padding 0.35s ease;
}

.mobile-menu--glass.is-open {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.mobile-menu--solid.is-open {
    background: rgba(17, 24, 39, 0.92);
}

.mobile-link {
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu.is-open {
    max-height: 400px;
    padding: 12px 30px;
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.mobile-menu.is-open .container {
    padding-top: 4px;
    padding-bottom: 4px;
}

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

.lang-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.lang-link:hover {
    color: rgba(255, 255, 255, 1);
}

.lang-link.is-active {
    color: var(--primary);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 6px 4px;
}

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

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    z-index: 0;
}

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

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Examples Section */
.examples {
    padding: 100px 0;
}

.examples .section-title {
    color: var(--light);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 28px;
}

.card {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    background: #111;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.img-before {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.after-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.after-wrap .img-after {
    position: absolute;
    top: 0; left: 0;
    /* width JS tomonidan beriladi — bu yerda yozma */
    height: 100%;
    object-fit: cover;
    object-position: left center;  /* ← shu muhim! */
}

.line {
    position: absolute;
    top: 0; left: 50%;
    width: 2px; height: 100%;
    background: #fff;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}

.handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 34px; height: 34px;
    background: #f5a623;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.handle svg { width: 16px; height: 16px; }

.lbl {
    position: absolute;
    top: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 2px 8px;
    border-radius: 5px;
    z-index: 5;
    pointer-events: none;
}
.lbl-before { left: 8px; }
.lbl-after  { right: 8px; }

.btn-examples {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 70px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(90deg, #F59E0B 0%, #2563EB 65.38%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}


.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #f59e0b;
    width: 38px;
    border-radius: 999px;
}

/* Team Section */
.team {
    padding: 100px 0;
}

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

.team-image {
    position: relative;
}

.team-image img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.team-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.team-corner-tl {
    left: -14px;
    top: -14px;
    border-left: 4px solid #f0a300;
    border-top: 4px solid #f0a300;
    border-top-left-radius: 6px;
}

.team-corner-tr {
    right: -14px;
    top: -14px;
    border-right: 4px solid #2b5bff;
    border-top: 4px solid #2b5bff;
    border-top-right-radius: 6px;
}

.team-corner-bl {
    left: -14px;
    bottom: -14px;
    border-left: 4px solid #2b5bff;
    border-bottom: 4px solid #2b5bff;
    border-bottom-left-radius: 6px;
}

.team-corner-br {
    right: -14px;
    bottom: -14px;
    border-right: 4px solid #f0a300;
    border-bottom: 4px solid #f0a300;
    border-bottom-right-radius: 6px;
}

.team-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.92);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(20, 26, 33, 0.6);
    padding: 18px 18px;
    border-radius: 10px;
    text-align: left;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-card p {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    color: var(--dark);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.price-header {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 1px solid #e2e8f0;
    transition: var(--transition);
}

.price-row:hover {
    background-color: #f8fafc;
}

.price-row span:last-child {
    color: var(--primary-dark);
    font-weight: 700;
}

.price-footer {
    padding: 30px;
    text-align: center;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
}

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

.benefits-image img {
    border-radius: 12px;
    box-shadow: none;
}

.benefits-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.benefits-list li > span[aria-hidden="true"] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefits-list li > span[aria-hidden="true"]::after {
    content: '';
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    margin-top: -1px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 13, 20, 0.78), rgba(10, 13, 20, 0.78)), url('images/hero_bg_1776427870461.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.process .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.process-flow {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.process-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: 100%;
}

.process-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 100%;
}

.process-cta {
    min-width: 0;
}

.process-cta-text {
    overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
    .process-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-arrow {
        display: none;
    }

    .process-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-mid {
        display: none;
    }

    .process-to-6 {
        display: none;
    }

    .process-card-6 {
        justify-self: stretch;
        width: 100%;
        margin-top: 0;
    }

    .process-cta {
        order: 2;
    }

    .process-card-6 {
        order: 1;
    }
}

.process-to-6 {
    position: absolute;
    left: 50%;
    bottom: -54px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(98, 136, 255, 0.95);
    font-size: 1.35rem;
    filter: drop-shadow(0 0 14px rgba(98, 136, 255, 0.5));
    z-index: 3;
}

.process-to-6 i {
    animation: processDownPulse 1.35s ease-in-out infinite;
}

@keyframes processDownPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.75;
    }
    50% {
        transform: translateY(4px);
        opacity: 1;
    }
}

.process-card {
    position: relative;
    min-width: 0;
    border-radius: 14px;
    padding: 18px 18px 16px;
    background: rgba(17, 24, 39, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.process-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.process-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 13px;
    background: rgba(10, 13, 20, 0.35);
    z-index: 0;
}

.process-card.is-active::before {
    opacity: 1;
    filter: blur(0.2px);
}

.process-card.is-active {
    box-shadow: 0 0 0 1px rgba(98, 136, 255, 0.55), 0 0 32px rgba(98, 136, 255, 0.35);
}

.process-card > * {
    position: relative;
    z-index: 1;
}

@property --a {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes processSpin {
    to {
        --a: 360deg;
    }
}

.process-card.is-active::before {
    animation: processSpin 2.8s linear infinite;
    opacity: 1;
}

.process-card.is-active {
    border-color: rgba(255, 255, 255, 0.22);
}

.process-card-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.process-num {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: #bcd0ff;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.process-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    min-width: 0;
}

.process-title span {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.85;
}

.process-ico {
    font-size: 2.6rem;
    color: #ffb100;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(98, 136, 255, 0.9);
    font-size: 1.2rem;
    transform: translateY(2px);
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.process-arrow i {
    animation: processArrowPulse 1.35s ease-in-out infinite;
}

@keyframes processArrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
        filter: drop-shadow(0 0 0 rgba(98, 136, 255, 0));
    }
    50% {
        transform: translateX(4px);
        opacity: 1;
        filter: drop-shadow(0 0 14px rgba(98, 136, 255, 0.55));
    }
}

.process-cta {
    border-radius: 16px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.process-cta-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.process-cta-btn {
    width: 280px;
    max-width: 100%;
    height: 54px;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    color: #111827;
    background: linear-gradient(90deg, #ffb100 0%, #ff8a00 60%, #ffb100 100%);
    box-shadow: 0 18px 40px rgba(255, 160, 0, 0.2), 0 12px 28px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.process-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.process-mid {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: rgba(98, 136, 255, 0.95);
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.process-mid i {
    animation: processMidPulse 1.35s ease-in-out infinite;
    filter: drop-shadow(0 0 14px rgba(98, 136, 255, 0.55));
}

@keyframes processMidPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.75;
    }
    50% {
        transform: translateX(-4px);
        opacity: 1;
    }
}

.process-card-6 {
    justify-self: end;
    width: min(420px, 100%);
    margin-top: 8px;
    box-shadow: 0 0 0 1px rgba(98, 136, 255, 0.55), 0 0 32px rgba(98, 136, 255, 0.25);
}

.process-back {
    position: absolute;
    left: 16px;
    bottom: 14px;
    top: auto;
    transform: none;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(98, 136, 255, 0.98);
    font-size: 1.25rem;
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.process-back i {
    animation: processBackPulse 1.35s ease-in-out infinite;
    filter: drop-shadow(0 0 14px rgba(98, 136, 255, 0.55));
}

@keyframes processBackPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.75;
    }
    50% {
        transform: translateX(-4px);
        opacity: 1;
    }
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
}

.reviews .section-title {
    text-align: left;
    margin-bottom: 26px;
}

.reviews-slider {
    display: flex;
    gap: 22px;
    margin-bottom: 34px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}

.reviews-slider::-webkit-scrollbar {
    height: 8px;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 16px 16px 12px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.65);
    min-height: 168px;
    flex: 0 0 min(340px, 85%);
    scroll-snap-align: start;
}

.review-card p {
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid rgba(245, 158, 11, 0.7);
    padding-top: 10px;
    margin-top: 6px;
}

.review-name {
    font-weight: 800;
    font-size: 0.9rem;
    color: #111827;
}

.review-name i {
    color: #f59e0b;
    margin-right: 6px;
}

.review-date {
    font-weight: 700;
    font-size: 0.78rem;
    color: rgba(17, 24, 39, 0.75);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.contact-map {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.contact-map iframe {
    height: 380px;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.contact-panel {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    border-radius: 26px;
    padding: 26px 26px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-row {
    display: grid;
    grid-template-columns: 26px 1fr;
    align-items: start;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-row i {
    font-size: 1.5rem;
    color: #ffb100;
    margin-top: 2px;
}

.contact-row-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    overflow-wrap: anywhere;
    word-break: break-word;
}

a.contact-phone {
    text-decoration: none;
    transition: color 0.25s ease;
}

a.contact-phone:hover {
    color: #ffb100;
    text-decoration: underline;
}

/* Contact call hero */
.contact-call-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 14px 40px rgba(34, 197, 94, 0.45), 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.contact-call-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(34, 197, 94, 0.55), 0 6px 18px rgba(0, 0, 0, 0.25);
    filter: brightness(1.05);
}

.contact-call-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: phone-ring-anim 2.5s ease-in-out infinite;
}

@keyframes phone-ring-anim {
    0%, 55%, 100% { transform: rotate(0deg); }
    10%  { transform: rotate(-18deg); }
    20%  { transform: rotate(18deg); }
    30%  { transform: rotate(-12deg); }
    40%  { transform: rotate(12deg); }
    50%  { transform: rotate(-5deg); }
}

.contact-call-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-call-label {
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.88;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.contact-call-number {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* Phone rows as links */
.contact-row--phone {
    text-decoration: none;
    border-radius: 12px;
    margin: -4px -10px;
    padding: 4px 10px;
    transition: background 0.25s ease;
    cursor: pointer;
}

.contact-row--phone:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-row--phone:hover .contact-row-text {
    color: #ffb100;
}

.contact-row--phone i {
    color: #ffb100;
}

.contact .info-card {
    display: none;
}

.social-links {
    display: flex;
    gap: 22px;
    margin-top: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.02);
    filter: brightness(1.05);
}

.social-btn.tg { background: #229ED9; }
.social-btn.ig { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-btn.fb { background: #1877F2; }
.social-btn.wa { background: #25D366; }

/* Floating call button */
.float-call-btn {
    position: fixed;
    right: 24px;
    bottom: 40px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B, #2563EB);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float-pulse 2s ease-in-out infinite;
}

.float-call-btn:hover {
    transform: scale(1.12);
    filter: brightness(1.1);
}

@keyframes float-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.5), 0 8px 30px rgba(0,0,0,0.4); }
    50% { box-shadow: 0 0 0 14px rgba(245,158,11,0), 0 8px 30px rgba(0,0,0,0.4); }
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    background-color: var(--dark);
    border-top: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .team-content, .benefits-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        flex-direction: column;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .process-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-arrow {
        display: none;
    }

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

    .process-mid {
        display: none;
    }

    .process-to-6 {
        display: none;
    }

    .process-card-6 {
        justify-self: stretch;
        margin-top: 0;
    }

    .process .section-title {
        text-align: center;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .reviews .section-title {
        text-align: center;
    }

    .contact-map iframe {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header.scrolled {
        width: 95%;
        padding: 10px 0px;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
        margin-left: 10px;
    }

    .navbar {
        gap: 12px;
    }

    .lang-switch {
        margin-left: auto;
    }

    .benefits {
        padding: 80px 0;
    }

    .pricing {
        padding: 80px 0;
    }

    .grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .price-header, .price-row {
        padding-left: 18px;
        padding-right: 18px;
    }

    .benefits-grid {
        gap: 32px;
    }

    .stats-grid {
        gap: 14px;
    }

    .stat-card {
        padding: 14px 14px;
        min-height: 86px;
    }

    .stat-card h3 {
        font-size: 2.05rem;
    }

    .benefits-content h3 {
        font-size: 1.55rem;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-grid {
        gap: 28px;
        align-items: stretch;
    }

    .contact-panel {
        max-width: none;
        width: 100%;
        padding: 20px 18px;
        border-radius: 22px;
    }

    .social-links {
        gap: 14px;
        justify-content: flex-start;
    }

    .social-links a {
        width: 64px;
        height: 64px;
        font-size: 1.9rem;
    }

    .reviews {
        padding: 80px 0;
    }

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

@media (max-width: 576px) {
    .hero-content {
        padding: 0;
    }

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

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .lang-switch {
        gap: 6px;
    }

    .price-header {
        font-size: 1rem;
    }

    .price-row {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
    }

    .price-row span:first-child {
        min-width: 0;
        flex: 1 1 auto;
    }

    .price-row span:last-child {
        flex: 0 0 auto;
        font-size: 0.92rem;
        white-space: nowrap;
    }

    .contact-map iframe {
        height: 280px;
    }

    .contact-panel {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .contact-row {
        grid-template-columns: 22px 1fr;
        gap: 12px;
    }

    .contact-row i {
        font-size: 1.25rem;
    }

    .contact-row-text {
        font-size: 0.95rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
    }
}
