

:root {
    
    --bg-primary:    #0b0b0b;
    --bg-secondary:  #141414;
    --bg-card:       #1a1a1a;
    --bg-dark:       #000000;
    --bg-dark-card:  #111111;

    
    --r14ke:      #c9a84c;
    --r15ix:      #e8d5a3;
    --r16b5:      #8b7434;

    --r1is: linear-gradient(135deg, var(--r16b5), var(--r14ke), var(--r15ix));
    --r1is-hover: linear-gradient(135deg, var(--r15ix), var(--r14ke), var(--r16b5));
    --accent-soft:   rgba(201,168,76,.10);

    
    --text-heading:  #f5f0e8;
    --text-primary:  #f5f0e8;
    --text-body:     #a8a099;
    --text-secondary: #a8a099;
    --text-muted:    #6d665d;
    --text-on-accent:#0b0b0b;
    --footer-dark-bg: #000000;

    
    --r3f1:  'Playfair Display', 'Didot', 'Times New Roman', serif;
    --r5hr:     'Cormorant Garamond', 'Garamond', serif;
    --font-mono:     'JetBrains Mono', monospace;

    
    --border-color:  rgba(201,168,76,.15);
    --border-light:  rgba(255,255,255,.05);
    --r6mo:     2px;
    --r7ew:     4px;
    --r8ck:     6px;
    --r9a8:     8px;
    --radius-full:   9999px;

    
    --r10ru:     0 1px 4px rgba(0,0,0,.30);
    --r11g2:     0 6px 24px rgba(0,0,0,.40);
    --r12fz:     0 16px 48px rgba(0,0,0,.50);
    --shadow-accent: 0 8px 32px rgba(201,168,76,.12);

    
    --transition:    .45s cubic-bezier(.25,.46,.45,.94);
    --transition-slow: .7s cubic-bezier(.25,.46,.45,.94);

    
    --css_wiidr: 120px 0;
    --header-height:   80px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--r5hr);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-body);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--r14ke); transition: var(--transition); }
a:hover { color: var(--r15ix); }

::selection {
    background: var(--r14ke);
    color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--r3f1);
    color: var(--text-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: .01em;
}

h1 { font-size: 66px; font-weight: 400; font-style: italic; }
h2 { font-size: 48px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 17px; font-weight: 600; }

p { margin-bottom: 1rem; }

.text-gradient {
    background: var(--r1is);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-stroke {
    -webkit-text-stroke: 1px var(--r14ke);
    -webkit-text-fill-color: transparent;
}

.css_wiidr { padding: var(--css_wiidr); }
.css_wiidr-sm { padding: 60px 0; }

.css_yma24 { background-color: var(--bg-primary) !important; }
.css_ytwg0 { background-color: var(--bg-secondary) !important; }
.bg-dark-custom, .css_w8tem { background-color: var(--bg-dark) !important; color: var(--text-heading); }
.bg-dark-custom h1, .bg-dark-custom h2, .bg-dark-custom h3,
.bg-dark-custom h4, .bg-dark-custom h5, .bg-dark-custom h6,
.css_w8tem h1, .css_w8tem h2, .css_w8tem h3,
.css_w8tem h4, .css_w8tem h5, .css_w8tem h6 { color: var(--text-heading); }
.bg-dark-custom p, .bg-dark-custom li,
.css_w8tem p, .css_w8tem li { color: var(--text-body); }
.css_w8tem a:not(.css_hcy23) { color: rgba(255,255,255,0.8); }
.bg-accent-custom, .bg-gradient-custom {
    background: var(--r1is) !important;
    color: var(--text-on-accent);
}
.bg-accent-custom h1, .bg-accent-custom h2, .bg-accent-custom h3,
.bg-accent-custom h4, .bg-accent-custom h5, .bg-accent-custom h6,
.bg-gradient-custom h1, .bg-gradient-custom h2, .bg-gradient-custom h3,
.bg-gradient-custom h4, .bg-gradient-custom h5, .bg-gradient-custom h6 { color: var(--text-on-accent); }
.bg-gradient-custom p, .bg-gradient-custom li,
.bg-gradient-custom span { color: rgba(255,255,255,0.85); }
.bg-gradient-custom a:not(.css_hcy23) { color: #fff; }

.mb-6 { margin-bottom: 4rem !important; }
.mt-6 { margin-top: 4rem !important; }
.pt-6 { padding-top: 4rem !important; }
.pb-6 { padding-bottom: 4rem !important; }
.gap-30 { gap: 30px; }
.gap-24 { gap: 24px; }

.serial-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--r14ke);
    opacity: .25;
    position: absolute;
    bottom: 20px; right: 20px;
}

