

:root {
    --bg-primary: #faf9f6;
    --bg-secondary: #f3f0eb;
    --bg-card: #ffffff;
    --bg-card-hover: #fffdf8;
    --text-primary: #1c1c1c;
    --text-secondary: #555555;
    --text-muted: #999999;
    --footer-dark-bg: #1c1c1c;
    --border-color: #e0dcd5;
    --border-light: #c9c3b8;

    --a14pd: #b08d57;
    --a15jw: #8b6f3a;
    --a1wp: linear-gradient(135deg, var(--a14pd), var(--a15jw));
    --accent-glow: 0 4px 20px rgba(176, 141, 87, 0.15);

    --a3sy: 'Playfair Display', 'Georgia', serif;
    --a5lw: 'Cormorant Garamond', 'Georgia', serif;

    --a19xz: 62px;
    --a20y2: 46px;
    --a21j7: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --a17bj: 17px;
    --fs-small: 14px;

    --a18k3: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --a6ux: 2px;
    --a7wp: 4px;
    --a829: 6px;
    --a9ji: 8px;
    --a4fh: 50px;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --a10so: 0 2px 10px rgba(0, 0, 0, 0.03);
    --a11gs: 0 4px 20px rgba(0, 0, 0, 0.05);
    --a12dz: 0 8px 40px rgba(0, 0, 0, 0.07);
    --a13yj: 0 16px 60px rgba(0, 0, 0, 0.09);

    --_h1qxdj: 120px 0;
    --container-width: 1100px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--a5lw);
    font-size: var(--a17bj);
    font-weight: var(--fw-regular);
    line-height: 1.8;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--a14pd);
    transition: var(--transition);
}
a:hover { color: var(--a15jw); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--a14pd); color: #fff; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--a3sy);
    font-weight: var(--a18k3);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h1 { font-size: var(--a19xz); letter-spacing: -1px; }
h2 { font-size: var(--a20y2); }
h3 { font-size: var(--a21j7); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--a14pd); }
.text-accent-2 { color: var(--a15jw); }
.text-dark { color: var(--text-primary); }
._getri76 { color: var(--text-muted); }

._h1qxdj { padding: var(--_h1qxdj); position: relative; }
._h1qxdj-sm { padding: 70px 0; }
._h1qxdj-lg { padding: 160px 0; }
._h1qxdj > .container { position: relative; z-index: 1; }

._z4k4gx { background-color: var(--bg-primary); }
._tiymyis { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--a1wp); }
.bg-gradient-custom {
    color: #fff;
}
.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: #fff; }
.bg-gradient-custom p, .bg-gradient-custom li, .bg-gradient-custom span { color: rgba(255,255,255,0.8); }
.bg-gradient-custom a:not(._dwiw4) { color: #fff; }
.bg-gradient-custom ._wjfe0 { color: #fff; }
.bg-gradient-custom ._we6nena { color: rgba(255,255,255,0.7); }

._5xi0zzr {
    background-color: #1c1c1c;
    color: rgba(255,255,255,0.75);
}
._5xi0zzr h1, ._5xi0zzr h2, ._5xi0zzr h3,
._5xi0zzr h4, ._5xi0zzr h5, ._5xi0zzr h6 { color: #fff; }
._5xi0zzr p, ._5xi0zzr li, ._5xi0zzr span:not(.badge) { color: rgba(255,255,255,0.75); }
._5xi0zzr a:not(._dwiw4) { color: rgba(255,255,255,0.8); }
._5xi0zzr a:not(._dwiw4):hover { color: #fff; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

._7vho3 {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
._7vho3.loaded { opacity: 0; visibility: hidden; }
._4530e { display: flex; gap: 12px; }
._advo1rs {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--a14pd);
    animation: _7vho3Bounce 1.6s ease-in-out infinite both;
}
._advo1rs:nth-child(1) { animation-delay: -0.32s; }
._advo1rs:nth-child(2) { animation-delay: -0.16s; }
._advo1rs:nth-child(3) { animation-delay: 0; }

@keyframes _7vho3Bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

._dwiw4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-family: var(--a5lw);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    border-radius: 0;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 3px;
    text-transform: uppercase;
}

._8lkh4b1 {
    background: var(--a14pd);
    color: #fff;
    box-shadow: none;
}
._8lkh4b1:hover {
    background: var(--a15jw);
    color: #fff;
    letter-spacing: 4px;
}

._019m7 {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}
._019m7:hover {
    background: var(--text-primary);
    color: #fff;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--a14pd);
    padding: 0;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: var(--fs-small);
    position: relative;
}
.btn-link-custom::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 1px;
    background: var(--a14pd);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.btn-link-custom:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-link-custom:hover { color: var(--a15jw); }
.btn-link-custom i { transition: transform 0.3s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

._fkmcw {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: transparent;
}
._fkmcw.scrolled {
    background: rgba(250, 249, 246, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}
._y6lrd65 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

._txyj2e {
    font-family: var(--a3sy);
    font-size: 26px;
    font-weight: var(--a18k3);
    color: var(--text-primary);
    letter-spacing: 2px;
}
._txyj2e:hover { color: var(--text-primary); }

._vo95syd { display: flex; align-items: center; gap: 36px; }

._vo95syd .nav-link {
    color: var(--text-secondary);
    font-family: var(--a5lw);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}
._vo95syd .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--a14pd);
    transition: width 0.4s ease, left 0.4s ease;
}
._vo95syd .nav-link:hover,
._vo95syd .nav-link.active { color: var(--text-primary); }
._vo95syd .nav-link:hover::after,
._vo95syd .nav-link.active::after { width: 100%; left: 0; }

._g1dpve { margin-left: 16px; }

._pocbutm, ._py9fr { display: flex; align-items: center; gap: 36px; }
._pocbutm .nav-link, ._py9fr .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-medium); padding: 8px 0; letter-spacing: 2px; text-transform: uppercase;
}
._pocbutm .nav-link:hover, ._py9fr .nav-link:hover { color: var(--a14pd); }
._pocbutm ~ ._vo95syd { display: none; }

._7jvr7 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: none;
    border: 1px solid var(--text-primary);
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

._7jvr7 ._6ndux7j {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s ease;
}

._7jvr7.active ._6ndux7j:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
._7jvr7.active ._6ndux7j:nth-child(2) { opacity: 0; }
._7jvr7.active ._6ndux7j:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

._okhu1 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}
._okhu1 .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: sepia(20%);
}
._okhu1 ._8rdm0t {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 30%, transparent 70%, var(--bg-secondary) 100%);
}
._7xwl8 { position: relative; z-index: 2; }

