* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

:root {
    --white: #ffffff;
    --blue: #0a1f44;
    --gold: #c9a24d;
    --gold-soft: #e8d9a8;
}

body {
    background-color: var(--white);
    color: var(--blue);
}

/* CONTAINER */
.container {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}

/* HEADER */
.header {
    background: var(--white);
    border-bottom: 1px solid #f0f0f0;
    padding: 22px 0;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--blue);
}

.logo span {
    color: var(--gold);
}

/* NAVIGATION */
.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: var(--blue);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

/* GOLD UNDERLINE HOVER */
.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--gold);
}

.nav-list a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    padding: 90px 0 60px;
}

.hero-content {
    max-width: 720px;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--blue);
}

.hero h1 span {
    color: var(--gold);
}

/* TEXT */
.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a4a66;
}

/* IMAGE */
.image-section {
    padding: 40px 0 90px;
}

.image-section img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(10, 31, 68, 0.15);
}






.values-section {
    padding: 120px 0;
    background: linear-gradient(
        to bottom,
        #ffffff,
        #f6f8fb
    );
}

/* LIST */
.values-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* VERTICAL LINE */
.values-list::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gold),
        transparent
    );
    opacity: 0.6;
}

/* ITEM */
.value-item {
    display: flex;
    gap: 40px;
    padding: 40px 50px;
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 26px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(10, 31, 68, 0.08);
}

/* HOVER MAGIC */
.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(10, 31, 68, 0.16);
}

/* GOLD DOT */
.value-dot {
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
    box-shadow: 0 0 0 rgba(201, 162, 77, 0.6);
    animation: pulse 2.5s infinite;
}

/* DOT GLOW */
.value-dot::after {
    content: "";
    position: absolute;
    inset: -10px;
    background: rgba(201, 162, 77, 0.25);
    border-radius: 50%;
    filter: blur(12px);
    z-index: -1;
}

/* TEXT */
.value-content h3 {
    font-size: 26px;
    color: var(--blue);
    margin-bottom: 10px;
}

.value-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5a75;
    max-width: 600px;
}

/* ANIMATION */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(201, 162, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0);
    }
}





.hero-image {
    padding: 80px 0 120px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-height: 520px;          /* ← КЛЮЧЕВО */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(10, 31, 68, 0.25);
}

/* IMG */
.image-wrapper img {
    width: 100%;
    height: 520px;              /* ← КЛЮЧЕВО */
    object-fit: cover;
    display: block;
}

/* GOLD GLOW (остаётся интерактив) */
.image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(201, 162, 77, 0.35),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-wrapper:hover .image-glow {
    opacity: 1;
}




/* === HERO SPLIT FIX (ДОБАВИТЬ В КОНЕЦ ФАЙЛА) === */

.hero-split {
    padding: 80px 0 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* УБИРАЕМ ЛИШНИЕ ОТСТУПЫ */
.hero {
    padding: 0;
}

.hero-image {
    padding: 0;
}

/* КАРТИНКА */
.hero-image .image-wrapper {
    max-height: 480px;
}

.hero-image img {
    height: 480px;
}













/* ABOUT TITLE */
.about-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
    position: relative;
}

.about-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin-top: 14px;
}

.about-subtitle {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.7;
    color: #4a5a75;
    margin-bottom: 70px;
}









/* === STATS SECTION === */
.stats-section {
    padding: 80px 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.stat-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(10, 31, 68, 0.08);
    transition: all 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(10, 31, 68, 0.18);
}

/* DOT */
.stat-dot {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(201, 162, 77, 0.6);
}

/* NUMBER */
.stat-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

/* TEXT */
.stat-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5a75;
}











/* === FIX OVERLAP BETWEEN STATS AND VALUES === */

/* отступ после stats */
.stats-section {
    padding-bottom: 140px;
}

/* wrapper для цепочки */
.values-wrapper {
    margin-top: 0;
    padding-top: 60px;
}