.line-divider {
    height: 1px;
    background: var(--border-color);
    border: none; margin: 0;
}
.line-divider.accent {
    height: 1px;
    background: var(--r1is);
}

.css_a6hty {
    position: fixed; inset: 0;
    z-index: 99999;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s, visibility .7s;
}
.css_a6hty.loaded { opacity: 0; visibility: hidden; }

.css_gx4lj { display: flex; gap: 12px; }

.css_or4xe {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--r14ke);
    animation: luxPulse 1.2s ease-in-out infinite;
}
.css_or4xe:nth-child(2) { animation-delay: .2s; }
.css_or4xe:nth-child(3) { animation-delay: .4s; }

@keyframes luxPulse {
    0%, 100% { opacity: .2; transform: scale(.8); }
    50%      { opacity: 1;  transform: scale(1.2); }
}

.css_o78v7 {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 0 56px;
    height: var(--header-height);
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    transition: var(--transition);
}
.css_o78v7.scrolled {
    background: rgba(11,11,11,.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.css_pyk7w {
    width: 100%; max-width: 1280px;
    display: flex; align-items: center; justify-content: space-between;
}

.css_tveci {
    font-family: var(--r3f1);
    font-size: 26px; font-weight: 400; font-style: italic;
    color: var(--text-heading);
    letter-spacing: .04em;
    display: flex; align-items: center; gap: 12px;
}
.css_tveci img { height: 38px; width: auto; }
.css_tveci:hover { color: var(--r14ke); }

.css_bzzw4,
.css_uueou { display: flex; align-items: center; }

.css_a7qrl {
    display: flex; align-items: center; gap: 40px;
    list-style: none; margin: 0; padding: 0;
}
.nav-link {
    font-family: var(--r5hr);
    font-size: 15px; font-weight: 500;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute; left: 50%; bottom: -3px;
    width: 0; height: 1px;
    background: var(--r14ke);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active { color: var(--r14ke); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.css_v9f38 .css_hcy23 { padding: 10px 28px; font-size: 13px; }

.css_uh1qx {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px;
    position: relative;
    z-index: 1051;
}
.css_uh1qx span {
    display: block; width: 26px; height: 1px;
    background: var(--text-heading);
    position: absolute; left: 5px;
    transition: var(--transition);
}
.css_uh1qx span:nth-child(1) { top: 10px; }
.css_uh1qx span:nth-child(2) { top: 17px; width: 18px; }
.css_uh1qx span:nth-child(3) { top: 24px; }
.css_uh1qx.active span:nth-child(1) { top: 17px; transform: rotate(45deg); width: 26px; }
.css_uh1qx.active span:nth-child(2) { opacity: 0; }
.css_uh1qx.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); width: 26px; }

.css_hcy23 {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 40px;
    font-family: var(--r5hr);
    font-size: 14px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    border-radius: var(--r6mo);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}
.css_hcy23 i { font-size: 12px; }

.css_oc64v {
    background: var(--r14ke);
    color: var(--text-on-accent);
    border-color: var(--r14ke);
}
.css_oc64v:hover {
    background: transparent;
    color: var(--r14ke);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.css_vlk2v {
    background: transparent;
    color: var(--r14ke);
    border-color: var(--r14ke);
}
.css_vlk2v:hover {
    background: var(--r14ke);
    color: var(--text-on-accent);
    transform: translateY(-2px);
}

.btn-link-custom {
    background: none; border: none; padding: 0;
    color: var(--r14ke);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    gap: 8px;
}
.btn-link-custom:hover { gap: 14px; color: var(--r15ix); }
.btn-link-custom i { transition: var(--transition); }

.css_vij1w {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}
.css_eo5e2 {
    display: inline-block;
    font-family: var(--r5hr);
    font-size: 12px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--r14ke);
    margin-bottom: 20px;
}
.css_ywk3o {
    font-size: 48px; font-weight: 400;
    line-height: 1.12;
    margin-bottom: 20px;
}
.css_f57an {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.css_t2lsn {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
}
.css_uipj4 {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(11,11,11,.85) 0%,
        rgba(11,11,11,.70) 50%,
        rgba(11,11,11,.92) 100%);
    z-index: 1;
}
.css_t2lsn .container { position: relative; z-index: 2; }

.css_g83lk {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--r5hr);
    font-size: 13px; font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--r14ke);
    margin-bottom: 30px;
}
.css_g83lk span {
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--r14ke);
}

