

:root {
    
    --bg-primary:    #0b0b0b;
    --bg-secondary:  #141414;
    --bg-card:       #1a1a1a;
    --bg-dark:       #000000;
    --bg-dark-card:  #111111;

    
    --g14gw:      #c9a84c;
    --g15tj:      #e8d5a3;
    --g16p4:      #8b7434;

    --g1e7: linear-gradient(135deg, var(--g16p4), var(--g14gw), var(--g15tj));
    --g1e7-hover: linear-gradient(135deg, var(--g15tj), var(--g14gw), var(--g16p4));
    --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;

    
    --g3uc:  'Playfair Display', 'Didot', 'Times New Roman', serif;
    --g5at:     'Cormorant Garamond', 'Garamond', serif;
    --font-mono:     'JetBrains Mono', monospace;

    
    --border-color:  rgba(201,168,76,.15);
    --border-light:  rgba(255,255,255,.05);
    --g6x5:     2px;
    --g7xg:     4px;
    --g8ja:     6px;
    --g9n6:     8px;
    --radius-full:   9999px;

    
    --g10rf:     0 1px 4px rgba(0,0,0,.30);
    --g11mm:     0 6px 24px rgba(0,0,0,.40);
    --g12qq:     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);

    
    --sc_tghp3u: 120px 0;
    --header-height:   80px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--g5at);
    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(--g14gw); transition: var(--transition); }
a:hover { color: var(--g15tj); }

::selection {
    background: var(--g14gw);
    color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--g3uc);
    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(--g1e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-stroke {
    -webkit-text-stroke: 1px var(--g14gw);
    -webkit-text-fill-color: transparent;
}

.sc_tghp3u { padding: var(--sc_tghp3u); }
.sc_tghp3u-sm { padding: 60px 0; }

.sc_vcap0m { background-color: var(--bg-primary) !important; }
.sc_xt88ur { background-color: var(--bg-secondary) !important; }
.bg-dark-custom, .sc_ukq3xx { 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,
.sc_ukq3xx h1, .sc_ukq3xx h2, .sc_ukq3xx h3,
.sc_ukq3xx h4, .sc_ukq3xx h5, .sc_ukq3xx h6 { color: var(--text-heading); }
.bg-dark-custom p, .bg-dark-custom li,
.sc_ukq3xx p, .sc_ukq3xx li { color: var(--text-body); }
.sc_ukq3xx a:not(.sc_yi0q1y) { color: rgba(255,255,255,0.8); }
.bg-accent-custom, .bg-gradient-custom {
    background: var(--g1e7) !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(.sc_yi0q1y) { 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(--g14gw);
    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(--g1e7);
}

.sc_v7ej63 {
    position: fixed; inset: 0;
    z-index: 99999;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s, visibility .7s;
}
.sc_v7ej63.loaded { opacity: 0; visibility: hidden; }

.sc_w1fm7o { display: flex; gap: 12px; }

.sc_erev8k {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--g14gw);
    animation: luxPulse 1.2s ease-in-out infinite;
}
.sc_erev8k:nth-child(2) { animation-delay: .2s; }
.sc_erev8k:nth-child(3) { animation-delay: .4s; }

@keyframes luxPulse {
    0%, 100% { opacity: .2; transform: scale(.8); }
    50%      { opacity: 1;  transform: scale(1.2); }
}

.sc_olpb76 {
    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);
}
.sc_olpb76.scrolled {
    background: rgba(11,11,11,.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.sc_g57j9m {
    width: 100%; max-width: 1280px;
    display: flex; align-items: center; justify-content: space-between;
}

.sc_xiqjt8 {
    font-family: var(--g3uc);
    font-size: 26px; font-weight: 400; font-style: italic;
    color: var(--text-heading);
    letter-spacing: .04em;
    display: flex; align-items: center; gap: 12px;
}
.sc_xiqjt8 img { height: 38px; width: auto; }
.sc_xiqjt8:hover { color: var(--g14gw); }

.sc_vh9r8j,
.sc_fr3n5f { display: flex; align-items: center; }

.sc_q4kew7 {
    display: flex; align-items: center; gap: 40px;
    list-style: none; margin: 0; padding: 0;
}
.nav-link {
    font-family: var(--g5at);
    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(--g14gw);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active { color: var(--g14gw); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.sc_pbiwys .sc_yi0q1y { padding: 10px 28px; font-size: 13px; }

.sc_geatln {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px;
    position: relative;
    z-index: 1051;
}
.sc_geatln span {
    display: block; width: 26px; height: 1px;
    background: var(--text-heading);
    position: absolute; left: 5px;
    transition: var(--transition);
}
.sc_geatln span:nth-child(1) { top: 10px; }
.sc_geatln span:nth-child(2) { top: 17px; width: 18px; }
.sc_geatln span:nth-child(3) { top: 24px; }
.sc_geatln.active span:nth-child(1) { top: 17px; transform: rotate(45deg); width: 26px; }
.sc_geatln.active span:nth-child(2) { opacity: 0; }
.sc_geatln.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); width: 26px; }

.sc_yi0q1y {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 40px;
    font-family: var(--g5at);
    font-size: 14px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    border-radius: var(--g6x5);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}
.sc_yi0q1y i { font-size: 12px; }

.sc_a7gj0h {
    background: var(--g14gw);
    color: var(--text-on-accent);
    border-color: var(--g14gw);
}
.sc_a7gj0h:hover {
    background: transparent;
    color: var(--g14gw);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.sc_rmzl65 {
    background: transparent;
    color: var(--g14gw);
    border-color: var(--g14gw);
}
.sc_rmzl65:hover {
    background: var(--g14gw);
    color: var(--text-on-accent);
    transform: translateY(-2px);
}

.btn-link-custom {
    background: none; border: none; padding: 0;
    color: var(--g14gw);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    gap: 8px;
}
.btn-link-custom:hover { gap: 14px; color: var(--g15tj); }
.btn-link-custom i { transition: var(--transition); }

.sc_d59j0l {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}
.sc_fkd2il {
    display: inline-block;
    font-family: var(--g5at);
    font-size: 12px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--g14gw);
    margin-bottom: 20px;
}
.sc_s2k6tb {
    font-size: 48px; font-weight: 400;
    line-height: 1.12;
    margin-bottom: 20px;
}
.sc_i983kv {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.sc_u94f7d {
    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;
}
.sc_isttws {
    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;
}
.sc_u94f7d .container { position: relative; z-index: 2; }

.sc_plntkk {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--g5at);
    font-size: 13px; font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--g14gw);
    margin-bottom: 30px;
}
.sc_plntkk span {
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--g14gw);
}

.sc_xofben {
    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);
}
.sc_q0ivi7 {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 44px;
}
.sc_v40rq4 { display: flex; gap: 18px; flex-wrap: wrap; }