._ttexd {
    display: inline-block;
    font-family: var(--a5lw);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--a14pd);
    margin-bottom: 28px;
    padding: 0;
    position: relative;
}
._ttexd::before,
._ttexd::after {
    content: '—';
    margin: 0 12px;
    color: var(--border-light);
}

._kil4z {
    font-size: var(--a19xz);
    font-weight: var(--a18k3);
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

._sqz4ycs {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 44px;
    line-height: 1.8;
    font-style: italic;
}

._6dgqozs { display: flex; gap: 20px; flex-wrap: wrap; }

._ikw9rjh { position: relative; z-index: 2; }
._ikw9rjh img {
    border-radius: var(--a7wp);
    box-shadow: var(--a13yj);
}

._okhu1::before {
    content: '';
    position: absolute;
    top: 50%; left: 40px;
    width: 1px; height: 200px;
    background: var(--border-color);
    transform: translateY(-50%);
    opacity: 0.5;
}

._bpvaog { margin-bottom: 70px; }

._n7x5bfj {
    display: inline-block;
    font-family: var(--a5lw);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--a14pd);
    margin-bottom: 16px;
}

._by6o6b4 {
    font-size: var(--a20y2);
    font-weight: var(--a18k3);
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
}
._bpvaog.text-center ._by6o6b4::after {
    content: '';
    display: block;
    width: 60px; height: 1px;
    background: var(--a14pd);
    margin: 20px auto 0;
}

._n7p56 {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    font-style: italic;
}
._bpvaog.text-center ._n7p56 {
    margin-left: auto;
    margin-right: auto;
}

._hbyz2 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7wp);
    padding: 44px 32px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
}
._hbyz2:hover {
    box-shadow: var(--a12dz);
    border-color: var(--a14pd);
}

._hbyz2 ._944cs {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--a14pd);
    color: var(--a14pd);
    font-size: 24px;
    margin: 0 auto 24px;
    transition: var(--transition);
}
._hbyz2:hover ._944cs {
    background: var(--a14pd);
    color: #fff;
}

._hbyz2 ._ca91d5 {
    font-family: var(--a3sy);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}