/* список карточек */
.values-list {
    margin-top: 40px;
}

/* первая карточка — дополнительный отступ */
.value-item:first-child {
    margin-top: 40px;
}

/* защита от наложения */
.values-section {
    position: relative;
    z-index: 1;
}

/* карточки всегда выше фона */
.value-item {
    z-index: 2;
}


/* === ABOUT CARDS SECTION === */

.about-cards-section {
    padding: 120px 0;
    background: #f6f8fb;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.about-card {
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(10, 31, 68, 0.15);
}

.about-card h3 {
    font-size: 20px;
    margin: 18px 0 12px;
    color: var(--blue);
}

.about-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5a75;
}

.about-card .icon {
    font-size: 26px;
}

/* COLOR VARIANTS */
.about-card.purple { background: #e4d7ff; }
.about-card.blue   { background: #e3f0ff; }
.about-card.green  { background: #e6f9dc; }
.about-card.yellow { background: #fbf7df; }
.about-card.peach  { background: #fdeee5; }
.about-card.white  { background: #ffffff; }









.services-gold {
    background: #ffffff;
    padding: 120px 0;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    color: #0b1c3f;
    margin-bottom: 12px;
}

.services-subtitle {
    max-width: 620px;
    font-size: 18px;
    color: #5b6b8c;
    margin-bottom: 80px;
    position: relative;
}

.services-subtitle::before {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a84f, #f0d58a);
    display: block;
    margin-bottom: 20px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* CARD */
.service-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border-radius: 26px;
    padding: 44px 36px;
    box-shadow: 0 25px 60px rgba(15, 30, 60, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* золотая линия слева */
.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #d4a84f, #f0d58a);
    border-radius: 2px;
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 60%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 90px rgba(15, 30, 60, 0.15);
}

/* ICON */
.service-icon {
    width: 14px;
    height: 14px;
    background: #d4a84f;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 26px;
    position: relative;
}

.service-icon::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: rgba(212, 168, 79, 0.15);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon::after {
    inset: -18px;
    background: rgba(212, 168, 79, 0.25);
}

/* TEXT */
.service-card h3 {
    font-size: 22px;
    color: #0b1c3f;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #5b6b8c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}









/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* чуть разная задержка для карточек */
.service-card.reveal {
    transition-delay: 0.1s;
}
.service-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.25s; }
.service-card.reveal:nth-child(5) { transition-delay: 0.3s; }
.service-card.reveal:nth-child(6) { transition-delay: 0.35s; }





/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #5f6f8f;
    margin-bottom: 50px;
    max-width: 500px;
}

.testimonial-card {
    position: relative;
    max-width: 700px;
    background: #fff;
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 30px 80px rgba(10, 31, 68, 0.15);
    transition: all 0.4s ease;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 40px;
    font-size: 120px;
    color: #d4af37;
    opacity: 0.15;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2f3e5c;
    margin-bottom: 30px;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    color: #0a1f44;
}

.testimonial-author span {
    font-size: 14px;
    color: #7a8aa6;
}

/* controls */
.testimonial-controls {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #d4af37;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* glow effect on change */
.testimonial-card.glow {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    animation: glow 0.6s ease;
}

@keyframes glow {
    0% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.35); }
    100% { box-shadow: 0 30px 80px rgba(10, 31, 68, 0.15); }
}











/* ===== WIDE TESTIMONIALS ===== */
.testimonials-wide {
    padding: 120px 0;
    background: #ffffff;
}

.container.wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.testimonial-content {
    position: relative;
}

.testimonial-text-block {
    position: relative;
    margin-top: 40px;
    padding-left: 60px;
}

.big-quote {
    position: absolute;
    left: 0;
    top: -40px;
    font-size: 140px;
    color: #d4af37;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2f3e5c;
    max-width: 650px;
}

.testimonial-author {
    margin-top: 30px;
}

.testimonial-author strong {
    font-size: 18px;
    color: #0a1f44;
}

.testimonial-author span {
    display: block;
    color: #7a8aa6;
}

/* right decor */
.testimonial-decor {
    position: relative;
    padding-left: 60px;
}

.decor-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.decor-stat span {
    font-size: 56px;
    font-weight: 700;
    color: #d4af37;
}

.decor-stat p {
    color: #5f6f8f;
}

/* responsive */
@media (max-width: 1024px) {
    .testimonial-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-decor {
        display: none;
    }
}









.why-us {
    padding: 120px 0;
    background: #ffffff;
}

.why-title {
    font-size: 42px;
    font-weight: 700;
    color: #0b1f44;
    margin-bottom: 10px;
}

.why-subtitle {
    max-width: 600px;
    font-size: 18px;
    color: #4a5d80;
    margin-bottom: 70px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.why-card {
    position: relative;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    border: 1px solid rgba(212,175,55,0.35);
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

.why-number {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #d4af37;
}

.why-card h3 {
    font-size: 22px;
    color: #0b1f44;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 16px;
    color: #4a5d80;
    line-height: 1.6;
}

/* scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.why-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease;
}

.why-anim.active {
    opacity: 1;
    transform: translateY(0);
}






/* TEAM SECTION */
.team {
    padding: 120px 0;
    background: #ffffff;
}

.team-title {
    font-size: 48px;
    font-weight: 700;
    color: #0b1f3b;
    margin-bottom: 10px;
}

.team-subtitle {
    max-width: 520px;
    font-size: 18px;
    color: #5f6f8f;
    margin-bottom: 70px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 18px;
    transition: border 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

.team-card:hover::after {
    border-color: #d4af37;
}

.team-photo {
    height: 420px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    background: #ffffff;
    position: relative;
}

.team-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 40px;
    height: 3px;
    background: #d4af37;
}

.team-info h3 {
    font-size: 20px;
    color: #0b1f3b;
    margin-bottom: 6px;
}

.team-info span {
    font-size: 15px;
    color: #8a8a8a;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-photo {
        height: 360px;
    }
}




/* STRATEGY SECTION */
.strategy {
    padding: 140px 0;
    background: #ffffff;
}

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.strategy-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

.strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategy-title {
    font-size: 56px;
    font-weight: 700;
    color: #0b1f3b;
    margin-bottom: 20px;
    line-height: 1.15;
}

.strategy-subtitle {
    font-size: 18px;
    color: #6b7a99;
    margin-bottom: 60px;
    max-width: 520px;
}

.strategy-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 60px;
}

.strategy-item {
    position: relative;
    padding-left: 26px;
}

.strategy-line {
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, #d4af37, #f3e2a0);
    border-radius: 10px;
}

.strategy-item h3 {
    font-size: 20px;
    color: #0b1f3b;
    margin-bottom: 10px;
}

.strategy-item p {
    font-size: 16px;
    color: #6f7f9b;
    line-height: 1.6;
}

/* HOVER EFFECT — ИЗЮМИНКА */
.strategy-item:hover .strategy-line {
    height: 100%;
    transition: 0.4s ease;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .strategy-title {
        font-size: 44px;
    }
}

@media (max-width: 640px) {
    .strategy-items {
        grid-template-columns: 1fr;
    }
}









/* CHARGEBACK SECTION */
.chargeback {
    padding: 140px 0;
    background: #ffffff;
}

.chargeback-title {
    font-size: 60px;
    font-weight: 700;
    color: #0b1f3b;
    max-width: 900px;
    line-height: 1.15;
    margin-bottom: 90px;
}

.chargeback-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.chargeback-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 36px 40px 46px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.chargeback-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.14);
}

.chargeback-accent {
    position: absolute;
    left: 0;
    top: 30px;
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, #d4af37, #f3e2a0);
    border-radius: 10px;
    transition: height 0.4s ease;
}

.chargeback-card:hover .chargeback-accent {
    height: calc(100% - 60px);
}

.chargeback-card h3 {
    font-size: 22px;
    color: #0b1f3b;
    margin-bottom: 14px;
}

.chargeback-card p {
    font-size: 16px;
    color: #6f7f9b;
    line-height: 1.6;
}

/* FEATURED CARD */
.chargeback-card.highlight {
    background: linear-gradient(135deg, #fff7df, #ffffff);
    border: 1px solid rgba(212,175,55,0.35);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .chargeback-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chargeback-title {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .chargeback-grid {
        grid-template-columns: 1fr;
    }

    .chargeback-title {
        font-size: 36px;
    }
}









/* ===== REQUEST SECTION ===== */
.lux-request {
    background: #ffffff;
    padding: 140px 0;
}

.lux-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

/* LEFT */
.lux-left h2 {
    font-size: 56px;
    color: #0c0c0c;
    margin-bottom: 24px;
}

.lux-left p {
    font-size: 18px;
    color: #5c5c5c;
    line-height: 1.7;
    max-width: 480px;
}

.lux-badge {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 28px;
    border-radius: 40px;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-weight: 600;
}

/* FORM */
.lux-form {
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

/* GOLD BORDER */
.lux-form::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        #d4af37,
        transparent 35%,
        transparent 65%,
        #d4af37
    );
    pointer-events: none;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

/* INPUTS */
.lux-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.lux-field {
    display: flex;
    flex-direction: column;
}

.lux-field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0c0c0c;
}

.lux-field input,
.lux-field textarea {
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    font-size: 15px;
    transition: 0.3s ease;
    background: #fff;
}

.lux-field textarea {
    min-height: 140px;
    resize: none;
}

.lux-field input:focus,
.lux-field textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* BUTTON */
.lux-btn {
    margin-top: 30px;
    padding: 18px 36px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d4af37, #f1df9c);
    color: #000;
    font-size: 18px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: 0.4s ease;
}

.lux-btn span {
    transition: transform 0.3s ease;
}

.lux-btn:hover {
    transform: translateY(-2px);
}

.lux-btn:hover span {
    transform: translateX(6px);
}

/* SUCCESS */
.lux-success {
    margin-top: 20px;
    color: #d4af37;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
}

.lux-success.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .lux-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }
}

@media (max-width: 600px) {
    .lux-row {
        grid-template-columns: 1fr;
    }
}







/* TRUST BLOCK */
.trust {
    background: #ffffff;
    padding: 140px 0 160px;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.trust-title {
    font-size: 52px;
    color: #0c0c0c;
    margin-bottom: 18px;
}

.trust-subtitle {
    font-size: 18px;
    color: #5c5c5c;
    max-width: 640px;
    margin: 0 auto 80px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    background: #ffffff;
    padding: 40px 28px;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
}

.trust-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    padding: 1px;
    background: linear-gradient(135deg, #d4af37, transparent 60%);
    pointer-events: none;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.trust-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #0c0c0c;
}

.trust-card p {
    font-size: 15px;
    color: #5c5c5c;
    line-height: 1.6;
}

.trust-card:hover {
    transform: translateY(-8px);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}






/* FOOTER – WHITE & GOLD */
.footer-contact {
    background: #ffffff;
    padding: 120px 0 60px;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.footer-map iframe {
    width: 100%;
    height: 320px;
    border-radius: 26px;
    border: none;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.25);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-item {
    position: relative;
    padding-left: 28px;
}

.footer-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 100%;
    background: linear-gradient(#d4af37, rgba(212,175,55,0.1));
    border-radius: 4px;
}

.footer-label {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-item p,
.footer-item a {
    color: #1c1c1c;
    font-size: 16px;
    line-height: 1.7;
    text-decoration: none;
}

.footer-item a {
    transition: color 0.3s ease;
}

.footer-item a:hover {
    color: #d4af37;
}

/* BOTTOM LINE */
.footer-bottom {
    margin-top: 90px;
    text-align: center;
    font-size: 13px;
    color: #777;
    letter-spacing: 1px;
}

/* GOLD TOP LINE – изюминка */
.footer-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent
    );
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}








.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,0.4),
        transparent
    );
    margin: 30px 0;
}