.css_ncuq6 {
    font-size: 72px; font-weight: 400;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: .01em;
    margin-bottom: 28px;
    max-width: 780px;
    color: var(--text-heading);
}
.css_lzsvx {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 44px;
}
.css_zazdt { display: flex; gap: 18px; flex-wrap: wrap; }

.css_peorz {
    position: relative;
    overflow: hidden;
}
.css_peorz img {
    width: 100%; height: auto;
    display: block;
    filter: contrast(1.05) brightness(.95);
}

.hero-shape {
    position: absolute;
    pointer-events: none; z-index: 0;
}
.hero-shape.shape-1 {
    width: 1px; height: 200px;
    background: linear-gradient(to bottom, transparent, var(--r14ke), transparent);
    top: 10%; right: 10%;
    opacity: .3;
}
.hero-shape.shape-2 {
    width: 200px; height: 1px;
    background: linear-gradient(to right, transparent, var(--r14ke), transparent);
    bottom: 20%; left: 5%;
    opacity: .3;
}

.css_qr30j {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--r6mo);
    padding: 44px 34px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.css_qr30j::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 1px;
    background: var(--r14ke);
    transition: var(--transition);
}
.css_qr30j:hover {
    border-color: var(--r14ke);
}
.css_qr30j:hover::before { width: 100%; }

.css_znjwp {
    width: 60px; height: 60px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 22px;
    color: var(--r14ke);
    transition: var(--transition);
}
.css_qr30j:hover .css_znjwp {
    background: var(--r14ke);
    color: var(--text-on-accent);
    border-color: var(--r14ke);
}
.css_xudvi {
    font-family: var(--r3f1);
    font-size: 22px; font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-heading);
}
.css_bai4k {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.css_qr30j-horizontal {
    display: flex; gap: 24px;
    text-align: left;
}
.css_qr30j-horizontal .css_znjwp { margin: 0; flex-shrink: 0; }

.about-image {
    position: relative;
    overflow: hidden;
}
.about-image img {
    width: 100%; display: block;
    filter: contrast(1.05) brightness(.93);
}

.experience-badge {
    position: absolute; bottom: 28px; left: 28px;
    background: rgba(11,11,11,.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 22px 28px;
    display: flex; align-items: center; gap: 16px;
}
.experience-badge .number {
    font-family: var(--r3f1);
    font-size: 48px; font-weight: 400;
    color: var(--r14ke);
    line-height: 1;
}
.experience-badge .label {
    font-size: 13px; font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.about-list {
    list-style: none; padding: 0; margin: 28px 0 0;
}
.about-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i {
    color: var(--r14ke);
    font-size: 14px;
    margin-top: 5px;
}

.css_ob25a {
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.counter-item {
    text-align: center;
    padding: 36px 20px;
    position: relative;
}
.counter-item:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 25%; height: 50%;
    width: 1px;
    background: var(--border-color);
}
.css_si7p3 {
    font-family: var(--r3f1);
    font-size: 56px; font-weight: 400;
    color: var(--r14ke);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: .02em;
}
.css_dqm1r {
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .18em;
}

.css_m49lf {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--r6mo);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.css_m49lf:hover {
    border-color: var(--r14ke);
}
.css_m49lf .css_sofsa {
    height: 240px; overflow: hidden;
}
.css_m49lf .css_sofsa img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3) contrast(1.05);
    transition: var(--transition-slow);
}
.css_m49lf:hover .css_sofsa img {
    filter: grayscale(0) contrast(1.05);
    transform: scale(1.04);
}

.card-tag {
    display: inline-block;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--r14ke);
    border: 1px solid var(--r14ke);
    padding: 4px 14px;
    margin-bottom: 14px;
}
.css_m49lf .card-body {
    padding: 32px; flex: 1;
    display: flex; flex-direction: column;
}
.css_m49lf .card-title {
    font-family: var(--r3f1);
    font-size: 22px; font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-heading);
}
.css_m49lf .card-text {
    font-size: 16px; color: var(--text-muted);
    line-height: 1.7; flex: 1;
}
.card-footer-custom {
    padding: 20px 32px;
    border-top: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: space-between;
}
.card-price {
    font-family: var(--r3f1);
    font-size: 22px; font-weight: 400;
    color: var(--r14ke);
}