._hbyz2 ._nbm15 {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

._hbyz2-horizontal {
    display: flex;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7wp);
    padding: 30px;
    transition: var(--transition);
}
._hbyz2-horizontal:hover { box-shadow: var(--a11gs); border-color: var(--a14pd); }
._hbyz2-horizontal ._944cs {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--a14pd);
    color: var(--a14pd);
    font-size: 20px;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--a7wp);
    overflow: hidden;
    box-shadow: var(--a12dz);
}
.about-section .about-image img { width: 100%; border-radius: var(--a7wp); }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--a14pd);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--a7wp);
    text-align: center;
}
.experience-badge .badge-number {
    display: block;
    font-family: var(--a3sy);
    font-size: 40px;
    font-weight: var(--a18k3);
    line-height: 1;
}
.experience-badge .badge-text { font-size: var(--fs-small); opacity: 0.9; }

.about-list { margin-top: 20px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--a14pd); font-size: 14px; }

._7p2oh { background: var(--bg-secondary); }
.counter-item { text-align: center; padding: 24px; }
._wjfe0 {
    font-family: var(--a3sy);
    font-size: 52px;
    font-weight: var(--a18k3);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
._wjfe0 .counter-suffix { color: var(--a14pd); }
._we6nena {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
}

._4lftj53 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7wp);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
._4lftj53:hover {
    transform: translateY(-6px);
    box-shadow: var(--a12dz);
}
._4lftj53 ._edjlqq {
    position: relative;
    overflow: hidden;
    height: 240px;
}
._4lftj53 ._edjlqq img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
._4lftj53:hover ._edjlqq img { transform: scale(1.06); }
._4lftj53 ._edjlqq .card-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(28,28,28,0.85);
    color: #fff;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
}
._4lftj53 .card-body { padding: 32px; }
._4lftj53 .card-title {
    font-family: var(--a3sy);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}
._4lftj53 .card-title a { color: var(--text-primary); }
._4lftj53 .card-title a:hover { color: var(--a14pd); }
._4lftj53 .card-text { font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 20px; }
._4lftj53 .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
._4lftj53 .card-price {
    font-family: var(--a3sy);
    font-size: var(--fs-h5);
    font-weight: var(--a18k3);
    color: var(--a14pd);
}

._o0bwy4u { text-align: center; transition: var(--transition); }
._o0bwy4u:hover { transform: translateY(-4px); }
._o0bwy4u ._4sz82 {
    position: relative;
    overflow: hidden;
    border-radius: var(--a7wp);
    margin-bottom: 24px;
}
._o0bwy4u ._4sz82 img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}
._o0bwy4u:hover ._4sz82 img { transform: scale(1.04); }
._o0bwy4u .team-social {
    position: absolute;
    bottom: -60px; left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(0deg, rgba(28,28,28,0.7) 0%, transparent 100%);
    transition: bottom 0.4s ease;
}
._o0bwy4u:hover .team-social { bottom: 0; }
.team-social a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    transition: var(--transition);
}
.team-social a:hover { background: var(--a14pd); border-color: var(--a14pd); }
._o0bwy4u ._b7ct6 {
    font-family: var(--a3sy);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}
._o0bwy4u ._402ux9 {
    font-size: var(--fs-small);
    color: var(--a14pd);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
}

._h6f7c4 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7wp);
    padding: 44px;
    transition: var(--transition);
    text-align: center;
}
._h6f7c4:hover { box-shadow: var(--a11gs); }
._h6f7c4 .quote-icon {
    font-family: var(--a3sy);
    font-size: 60px;
    color: var(--a14pd);
    margin-bottom: 16px;
    opacity: 0.25;
    line-height: 1;
}
._h6f7c4 ._va6jir {
    font-family: var(--a3sy);
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-style: italic;
    font-weight: var(--fw-regular);
}
._h6f7c4 .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
._h6f7c4 ._s21mdzx {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}
._h6f7c4 ._t324ie {
    font-size: var(--a17bj);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}
._h6f7c4 ._9rxy54 {
    font-size: var(--fs-small);
    color: var(--text-muted);
    letter-spacing: 1px;
}
._h6f7c4 .stars { color: var(--a14pd); margin-bottom: 16px; }

.portfolio-item {
    position: relative;
    border-radius: var(--a7wp);
    overflow: hidden;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.08); filter: brightness(0.7); }
.portfolio-item .portfolio-overlay { color: #fff;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--a14pd);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.portfolio-overlay .portfolio-title {
    font-family: var(--a3sy);
    font-size: var(--fs-h4);
    color: #fff;
    margin-bottom: 0;
}
.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: var(--bg-card);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--a7wp) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--a3sy);
    font-size: 18px;
    font-weight: var(--fw-semibold);
    padding: 20px 28px;
    box-shadow: none;
    border: none;
}
.faq-section .accordion-button:not(.collapsed) {
    background: var(--bg-card-hover);
    color: var(--a14pd);
}
.faq-section .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.9;
}