.section-gold-glow {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.section-gold-glow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -120px;
    transform: translateX(-50%);
    width: 80%;
    height: 260px;
    background: radial-gradient(
        ellipse at center,
        rgba(212,175,55,0.18),
        rgba(212,175,55,0.06),
        transparent 70%
    );
    pointer-events: none;
}
.section-gold-glow-dual {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.section-gold-glow-dual::before,
.section-gold-glow-dual::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 220px;
    pointer-events: none;
}

.section-gold-glow-dual::before {
    top: -120px;
    background: radial-gradient(
        ellipse,
        rgba(212,175,55,0.12),
        transparent 70%
    );
}

.section-gold-glow-dual::after {
    bottom: -120px;
    background: radial-gradient(
        ellipse,
        rgba(212,175,55,0.14),
        transparent 70%
    );
}








/* Subtle gold glow for premium sections */
.section-gold-glow {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.section-gold-glow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -140px;
    transform: translateX(-50%);
    width: 85%;
    height: 300px;
    background: radial-gradient(
        ellipse at center,
        rgba(212,175,55,0.16),
        rgba(212,175,55,0.06),
        transparent 70%
    );
    pointer-events: none;
}



.faq {
    padding: 120px 0;
}

.faq-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(212,175,55,0.35);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.faq-question::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(
        to bottom,
        rgba(212,175,55,0.9),
        rgba(212,175,55,0.2)
    );
    transition: height 0.3s ease;
}

