

:root {
    
    --bg-primary:    #0b0b0b;
    --bg-secondary:  #141414;
    --bg-card:       #1a1a1a;
    --bg-dark:       #000000;
    --bg-dark-card:  #111111;

    
    --i14iq:      #c9a84c;
    --i15wm:      #e8d5a3;
    --i16j9:      #8b7434;

    --i186: linear-gradient(135deg, var(--i16j9), var(--i14iq), var(--i15wm));
    --i186-hover: linear-gradient(135deg, var(--i15wm), var(--i14iq), var(--i16j9));
    --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;

    
    --i3gi:  'Playfair Display', 'Didot', 'Times New Roman', serif;
    --i5b9:     'Cormorant Garamond', 'Garamond', serif;
    --font-mono:     'JetBrains Mono', monospace;

    
    --border-color:  rgba(201,168,76,.15);
    --border-light:  rgba(255,255,255,.05);
    --i62i:     2px;
    --i7kb:     4px;
    --i8fp:     6px;
    --i97a:     8px;
    --radius-full:   9999px;

    
    --i10kz:     0 1px 4px rgba(0,0,0,.30);
    --i117t:     0 6px 24px rgba(0,0,0,.40);
    --i12eq:     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_8xsxr: 120px 0;
    --header-height:   80px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--i5b9);
    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(--i14iq); transition: var(--transition); }
a:hover { color: var(--i15wm); }

::selection {
    background: var(--i14iq);
    color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--i3gi);
    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(--i186);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-stroke {
    -webkit-text-stroke: 1px var(--i14iq);
    -webkit-text-fill-color: transparent;
}

.css_8xsxr { padding: var(--css_8xsxr); }
.css_8xsxr-sm { padding: 60px 0; }