.sc_dsyhoo {
    position: relative;
    overflow: hidden;
}
.sc_dsyhoo 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(--g14gw), transparent);
    top: 10%; right: 10%;
    opacity: .3;
}
.hero-shape.shape-2 {
    width: 200px; height: 1px;
    background: linear-gradient(to right, transparent, var(--g14gw), transparent);
    bottom: 20%; left: 5%;
    opacity: .3;
}

.sc_jjnz6n {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g6x5);
    padding: 44px 34px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.sc_jjnz6n::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 1px;
    background: var(--g14gw);
    transition: var(--transition);
}
.sc_jjnz6n:hover {
    border-color: var(--g14gw);
}
.sc_jjnz6n:hover::before { width: 100%; }

.sc_dhtyel {
    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(--g14gw);
    transition: var(--transition);
}
.sc_jjnz6n:hover .sc_dhtyel {
    background: var(--g14gw);
    color: var(--text-on-accent);
    border-color: var(--g14gw);
}
.sc_crvx7i {
    font-family: var(--g3uc);
    font-size: 22px; font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-heading);
}
.sc_dzfak9 {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.sc_jjnz6n-horizontal {
    display: flex; gap: 24px;
    text-align: left;
}
.sc_jjnz6n-horizontal .sc_dhtyel { 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(--g3uc);
    font-size: 48px; font-weight: 400;
    color: var(--g14gw);
    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(--g14gw);
    font-size: 14px;
    margin-top: 5px;
}

.sc_hjayjl {
    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);
}
.sc_tdfmsi {
    font-family: var(--g3uc);
    font-size: 56px; font-weight: 400;
    color: var(--g14gw);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: .02em;
}
.sc_feqprf {
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .18em;
}