._2d42d {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7wp);
    padding: 44px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
._2d42d.featured {
    border-color: var(--a14pd);
}
._2d42d.featured::before {
    content: 'Recommended';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--a14pd);
    color: #fff;
    padding: 4px 20px;
    font-size: 11px;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
}
._2d42d:hover {
    box-shadow: var(--a12dz);
}
._2d42d ._ahj37 {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
._2d42d ._fiittz {
    font-family: var(--a3sy);
    font-size: 56px;
    font-weight: var(--a18k3);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
._2d42d ._fiittz .currency {
    font-size: 22px;
    vertical-align: top;
    color: var(--a14pd);
}
._2d42d .plan-period { font-size: var(--fs-small); color: var(--text-muted); margin-bottom: 30px; }
._2d42d ._adacgzn { text-align: left; margin-bottom: 30px; }
._2d42d ._adacgzn li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}
._2d42d ._adacgzn li:last-child { border-bottom: none; }
._2d42d ._adacgzn li i { color: var(--a14pd); }
._2d42d ._adacgzn li.disabled { opacity: 0.4; text-decoration: line-through; }

._5bi96m {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7wp);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
._5bi96m:hover { transform: translateY(-4px); box-shadow: var(--a12dz); }
._5bi96m ._edjlqq { height: 220px; overflow: hidden; }
._5bi96m ._edjlqq img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
._5bi96m:hover ._edjlqq img { transform: scale(1.05); }
._5bi96m .card-body { padding: 28px; }
._5bi96m ._kooeq {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
._5bi96m ._kooeq i { margin-right: 4px; color: var(--a14pd); }
._5bi96m .card-title {
    font-family: var(--a3sy);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}
._5bi96m .card-title a { color: var(--text-primary); }
._5bi96m .card-title a:hover { color: var(--a14pd); }

._lvtbr {
    background: #1c1c1c;
    position: relative;
    overflow: hidden;
}
._lvtbr .cta-content { position: relative; z-index: 2; }
._lvtbr ._4tyaa { font-size: var(--a20y2); color: #fff; }
._lvtbr ._3y2e8 { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 560px; font-style: italic; }
._lvtbr p, ._lvtbr li { color: rgba(255,255,255,0.7); }
._lvtbr ._dwiw4 { background: var(--a14pd); color: #fff; border: none; }
._lvtbr ._dwiw4:hover { background: var(--a15jw); }
._lvtbr .cta-shape { position: absolute; border-radius: 50%; background: rgba(176,141,87,0.06); pointer-events: none; z-index: 0; }
.cta-shape-1 { width: 400px; height: 400px; top: -200px; right: -100px; }
.cta-shape-2 { width: 250px; height: 250px; bottom: -120px; left: -80px; }

.newsletter-form { display: flex; gap: 12px; max-width: 480px; }
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 14px 24px;
    color: var(--text-primary);
    font-family: var(--a5lw);
    font-size: var(--a17bj);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--a14pd); }

.process-item { text-align: center; position: relative; padding: 0 20px; }
.process-item ._2rxjl {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--a14pd);
    color: var(--a14pd);
    font-family: var(--a3sy);
    font-size: 22px;
    font-weight: var(--a18k3);
    margin: 0 auto 20px;
}
.process-item ._uvcisl {
    font-family: var(--a3sy);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}
.process-item .step-text { font-size: var(--fs-small); color: var(--text-secondary); }
.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px; right: -20px;
    width: 40px; height: 1px;
    background: var(--border-color);
}