.css_igj0t { background-color: var(--bg-primary) !important; }
.css_uv6sg { background-color: var(--bg-secondary) !important; }
.bg-dark-custom, .css_9wele { 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_9wele h1, .css_9wele h2, .css_9wele h3,
.css_9wele h4, .css_9wele h5, .css_9wele h6 { color: var(--text-heading); }
.bg-dark-custom p, .bg-dark-custom li,
.css_9wele p, .css_9wele li { color: var(--text-body); }
.css_9wele a:not(.css_6kupj) { color: rgba(255,255,255,0.8); }
.bg-accent-custom, .bg-gradient-custom {
    background: var(--i186) !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_6kupj) { 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(--i14iq);
    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(--i186);
}

.css_8feqn {
    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_8feqn.loaded { opacity: 0; visibility: hidden; }

.css_daomo { display: flex; gap: 12px; }

.css_zujxb {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--i14iq);
    animation: luxPulse 1.2s ease-in-out infinite;
}
.css_zujxb:nth-child(2) { animation-delay: .2s; }
.css_zujxb:nth-child(3) { animation-delay: .4s; }

@keyframes luxPulse {
    0%, 100% { opacity: .2; transform: scale(.8); }
    50%      { opacity: 1;  transform: scale(1.2); }
}

.css_01ovb {
    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_01ovb.scrolled {
    background: rgba(11,11,11,.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.css_0b1mf {
    width: 100%; max-width: 1280px;
    display: flex; align-items: center; justify-content: space-between;
}

.css_qt7pm {
    font-family: var(--i3gi);
    font-size: 26px; font-weight: 400; font-style: italic;
    color: var(--text-heading);
    letter-spacing: .04em;
    display: flex; align-items: center; gap: 12px;
}
.css_qt7pm img { height: 38px; width: auto; }
.css_qt7pm:hover { color: var(--i14iq); }

.css_nk6qo,
.css_ykkk4 { display: flex; align-items: center; }

.css_xei7d {
    display: flex; align-items: center; gap: 40px;
    list-style: none; margin: 0; padding: 0;
}
.nav-link {
    font-family: var(--i5b9);
    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(--i14iq);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active { color: var(--i14iq); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.css_supfm .css_6kupj { padding: 10px 28px; font-size: 13px; }

.css_2yqwf {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px;
    position: relative;
    z-index: 1051;
}
.css_2yqwf span {
    display: block; width: 26px; height: 1px;
    background: var(--text-heading);
    position: absolute; left: 5px;
    transition: var(--transition);
}
.css_2yqwf span:nth-child(1) { top: 10px; }
.css_2yqwf span:nth-child(2) { top: 17px; width: 18px; }
.css_2yqwf span:nth-child(3) { top: 24px; }
.css_2yqwf.active span:nth-child(1) { top: 17px; transform: rotate(45deg); width: 26px; }
.css_2yqwf.active span:nth-child(2) { opacity: 0; }
.css_2yqwf.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); width: 26px; }

.css_6kupj {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 40px;
    font-family: var(--i5b9);
    font-size: 14px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    border-radius: var(--i62i);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}
.css_6kupj i { font-size: 12px; }

.css_09544 {
    background: var(--i14iq);
    color: var(--text-on-accent);
    border-color: var(--i14iq);
}
.css_09544:hover {
    background: transparent;
    color: var(--i14iq);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.css_zr3bb {
    background: transparent;
    color: var(--i14iq);
    border-color: var(--i14iq);
}
.css_zr3bb:hover {
    background: var(--i14iq);
    color: var(--text-on-accent);
    transform: translateY(-2px);
}

.btn-link-custom {
    background: none; border: none; padding: 0;
    color: var(--i14iq);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    gap: 8px;
}
.btn-link-custom:hover { gap: 14px; color: var(--i15wm); }
.btn-link-custom i { transition: var(--transition); }

.css_3xxt4 {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}
.css_ckhmx {
    display: inline-block;
    font-family: var(--i5b9);
    font-size: 12px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--i14iq);
    margin-bottom: 20px;
}
.css_b14eo {
    font-size: 48px; font-weight: 400;
    line-height: 1.12;
    margin-bottom: 20px;
}
.css_c1738 {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.css_hp32h {
    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_vy24o {
    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_hp32h .container { position: relative; z-index: 2; }

.css_v7fwq {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--i5b9);
    font-size: 13px; font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--i14iq);
    margin-bottom: 30px;
}
.css_v7fwq span {
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--i14iq);
}

.css_vvbjg {
    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_tm6qz {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 44px;
}
.css_vtic1 { display: flex; gap: 18px; flex-wrap: wrap; }

.css_atoff {
    position: relative;
    overflow: hidden;
}
.css_atoff 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(--i14iq), transparent);
    top: 10%; right: 10%;
    opacity: .3;
}
.hero-shape.shape-2 {
    width: 200px; height: 1px;
    background: linear-gradient(to right, transparent, var(--i14iq), transparent);
    bottom: 20%; left: 5%;
    opacity: .3;
}

.css_2j3rb {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--i62i);
    padding: 44px 34px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.css_2j3rb::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 1px;
    background: var(--i14iq);
    transition: var(--transition);
}
.css_2j3rb:hover {
    border-color: var(--i14iq);
}
.css_2j3rb:hover::before { width: 100%; }

.css_ch66x {
    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(--i14iq);
    transition: var(--transition);
}
.css_2j3rb:hover .css_ch66x {
    background: var(--i14iq);
    color: var(--text-on-accent);
    border-color: var(--i14iq);
}
.css_l0nxw {
    font-family: var(--i3gi);
    font-size: 22px; font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-heading);
}
.css_v2chm {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.css_2j3rb-horizontal {
    display: flex; gap: 24px;
    text-align: left;
}
.css_2j3rb-horizontal .css_ch66x { 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(--i3gi);
    font-size: 48px; font-weight: 400;
    color: var(--i14iq);
    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(--i14iq);
    font-size: 14px;
    margin-top: 5px;
}

.css_6ykiw {
    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_ukc4p {
    font-family: var(--i3gi);
    font-size: 56px; font-weight: 400;
    color: var(--i14iq);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: .02em;
}
.css_mh7m5 {
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .18em;
}

.css_la5si {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--i62i);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.css_la5si:hover {
    border-color: var(--i14iq);
}
.css_la5si .css_2nbs6 {
    height: 240px; overflow: hidden;
}
.css_la5si .css_2nbs6 img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3) contrast(1.05);
    transition: var(--transition-slow);
}
.css_la5si:hover .css_2nbs6 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(--i14iq);
    border: 1px solid var(--i14iq);
    padding: 4px 14px;
    margin-bottom: 14px;
}
.css_la5si .card-body {
    padding: 32px; flex: 1;
    display: flex; flex-direction: column;
}
.css_la5si .card-title {
    font-family: var(--i3gi);
    font-size: 22px; font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-heading);
}
.css_la5si .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(--i3gi);
    font-size: 22px; font-weight: 400;
    color: var(--i14iq);
}