.css_gqvwz {
    text-align: center;
    transition: var(--transition);
}
.css_e3ixn {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 0;
}
.css_e3ixn img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.4);
    transition: var(--transition-slow);
}
.css_gqvwz:hover .css_e3ixn img {
    filter: grayscale(0);
    transform: scale(1.03);
}

.team-social {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
    display: flex; align-items: center; justify-content: center; gap: 14px;
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.css_gqvwz:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}
.team-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}
.team-social a:hover {
    background: var(--r14ke);
    border-color: var(--r14ke);
    color: var(--text-on-accent);
}

.css_a4d99 {
    font-family: var(--r3f1);
    font-size: 20px; font-weight: 400;
    margin: 22px 0 4px;
    color: var(--text-heading);
}
.css_q4e1h {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    padding-bottom: 20px;
}

.css_jnfo4 {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--r6mo);
    padding: 44px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.css_jnfo4:hover {
    border-color: var(--r14ke);
}

.quote-icon {
    font-size: 32px;
    color: var(--r14ke);
    opacity: .3;
    margin-bottom: 20px;
}
.css_r55a2 {
    font-family: var(--r3f1);
    font-size: 20px;
    color: var(--text-heading);
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 28px;
}
.stars {
    color: var(--r14ke);
    font-size: 13px;
    margin-bottom: 18px;
    display: flex; gap: 4px;
}
.author {
    display: flex; align-items: center; gap: 16px;
}
.css_dkn2a {
    width: 50px; height: 50px;
    border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--border-color);
}
.css_dkn2a img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); }
.css_c4r32 {
    font-family: var(--r3f1);
    font-size: 16px; font-weight: 400;
    color: var(--text-heading);
}
.css_pcbc8 {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.4) contrast(1.05);
    transition: var(--transition-slow);
}
.portfolio-item:hover img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.portfolio-overlay { color: #fff;
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.80) 0%, transparent 50%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--r14ke);
    margin-bottom: 8px;
}
.portfolio-title {
    font-family: var(--r3f1);
    font-size: 22px; font-weight: 400;
    color: #fff;
    font-style: italic;
}
.portfolio-overlay .serial-badge { color: rgba(255,255,255,0.85); -webkit-text-stroke: 0; font-size: inherit; opacity: 1; position: static; background: rgba(255,255,255,0.15); border-radius: 6px; display: inline-block; padding: 4px 12px; }

.faq-section .accordion-item {
    background: transparent;
    border: none !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-radius: 0 !important;
}
.faq-section .accordion-button {
    font-family: var(--r3f1);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    background: transparent;
    padding: 26px 0;
    box-shadow: none !important;
    border-radius: 0;
}
.faq-section .accordion-button:not(.collapsed) {
    color: var(--r14ke);
    background: transparent;
}
.faq-section .accordion-button::after {
    background-image: none;
    content: '+';
    font-family: var(--r3f1);
    font-size: 28px; font-weight: 300;
    color: var(--r14ke);
    transition: var(--transition);
    line-height: 1;
}
.faq-section .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}
.faq-section .accordion-body {
    padding: 0 0 28px;
    font-size: 16px; color: var(--text-muted);
    line-height: 1.8;
}