.faq-item.active .faq-question::before {
    height: 60%;
}

.faq-icon {
    font-size: 26px;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-answer p {
    padding-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}



















/* ===============================
   GLOBAL MOBILE FIX (ALL SITE)
   =============================== */

/* 1️⃣ Убираем горизонтальный скролл */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* 2️⃣ Универсальные отступы для секций */
@media (max-width: 768px) {

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

}

/* ===============================
   HERO (главный экран)
   =============================== */

@media (max-width: 768px) {

  .hero {
    padding: 100px 20px 80px;
    text-align: left;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.15;
    word-break: normal;
    hyphens: none;
    max-width: 100%;
  }

  /* ❗ фикс «столбика» */
  .hero-title span {
    display: inline;
  }

  .hero-title .gold {
    display: inline-block;
    font-size: 36px;
    margin-top: 6px;
  }

  .hero-divider,
  .hero-line {
    width: 40px;
    margin: 20px 0;
  }

}

/* ===============================
   TEXT / HEADINGS
   =============================== */

@media (max-width: 768px) {

  h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
  }

}

/* ===============================
   GRID → COLUMN (cards, blocks)
   =============================== */

@media (max-width: 768px) {

  
  .columns,
  .cards,
  .team-grid,
  .features-grid,
  .why-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

}