.css_p12cd {
    text-align: center;
    transition: var(--transition);
}
.css_ln2rw {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 0;
}
.css_ln2rw img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.4);
    transition: var(--transition-slow);
}
.css_p12cd:hover .css_ln2rw 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_p12cd: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(--i14iq);
    border-color: var(--i14iq);
    color: var(--text-on-accent);
}

.css_j3hti {
    font-family: var(--i3gi);
    font-size: 20px; font-weight: 400;
    margin: 22px 0 4px;
    color: var(--text-heading);
}
.css_w3usq {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    padding-bottom: 20px;
}

.css_f009x {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--i62i);
    padding: 44px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.css_f009x:hover {
    border-color: var(--i14iq);
}

.quote-icon {
    font-size: 32px;
    color: var(--i14iq);
    opacity: .3;
    margin-bottom: 20px;
}
.css_owo6f {
    font-family: var(--i3gi);
    font-size: 20px;
    color: var(--text-heading);
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 28px;
}
.stars {
    color: var(--i14iq);
    font-size: 13px;
    margin-bottom: 18px;
    display: flex; gap: 4px;
}
.author {
    display: flex; align-items: center; gap: 16px;
}
.css_rfbz8 {
    width: 50px; height: 50px;
    border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--border-color);
}
.css_rfbz8 img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); }
.css_wdtwt {
    font-family: var(--i3gi);
    font-size: 16px; font-weight: 400;
    color: var(--text-heading);
}
.css_g3rjo {
    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(--i14iq);
    margin-bottom: 8px;
}
.portfolio-title {
    font-family: var(--i3gi);
    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(--i3gi);
    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(--i14iq);
    background: transparent;
}
.faq-section .accordion-button::after {
    background-image: none;
    content: '+';
    font-family: var(--i3gi);
    font-size: 28px; font-weight: 300;
    color: var(--i14iq);
    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_ib2ms {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--i62i);
    padding: 48px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.css_ib2ms:hover {
    border-color: var(--i14iq);
}
.css_ib2ms.featured {
    border-color: var(--i14iq);
}
.css_ib2ms.featured::before {
    content: 'Популярный';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
    background: var(--i14iq);
    color: var(--text-on-accent);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    padding: 6px 22px;
}
.css_sjy7c {
    font-family: var(--i3gi);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 10px;
}
.css_asy9v {
    font-family: var(--i3gi);
    font-size: 58px; font-weight: 400;
    color: var(--i14iq);
    line-height: 1.1;
}
.plan-period {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.css_xactw {
    list-style: none; padding: 0;
    margin-bottom: 36px;
    text-align: left;
}
.css_xactw 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_xactw li i {
    color: var(--i14iq);
    font-size: 14px;
}

.css_h88ax {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--i62i);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.css_h88ax:hover {
    border-color: var(--i14iq);
}
.css_h88ax .css_2nbs6 {
    height: 240px; overflow: hidden;
}
.css_h88ax .css_2nbs6 img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3);
    transition: var(--transition-slow);
}
.css_h88ax:hover .css_2nbs6 img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.css_h88ax .card-body { padding: 30px; }
.css_h88ax .css_lx5pi {
    display: flex; gap: 18px;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
}
.css_h88ax .css_lx5pi i { margin-right: 6px; color: var(--i14iq); }
.css_h88ax .card-title {
    font-family: var(--i3gi);
    font-size: 22px; font-weight: 400;
    line-height: 1.3;
    color: var(--text-heading);
}
.css_h88ax .card-title:hover { color: var(--i14iq); }

.css_edwze {
    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_edwze .container { position: relative; z-index: 2; }
.css_2wulq {
    font-family: var(--i3gi);
    font-size: 44px; font-weight: 400;
    color: var(--text-heading);
    font-style: italic;
    margin-bottom: 20px;
}
.css_8eciy {
    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(--i14iq), transparent);
    top: 40%; right: 0;
    opacity: .15;
}
.cta-shape.shape-2 {
    width: 1px; height: 200px;
    background: linear-gradient(to bottom, transparent, var(--i14iq), transparent);
    bottom: 0; left: 20%;
    opacity: .15;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.css_dkqwl {
    width: 56px; height: 56px;
    border: 1px solid var(--i14iq);
    border-radius: 50%;
    color: var(--i14iq);
    font-family: var(--i3gi);
    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_dkqwl {
    background: var(--i14iq);
    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_bbk7o {
    font-family: var(--i3gi);
    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(--i62i);
    font-size: 15px;
    background: var(--bg-card);
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--i5b9);
}
.newsletter-form .form-control:focus {
    border-color: var(--i14iq);
    box-shadow: none;
    outline: none;
}

.css_5xa6v .form-control,
.css_5xa6v .form-select {
    padding: 14px 22px;
    border: 1px solid var(--border-color);
    border-radius: var(--i62i);
    font-size: 15px;
    background: var(--bg-card);
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--i5b9);
}
.css_5xa6v .form-control:focus,
.css_5xa6v .form-select:focus {
    border-color: var(--i14iq);
    box-shadow: none;
    outline: none;
}
.css_5xa6v textarea.form-control { min-height: 150px; resize: vertical; }
.css_5xa6v .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(--i3gi);
    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(--i14iq);
    -webkit-text-fill-color: transparent;
    opacity: .15;
}
.marquee-item .separator {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--i14iq);
    border-radius: 50%;
    margin: 0 28px;
    vertical-align: middle;
    opacity: .4;
}