.sc_dmgu4q {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g6x5);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.sc_dmgu4q:hover {
    border-color: var(--g14gw);
}
.sc_dmgu4q .sc_wjc5ki {
    height: 240px; overflow: hidden;
}
.sc_dmgu4q .sc_wjc5ki img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3) contrast(1.05);
    transition: var(--transition-slow);
}
.sc_dmgu4q:hover .sc_wjc5ki 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(--g14gw);
    border: 1px solid var(--g14gw);
    padding: 4px 14px;
    margin-bottom: 14px;
}
.sc_dmgu4q .card-body {
    padding: 32px; flex: 1;
    display: flex; flex-direction: column;
}
.sc_dmgu4q .card-title {
    font-family: var(--g3uc);
    font-size: 22px; font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-heading);
}
.sc_dmgu4q .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(--g3uc);
    font-size: 22px; font-weight: 400;
    color: var(--g14gw);
}

.sc_c357vj {
    text-align: center;
    transition: var(--transition);
}
.sc_vksfxq {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 0;
}
.sc_vksfxq img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.4);
    transition: var(--transition-slow);
}
.sc_c357vj:hover .sc_vksfxq 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);
}
.sc_c357vj: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(--g14gw);
    border-color: var(--g14gw);
    color: var(--text-on-accent);
}

.sc_rj9hvk {
    font-family: var(--g3uc);
    font-size: 20px; font-weight: 400;
    margin: 22px 0 4px;
    color: var(--text-heading);
}
.sc_yv1ss6 {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .14em;
    padding-bottom: 20px;
}

.sc_bveemt {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--g6x5);
    padding: 44px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.sc_bveemt:hover {
    border-color: var(--g14gw);
}

.quote-icon {
    font-size: 32px;
    color: var(--g14gw);
    opacity: .3;
    margin-bottom: 20px;
}
.sc_kmumqw {
    font-family: var(--g3uc);
    font-size: 20px;
    color: var(--text-heading);
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 28px;
}
.stars {
    color: var(--g14gw);
    font-size: 13px;
    margin-bottom: 18px;
    display: flex; gap: 4px;
}
.author {
    display: flex; align-items: center; gap: 16px;
}
.sc_xo19ne {
    width: 50px; height: 50px;
    border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--border-color);
}
.sc_xo19ne img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); }
.sc_vesill {
    font-family: var(--g3uc);
    font-size: 16px; font-weight: 400;
    color: var(--text-heading);
}
.sc_xc82g1 {
    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(--g14gw);
    margin-bottom: 8px;
}
.portfolio-title {
    font-family: var(--g3uc);
    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(--g3uc);
    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(--g14gw);
    background: transparent;
}
.faq-section .accordion-button::after {
    background-image: none;
    content: '+';
    font-family: var(--g3uc);
    font-size: 28px; font-weight: 300;
    color: var(--g14gw);
    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;
}

.sc_ncv3ik {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g6x5);
    padding: 48px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.sc_ncv3ik:hover {
    border-color: var(--g14gw);
}
.sc_ncv3ik.featured {
    border-color: var(--g14gw);
}
.sc_ncv3ik.featured::before {
    content: 'Популярный';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-50%);
    background: var(--g14gw);
    color: var(--text-on-accent);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    padding: 6px 22px;
}
.sc_cw6ict {
    font-family: var(--g3uc);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 10px;
}
.sc_rcec8p {
    font-family: var(--g3uc);
    font-size: 58px; font-weight: 400;
    color: var(--g14gw);
    line-height: 1.1;
}
.plan-period {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.sc_onv1l4 {
    list-style: none; padding: 0;
    margin-bottom: 36px;
    text-align: left;
}
.sc_onv1l4 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);
}
.sc_onv1l4 li i {
    color: var(--g14gw);
    font-size: 14px;
}

.sc_q5jjkn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g6x5);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.sc_q5jjkn:hover {
    border-color: var(--g14gw);
}
.sc_q5jjkn .sc_wjc5ki {
    height: 240px; overflow: hidden;
}
.sc_q5jjkn .sc_wjc5ki img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3);
    transition: var(--transition-slow);
}
.sc_q5jjkn:hover .sc_wjc5ki img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.sc_q5jjkn .card-body { padding: 30px; }
.sc_q5jjkn .sc_jq7afk {
    display: flex; gap: 18px;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
}
.sc_q5jjkn .sc_jq7afk i { margin-right: 6px; color: var(--g14gw); }
.sc_q5jjkn .card-title {
    font-family: var(--g3uc);
    font-size: 22px; font-weight: 400;
    line-height: 1.3;
    color: var(--text-heading);
}
.sc_q5jjkn .card-title:hover { color: var(--g14gw); }