/* ===============================
   IMAGES
   =============================== */

@media (max-width: 768px) {

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

}

/* ===============================
   FAQ
   =============================== */

@media (max-width: 768px) {

  .faq-item {
    padding: 20px 0;
  }

  .faq-question {
    font-size: 18px;
  }

}

/* ===============================
   FORMS
   =============================== */

@media (max-width: 768px) {

  input,
  textarea,
  select,
  button {
    width: 100%;
    font-size: 16px;
  }

}

/* ===============================
   FINAL CTA
   =============================== */

@media (max-width: 768px) {

  .final-cta {
    padding: 80px 20px;
    text-align: center;
  }

  .final-cta h2 {
    font-size: 32px;
  }

}

/* ===============================
   GOLD GLOW (не агрессивный)
   =============================== */

@media (max-width: 768px) {

  .gold-glow {
    box-shadow: 0 0 30px rgba(200, 160, 60, 0.25);
    border-radius: 24px;
  }

}




/* =========================
   MOBILE FIX (GLOBAL)
   ========================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1, h2, h3 {
    line-height: 1.25;
  }

}

/* =========================
   HERO (если есть)
   ========================= */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}





/* =========================
   TEAM SECTION
   ========================= */
@media (max-width: 768px) {

  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

}

/* =========================
   FAQ
   ========================= */