.css_xcwa5 {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 90px 0 0;
    border-top: 1px solid var(--border-color);
}

.css_xrqs3 { margin-bottom: 40px; }
.css_alqv9 {
    font-family: var(--i3gi);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 16px;
}
.css_alqv9::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 30px; height: 1px;
    background: var(--i14iq);
}
.footer-about {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.css_i8f73 {
    list-style: none; padding: 0; margin: 0;
}
.css_i8f73 li { margin-bottom: 14px; }
.css_i8f73 a {
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: .04em;
}
.css_i8f73 a:hover {
    color: var(--i14iq);
}
.footer-contact li {
    display: flex; gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
}
.footer-contact i {
    color: var(--i14iq);
    font-size: 14px;
    margin-top: 5px;
}

.css_joie5 {
    display: flex; gap: 12px;
    margin-top: 20px;
}
.css_joie5 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_joie5 a:hover {
    background: var(--i14iq);
    border-color: var(--i14iq);
    color: var(--text-on-accent);
}

.css_e1wrv {
    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_e1wrv 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(--i14iq); }

.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(--i14iq);
    text-decoration: underline;
}
.policy-content strong { color: var(--text-heading); }

.css_m3oqw {
    position: fixed; bottom: 32px; right: 32px;
    width: 46px; height: 46px;
    border: 1px solid var(--i14iq);
    background: transparent;
    color: var(--i14iq);
    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_m3oqw.visible {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.css_m3oqw:hover {
    background: var(--i14iq);
    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(--i14iq);
    border-bottom-color: var(--i14iq);
}

.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(--i14iq);
    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(--i14iq);
    background: var(--i14iq);
}
.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_vvbjg { font-size: 52px; }
    h2, .css_b14eo { font-size: 38px; }
}

@media (max-width: 992px) {
    .css_2yqwf { display: flex; align-items: center; justify-content: center; }

    .css_xei7d {
        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_xei7d.active { right: 0; }
    .css_xei7d .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .css_nk6qo, .css_ykkk4 {
        flex-direction: column; width: 100%;
    }

    .css_40ggn {
        display: none;
        position: fixed; inset: 0;
        background: rgba(0,0,0,.65);
        z-index: 1049;
    }
    .css_40ggn.active { display: block; }

    .css_supfm { display: none; }
    .css_01ovb { padding: 0 24px; }
}

@media (max-width: 768px) {
    h1, .css_vvbjg { font-size: 40px; }
    h2, .css_b14eo { font-size: 30px; }
    .css_8xsxr { padding: 80px 0; }
    .css_hp32h { min-height: auto; padding: 130px 0 80px; }
    .css_edwze { padding: 70px 24px; }
    .css_2wulq { font-size: 32px; }
    .css_ukc4p { font-size: 42px; }
    .counter-item:not(:last-child)::after { display: none; }
    .css_e1wrv { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    h1, .css_vvbjg { font-size: 32px; }
    h2, .css_b14eo { font-size: 26px; }
    .css_8xsxr { padding: 64px 0; }
    .css_vtic1 { flex-direction: column; }
    .css_6kupj { width: 100%; justify-content: center; }
    .css_asy9v { font-size: 42px; }
    .marquee-item { font-size: 44px; }
}

.css_9wele .css_v7fwq { color: #fff; }
.css_9wele .css_ckhmx { color: var(--i14iq); }
.css_9wele .css_ftenh { color: rgba(255,255,255,0.55); }
.css_9wele .css_i8f73 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.css_9wele .css_i8f73 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(--i14iq) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