.css_ks9gi {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--r6mo);
    padding: 48px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.css_ks9gi:hover {
    border-color: var(--r14ke);
}
.css_ks9gi.featured {
    border-color: var(--r14ke);
}
.css_ks9gi.featured::before {
    content: 'Популярный';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
    background: var(--r14ke);
    color: var(--text-on-accent);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    padding: 6px 22px;
}
.css_ig6rr {
    font-family: var(--r3f1);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 10px;
}
.css_c6j6z {
    font-family: var(--r3f1);
    font-size: 58px; font-weight: 400;
    color: var(--r14ke);
    line-height: 1.1;
}
.plan-period {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.css_egvv0 {
    list-style: none; padding: 0;
    margin-bottom: 36px;
    text-align: left;
}
.css_egvv0 li {
    padding: 12px 0;
    font-size: 15px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-body);
}
.css_egvv0 li i {
    color: var(--r14ke);
    font-size: 14px;
}

.css_x577z {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--r6mo);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.css_x577z:hover {
    border-color: var(--r14ke);
}
.css_x577z .css_sofsa {
    height: 240px; overflow: hidden;
}
.css_x577z .css_sofsa img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3);
    transition: var(--transition-slow);
}
.css_x577z:hover .css_sofsa img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.css_x577z .card-body { padding: 30px; }
.css_x577z .css_qc91c {
    display: flex; gap: 18px;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
}
.css_x577z .css_qc91c i { margin-right: 6px; color: var(--r14ke); }
.css_x577z .card-title {
    font-family: var(--r3f1);
    font-size: 22px; font-weight: 400;
    line-height: 1.3;
    color: var(--text-heading);
}
.css_x577z .card-title:hover { color: var(--r14ke); }

.css_f3m37 {
    position: relative;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    padding: 100px 40px;
    text-align: center;
}
.css_f3m37 .container { position: relative; z-index: 2; }
.css_htnr4 {
    font-family: var(--r3f1);
    font-size: 44px; font-weight: 400;
    color: var(--text-heading);
    font-style: italic;
    margin-bottom: 20px;
}
.css_kwqqe {
    font-size: 18px; color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px; margin-left: auto; margin-right: auto;
}

.cta-shape {
    position: absolute;
    pointer-events: none;
}
.cta-shape.shape-1 {
    width: 300px; height: 1px;
    background: linear-gradient(to right, transparent, var(--r14ke), transparent);
    top: 40%; right: 0;
    opacity: .15;
}
.cta-shape.shape-2 {
    width: 1px; height: 200px;
    background: linear-gradient(to bottom, transparent, var(--r14ke), transparent);
    bottom: 0; left: 20%;
    opacity: .15;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.css_o788p {
    width: 56px; height: 56px;
    border: 1px solid var(--r14ke);
    border-radius: 50%;
    color: var(--r14ke);
    font-family: var(--r3f1);
    font-size: 22px; font-weight: 400;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    position: relative; z-index: 2;
    transition: var(--transition);
}
.process-item:hover .css_o788p {
    background: var(--r14ke);
    color: var(--text-on-accent);
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute; top: 28px;
    left: calc(50% + 36px); right: calc(-50% + 36px);
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.css_cax5n {
    font-family: var(--r3f1);
    font-size: 20px; font-weight: 400;
    margin-bottom: 10px;
    color: var(--text-heading);
}
.step-text {
    font-size: 15px; color: var(--text-muted);
    line-height: 1.7;
}

.newsletter-form {
    display: flex; gap: 14px;
    max-width: 480px;
}
.newsletter-form .form-control {
    flex: 1;
    padding: 14px 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--r6mo);
    font-size: 15px;
    background: var(--bg-card);
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--r5hr);
}
.newsletter-form .form-control:focus {
    border-color: var(--r14ke);
    box-shadow: none;
    outline: none;
}