.marquee-section {
    padding: 40px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.marquee-track .marquee-item {
    font-size: 64px;
    font-weight: var(--a18k3);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    color: var(--text-primary);
}

.marquee-track .marquee-item.stroke {
    -webkit-text-stroke: 1px var(--text-primary);
    -webkit-text-fill-color: transparent;
}

.marquee-track .marquee-item.italic {
    font-style: italic;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

._0ro9tpn {
    background: #1c1c1c;
    color: rgba(255,255,255,0.6);
}
._0ro9tpn h1, ._0ro9tpn h2, ._0ro9tpn h3,
._0ro9tpn h4, ._0ro9tpn h5 { color: #fff; }

._ucii1l ._t1ahsf {
    font-family: var(--a3sy);
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 14px;
}
._ucii1l ._t1ahsf::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 1px;
    background: var(--a14pd);
}
._ucii1l p { color: rgba(255,255,255,0.5); font-size: var(--fs-small); }
._l20tu a { color: rgba(255,255,255,0.5); font-size: var(--fs-small); transition: var(--transition); }
._l20tu a:hover { color: var(--a14pd); padding-left: 5px; }
._l20tu li { margin-bottom: 10px; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; color: rgba(255,255,255,0.5); font-size: var(--fs-small);
}
.footer-contact li i { color: var(--a14pd); margin-top: 4px; }
._xzrfd7 { display: flex; gap: 10px; margin-top: 20px; }
._xzrfd7 a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
._xzrfd7 a:hover { background: var(--a14pd); border-color: var(--a14pd); color: #fff; }
._gg3tq { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; margin-top: 60px; }
._gg3tq p { margin: 0; font-size: var(--fs-small); color: rgba(255,255,255,0.3); }

.footer-policy { margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-policy a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-policy a:hover { color: var(--a14pd); }

.policy-content h1 { font-size: var(--a20y2); margin-bottom: 24px; }
.policy-content h2 { font-size: var(--fs-h4); margin-top: 32px; margin-bottom: 16px; }
.policy-content p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 16px; }
.policy-content ul, .policy-content ol { color: var(--text-secondary); padding-left: 24px; margin-bottom: 16px; }
.policy-content li { margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--a14pd); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

._jo3jk9g {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: transparent;
    color: var(--a14pd);
    border: 1px solid var(--a14pd);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}
._jo3jk9g.visible { opacity: 1; visibility: visible; }
._jo3jk9g:hover { background: var(--a14pd); color: #fff; }

._jv31mk3 .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    padding: 14px 0;
    color: var(--text-primary);
    font-family: var(--a5lw);
    font-size: var(--a17bj);
}
._jv31mk3 .form-control:focus {
    border-bottom-color: var(--a14pd);
    box-shadow: none;
    background: transparent;
    color: var(--text-primary);
}
._jv31mk3 .form-control::placeholder { color: var(--text-muted); }
._jv31mk3 textarea.form-control { min-height: 120px; resize: vertical; border: 1px solid var(--border-color); padding: 14px; }

.swiper-pagination-bullet { background: var(--border-light); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--a14pd); width: 20px; border-radius: 10px; }
.swiper-button-prev,
.swiper-button-next {
    width: 44px; height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 14px; }
.swiper-button-prev:hover,
.swiper-button-next:hover { background: var(--a14pd); border-color: var(--a14pd); color: #fff; }

.wow-ready .wow { visibility: hidden; }
.wow.animated { visibility: visible; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-anim { animation: floatUpDown 4s ease-in-out infinite; }

@media (max-width: 1200px) { :root { --a19xz: 50px; --a20y2: 38px; } }

@media (max-width: 992px) {
    :root { --a19xz: 42px; --a20y2: 34px; --a21j7: 26px; --_h1qxdj: 90px 0; }
    ._vo95syd {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--bg-primary);
        border-left: 1px solid var(--border-color);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
        overflow-y: auto;
    }
    ._vo95syd.active { right: 0; }
    ._vo95syd .nav-link {
        display: block !important;
        font-size: 16px !important; padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-color); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    ._vo95syd .nav-link:hover, ._vo95syd .nav-link.active { color: var(--a14pd) !important; }
    ._vo95syd .nav-link::after { display: none; }
    ._g1dpve { display: none !important; }
    ._7jvr7 {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    ._vw20wc {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 9999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    ._vw20wc.active { opacity: 1; visibility: visible; }
    ._kil4z { font-size: var(--a19xz); }
    ._okhu1::before { display: none; }
    .process-item:not(:last-child)::after { display: none; }
    ._wjfe0 { font-size: 38px; }
}

@media (max-width: 768px) {
    :root { --a19xz: 36px; --a20y2: 28px; --a21j7: 22px; --fs-h4: 20px; --_h1qxdj: 70px 0; }
    ._bpvaog { margin-bottom: 40px; }
    ._okhu1 { min-height: auto; padding: 140px 0 80px; }
    ._6dgqozs { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    ._2d42d ._fiittz { font-size: 40px; }
    ._gg3tq { text-align: center; }
}

@media (max-width: 576px) {
    :root { --a19xz: 30px; --a20y2: 24px; --a21j7: 20px; --_h1qxdj: 50px 0; }
    ._h6f7c4 { padding: 28px; }
    ._2d42d { padding: 28px; }
    ._hbyz2 { padding: 28px 20px; }
}

._5xi0zzr ._ttexd { color: #fff; }
._5xi0zzr ._n7x5bfj { color: var(--a14pd); }
._5xi0zzr ._getri76 { color: rgba(255,255,255,0.55); }
._5xi0zzr ._l20tu a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
._5xi0zzr ._l20tu 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(--a14pd) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