.sc_v7p2re {
    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;
}
.sc_v7p2re .container { position: relative; z-index: 2; }
.sc_b2qecw {
    font-family: var(--g3uc);
    font-size: 44px; font-weight: 400;
    color: var(--text-heading);
    font-style: italic;
    margin-bottom: 20px;
}
.sc_egr86k {
    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(--g14gw), transparent);
    top: 40%; right: 0;
    opacity: .15;
}
.cta-shape.shape-2 {
    width: 1px; height: 200px;
    background: linear-gradient(to bottom, transparent, var(--g14gw), transparent);
    bottom: 0; left: 20%;
    opacity: .15;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.sc_jouk64 {
    width: 56px; height: 56px;
    border: 1px solid var(--g14gw);
    border-radius: 50%;
    color: var(--g14gw);
    font-family: var(--g3uc);
    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 .sc_jouk64 {
    background: var(--g14gw);
    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;
}

.sc_sbu88b {
    font-family: var(--g3uc);
    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(--g6x5);
    font-size: 15px;
    background: var(--bg-card);
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--g5at);
}
.newsletter-form .form-control:focus {
    border-color: var(--g14gw);
    box-shadow: none;
    outline: none;
}

.sc_bghcpl .form-control,
.sc_bghcpl .form-select {
    padding: 14px 22px;
    border: 1px solid var(--border-color);
    border-radius: var(--g6x5);
    font-size: 15px;
    background: var(--bg-card);
    color: var(--text-body);
    transition: var(--transition);
    font-family: var(--g5at);
}
.sc_bghcpl .form-control:focus,
.sc_bghcpl .form-select:focus {
    border-color: var(--g14gw);
    box-shadow: none;
    outline: none;
}
.sc_bghcpl textarea.form-control { min-height: 150px; resize: vertical; }
.sc_bghcpl .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(--g3uc);
    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(--g14gw);
    -webkit-text-fill-color: transparent;
    opacity: .15;
}
.marquee-item .separator {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--g14gw);
    border-radius: 50%;
    margin: 0 28px;
    vertical-align: middle;
    opacity: .4;
}

.sc_wufwag {
    background: var(--bg-dark);
    color: var(--text-muted);
    padding: 90px 0 0;
    border-top: 1px solid var(--border-color);
}

.sc_i0pl7p { margin-bottom: 40px; }
.sc_um7dgf {
    font-family: var(--g3uc);
    font-size: 20px; font-weight: 400;
    color: var(--text-heading);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 16px;
}
.sc_um7dgf::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 30px; height: 1px;
    background: var(--g14gw);
}
.footer-about {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.sc_mn045t {
    list-style: none; padding: 0; margin: 0;
}
.sc_mn045t li { margin-bottom: 14px; }
.sc_mn045t a {
    color: var(--text-muted);
    font-size: 15px;
    transition: var(--transition);
    letter-spacing: .04em;
}
.sc_mn045t a:hover {
    color: var(--g14gw);
}
.footer-contact li {
    display: flex; gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
}
.footer-contact i {
    color: var(--g14gw);
    font-size: 14px;
    margin-top: 5px;
}

.sc_zcevqe {
    display: flex; gap: 12px;
    margin-top: 20px;
}
.sc_zcevqe 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);
}
.sc_zcevqe a:hover {
    background: var(--g14gw);
    border-color: var(--g14gw);
    color: var(--text-on-accent);
}

.sc_mtgrx9 {
    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;
}
.sc_mtgrx9 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(--g14gw); }

.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(--g14gw);
    text-decoration: underline;
}
.policy-content strong { color: var(--text-heading); }

.sc_q8t5un {
    position: fixed; bottom: 32px; right: 32px;
    width: 46px; height: 46px;
    border: 1px solid var(--g14gw);
    background: transparent;
    color: var(--g14gw);
    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;
}
.sc_q8t5un.visible {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.sc_q8t5un:hover {
    background: var(--g14gw);
    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(--g14gw);
    border-bottom-color: var(--g14gw);
}

.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(--g14gw);
    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(--g14gw);
    background: var(--g14gw);
}
.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, .sc_xofben { font-size: 52px; }
    h2, .sc_s2k6tb { font-size: 38px; }
}