.css_i0pbg .form-control,
.css_i0pbg .form-select {
    padding: 14px 22px;
    border: 1px solid var(--border-color);
    border-radius: var(--r6mo);
    font-size: 15px;
    background: var(--bg-card);
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--r5hr);
}
.css_i0pbg .form-control:focus,
.css_i0pbg .form-select:focus {
    border-color: var(--r14ke);
    box-shadow: none;
    outline: none;
}
.css_i0pbg textarea.form-control { min-height: 150px; resize: vertical; }
.css_i0pbg .form-label {
    font-size: 12px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px;
}

.marquee-section {
    overflow: hidden;
    padding: 44px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.marquee-track {
    display: flex; align-items: center;
    gap: 56px;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    font-family: var(--r3f1);
    font-size: 64px; font-weight: 400;
    font-style: italic;
    color: var(--text-heading);
    white-space: nowrap;
    opacity: .08;
}
.marquee-item.stroke {
    -webkit-text-stroke: 1px var(--r14ke);
    -webkit-text-fill-color: transparent;
    opacity: .15;
}
.marquee-item .separator {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--r14ke);
    border-radius: 50%;
    margin: 0 28px;
    vertical-align: middle;
    opacity: .4;
}

.css_kgwuo {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 90px 0 0;
    border-top: 1px solid var(--border-color);
}

.css_c4a8f { margin-bottom: 40px; }
.css_flwno {
    font-family: var(--r3f1);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 16px;
}
.css_flwno::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 30px; height: 1px;
    background: var(--r14ke);
}
.footer-about {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.css_h9t7g {
    list-style: none; padding: 0; margin: 0;
}
.css_h9t7g li { margin-bottom: 14px; }
.css_h9t7g a {
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: .04em;
}
.css_h9t7g a:hover {
    color: var(--r14ke);
}
.footer-contact li {
    display: flex; gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
}
.footer-contact i {
    color: var(--r14ke);
    font-size: 14px;
    margin-top: 5px;
}

.css_q6lee {
    display: flex; gap: 12px;
    margin-top: 20px;
}
.css_q6lee a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition);
}
.css_q6lee a:hover {
    background: var(--r14ke);
    border-color: var(--r14ke);
    color: var(--text-on-accent);
}

.css_zn5mh {
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    padding: 28px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
}
.css_zn5mh p { margin: 0; font-size: 13px; color: var(--text-muted); letter-spacing: .06em; }
.footer-policy {
    display: flex; gap: 24px; flex-wrap: wrap;
}
.footer-policy a {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: .06em;
}
.footer-policy a:hover { color: var(--r14ke); }

.policy-content {
    padding: 130px 0 90px;
}
.policy-content h1 {
    font-size: 44px; font-weight: 400;
    font-style: italic;
    margin-bottom: 14px;
    color: var(--text-heading);
}
.policy-content h2 {
    font-size: 26px; font-weight: 400;
    margin-top: 44px;
    margin-bottom: 16px;
    color: var(--text-heading);
}
.policy-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 18px;
}
.policy-content ul {
    padding-left: 22px;
    margin-bottom: 18px;
}
.policy-content ul li {
    margin-bottom: 10px;
    color: var(--text-body);
    line-height: 1.8;
}
.policy-content a {
    color: var(--r14ke);
    text-decoration: underline;
}
.policy-content strong { color: var(--text-heading); }

.css_pl5np {
    position: fixed; bottom: 32px; right: 32px;
    width: 46px; height: 46px;
    border: 1px solid var(--r14ke);
    background: transparent;
    color: var(--r14ke);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}