@media (max-width: 768px) {

  .faq-item {
    padding: 16px 0;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

}

/* =========================
   FINAL CTA
   ========================= */
@media (max-width: 768px) {

  .final-cta {
    padding: 60px 20px;
    text-align: center;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta button {
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
  }

}
/* ===== FIX: About cards mobile ===== */
@media (max-width: 768px) {

  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .about-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

}


/* ===== HARD FIX: Testimonials overflow ===== */
.testimonials-wide,
.testimonials-wide * {
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}
/* ===== FIX: Testimonials mobile layout ===== */
@media (max-width: 768px) {

  .testimonial-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .testimonial-text-block {
    width: 100%;
    padding: 0 20px;
    text-align: left;
  }

  .testimonial-nav,
  .testimonial-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    width: 100%;
  }

}
@media (max-width: 768px) {

  .testimonial-nav {
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 20px;
  }

}


@media (max-width: 768px) {

  .testimonials-wide .container.wide {
    max-width: 100%;
    padding: 0 16px;
  }

  .testimonial-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .testimonial-content {
    text-align: center;
  }

  .testimonial-text-block {
    margin: 0 auto;
  }

  .testimonial-controls {
    justify-content: center;
  }

  .testimonial-decor {
    display: none; /* ← важно */
  }
}



@media (max-width: 768px) {

  /* полностью убираем блок с картинкой */
  .hero-image {
    display: none !important;
  }

  /* делаем текст на всю ширину */
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-right: 0;
  }

  .hero-content {
    max-width: 100%;
  }
}








/* =========================
   FOOTER SECTION
========================= */

.footer-section {
  position: relative;
  background: #ffffff;
  padding: 90px 0 40px;
  overflow: hidden;
}

/* GOLD GLOW */
.footer-section::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 120px;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.35),
    rgba(212, 175, 55, 0)
  );
  filter: blur(40px);
  pointer-events: none;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 80px;
}

/* BRAND */
.footer-logo {
  font-size: 30px;
  font-weight: 700;
  color: #0c1f3f;
  margin-bottom: 24px;
}

.footer-logo span {
  color: #d4af37;
}

.footer-address,
.footer-contacts {
  font-size: 15px;
  line-height: 1.7;
  color: #2c3e60;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h4 {
  font-size: 16px;
  color: #0c1f3f;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: #d4af37;
  margin-top: 8px;
}

.footer-col a {
  display: inline-block;
  margin-bottom: 12px;
  color: #2c3e60;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

/* GOLD HOVER */
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #d4af37;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.footer-col a:hover {
  color: #d4af37;
}

.footer-col a:hover::after {
  transform: scaleX(1);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 70px;
  text-align: center;
  font-size: 14px;
  color: #7a7a7a;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}







/* =========================
   CTA SECTION
========================= */
.cta-section {
  text-align: center;
  background: #ffffff;
  padding: 40px 20px;
  margin-top: 80px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-text {
  font-size: 24px;
  color: #0c1f3f;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #d4af37; /* Gold */
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10px;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 24px rgba(212, 175, 55, 0.5);
}

.cta-subtext {
  font-size: 16px;
  color: #2c3e60;
  margin-top: 10px;
  opacity: 0.8;
}

.cta-button::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: #d4af37; /* Gold */
  transition: width 0.3s ease;
}

.cta-button:hover::after {
  width: 100%;
}