@media (max-width: 992px) {
    .sc_geatln { display: flex; align-items: center; justify-content: center; }
    .sc_pbiwys { display: none; }
    .sc_olpb76 { padding: 0 24px; }
    .sc_vh9r8j, .sc_fr3n5f { flex-direction: column; width: 100%; }

    /* Overlay */
    .sc_jvniha {
        display: none;
        position: fixed; inset: 0;
        background: rgba(0,0,0,0);
        z-index: 1049;
        transition: background 0.4s ease;
    }
    .sc_jvniha.active {
        display: block;
        background: rgba(0,0,0,0.6);
    }

    /* Sidebar drawer */
    .sc_mobile_drawer {
        position: fixed;
        top: 0; right: 0;
        width: min(340px, 90vw);
        height: 100vh;
        height: 100dvh;
        background: var(--bg-card);
        z-index: 1050;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 48px rgba(0,0,0,0.25);
        border-left: 1px solid var(--border-color);
        overflow-y: auto;
    }
    .sc_mobile_drawer.active {
        transform: translateX(0);
    }

    /* Drawer header */
    .sc_mob_head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px 28px 20px;
        border-bottom: 1px solid var(--border-color);
        flex-shrink: 0;
    }
    .sc_mob_logo {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-heading);
        text-decoration: none;
        letter-spacing: 0.04em;
    }
    .sc_mob_close {
        width: 38px; height: 38px;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        color: var(--text-body);
        transition: var(--transition);
        flex-shrink: 0;
    }
    .sc_mob_close:hover {
        background: var(--g14gw);
        border-color: var(--g14gw);
        color: #fff;
    }

    /* Nav links */
    .sc_mob_links {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 12px 0;
    }
    .sc_mob_link {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 17px 28px;
        font-family: var(--g5at);
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--text-body);
        text-decoration: none;
        border-bottom: 1px solid var(--border-color);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    .sc_mob_link::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 3px;
        background: var(--g14gw);
        transform: scaleY(0);
        transition: transform 0.25s ease;
        transform-origin: bottom;
    }
    .sc_mob_link:hover {
        color: var(--g14gw);
        background: rgba(var(--g14gw-rgb, 183,126,33), 0.06);
        padding-left: 36px;
    }
    .sc_mob_link:hover::before { transform: scaleY(1); }
    .sc_mob_link_cta {
        color: var(--g14gw);
        font-weight: 700;
    }
    .sc_mob_link_cta:hover { color: var(--g14gw); }
    .sc_mob_link_num {
        font-size: 10px;
        font-weight: 700;
        color: var(--g14gw);
        opacity: 0.7;
        letter-spacing: 0.05em;
        min-width: 20px;
        font-family: var(--g5at);
    }

    /* Drawer footer */
    .sc_mob_footer {
        padding: 20px 28px 32px;
        border-top: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex-shrink: 0;
    }
    .sc_mob_contact_item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.2s;
    }
    .sc_mob_contact_item i {
        color: var(--g14gw);
        font-size: 13px;
        width: 16px;
        text-align: center;
    }
    .sc_mob_contact_item:hover { color: var(--g14gw); }

    /* Hide old nav */
    .sc_q4kew7 { display: none !important; }
}

@media (max-width: 768px) {
    h1, .sc_xofben { font-size: 40px; }
    h2, .sc_s2k6tb { font-size: 30px; }
    .sc_tghp3u { padding: 80px 0; }
    .sc_u94f7d { min-height: auto; padding: 130px 0 80px; }
    .sc_v7p2re { padding: 70px 24px; }
    .sc_b2qecw { font-size: 32px; }
    .sc_tdfmsi { font-size: 42px; }
    .counter-item:not(:last-child)::after { display: none; }
    .sc_mtgrx9 { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    h1, .sc_xofben { font-size: 32px; }
    h2, .sc_s2k6tb { font-size: 26px; }
    .sc_tghp3u { padding: 64px 0; }
    .sc_v40rq4 { flex-direction: column; }
    .sc_yi0q1y { width: 100%; justify-content: center; }
    .sc_rcec8p { font-size: 42px; }
    .marquee-item { font-size: 44px; }
}

.sc_ukq3xx .sc_plntkk { color: #fff; }
.sc_ukq3xx .sc_fkd2il { color: var(--g14gw); }
.sc_ukq3xx .sc_excj9o { color: rgba(255,255,255,0.55); }
.sc_ukq3xx .sc_mn045t a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.sc_ukq3xx .sc_mn045t 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(--g14gw) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