.css_pl5np.visible {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.css_pl5np:hover {
    background: var(--r14ke);
    color: var(--text-on-accent);
}

.nav-pills .nav-link {
    border-radius: 0;
    color: var(--text-muted);
    font-weight: 600;
    padding: 10px 28px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .14em;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: transparent;
    color: var(--r14ke);
    border-bottom-color: var(--r14ke);
}

.swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: var(--text-muted);
    opacity: .3;
    border-radius: 0;
    transition: var(--transition);
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--r14ke);
    width: 24px;
}
.swiper-button-prev,
.swiper-button-next {
    width: 48px; height: 48px;
    border: 1px solid var(--border-color);
    background: transparent;
    transition: var(--transition);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    color: var(--text-heading);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    border-color: var(--r14ke);
    background: var(--r14ke);
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after { color: var(--text-on-accent); }

.wow-ready .wow { visibility: hidden; }
.wow.animated { visibility: visible; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.delay-6 { animation-delay: .6s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes floatLeftRight {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(12px); }
}

@media (max-width: 1200px) {
    h1, .css_ncuq6 { font-size: 52px; }
    h2, .css_ywk3o { font-size: 38px; }
}

@media (max-width: 992px) {
    .css_uh1qx { display: flex; align-items: center; justify-content: center; }

    .css_a7qrl {
        position: fixed; top: 0; right: -100%;
        width: min(320px, 85vw); height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 110px 36px 40px;
        gap: 0;
        border-left: 1px solid var(--border-color);
        transition: right .5s cubic-bezier(.25,.46,.45,.94);
        z-index: 1050;
        overflow-y: auto;
    }
    .css_a7qrl.active { right: 0; }
    .css_a7qrl .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .css_bzzw4, .css_uueou {
        flex-direction: column; width: 100%;
    }

    .css_y85ga {
        display: none;
        position: fixed; inset: 0;
        background: rgba(0,0,0,.65);
        z-index: 1049;
    }
    .css_y85ga.active { display: block; }

    .css_v9f38 { display: none; }
    .css_o78v7 { padding: 0 24px; }
}

@media (max-width: 768px) {
    h1, .css_ncuq6 { font-size: 40px; }
    h2, .css_ywk3o { font-size: 30px; }
    .css_wiidr { padding: 80px 0; }
    .css_t2lsn { min-height: auto; padding: 130px 0 80px; }
    .css_f3m37 { padding: 70px 24px; }
    .css_htnr4 { font-size: 32px; }
    .css_si7p3 { font-size: 42px; }
    .counter-item:not(:last-child)::after { display: none; }
    .css_zn5mh { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    h1, .css_ncuq6 { font-size: 32px; }
    h2, .css_ywk3o { font-size: 26px; }
    .css_wiidr { padding: 64px 0; }
    .css_zazdt { flex-direction: column; }
    .css_hcy23 { width: 100%; justify-content: center; }
    .css_c6j6z { font-size: 42px; }
    .marquee-item { font-size: 44px; }
}

.css_w8tem .css_g83lk { color: #fff; }
.css_w8tem .css_eo5e2 { color: var(--r14ke); }
.css_w8tem .css_novyn { color: rgba(255,255,255,0.55); }
.css_w8tem .css_h9t7g a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.css_w8tem .css_h9t7g a:hover { color: #fff; }

.text-force-light { color: #fff !important; }
.text-force-light-muted { color: rgba(255,255,255,0.7) !important; }
.text-force-light-soft { color: rgba(255,255,255,0.55) !important; }
.text-force-accent { color: var(--r14ke) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }

.css_o78v7:not(.scrolled) .css_tveci,
.css_o78v7:not(.scrolled) .nav-link {
    color: #fff !important;
}
.css_o78v7:not(.scrolled) .nav-link:hover {
    color: #fff !important;
    opacity: 0.85;
}
.css_o78v7:not(.scrolled) .css_vlk2v {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
}
.css_o78v7:not(.scrolled) .css_vlk2v:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border-color: #fff !important;
}

.css_o78v7.scrolled .css_tveci,
.css_o78v7.scrolled .nav-link {
    color: var(--text-primary) !important;
}
.css_o78v7.scrolled .nav-link:hover {
    color: var(--r14ke) !important;
    opacity: 1;
}
.css_o78v7.scrolled .css_vlk2v {
    color: var(--text-primary) !important;
    border-color: var(--text-primary) !important;
    background: transparent !important;
}
.css_o78v7.scrolled .css_vlk2v:hover {
    background: var(--text-primary) !important;
    color: var(--bg-primary, #fff) !important;
    border-color: var(--text-primary) !important;
}

