

: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;

    --g14lh: #b08d57;
    --g15vf: #8b6f3a;
    --g1c6: linear-gradient(135deg, var(--g14lh), var(--g15vf));
    --accent-glow: 0 4px 20px rgba(176, 141, 87, 0.15);

    --g3x7: 'Playfair Display', 'Georgia', serif;
    --g5mf: 'Cormorant Garamond', 'Georgia', serif;

    --g19a4: 62px;
    --g20mb: 46px;
    --g21uf: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --g17i5: 17px;
    --fs-small: 14px;

    --g18yc: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --g6p1: 2px;
    --g7id: 4px;
    --g8x7: 6px;
    --g9s5: 8px;
    --g4wr: 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);

    --g10hm: 0 2px 10px rgba(0, 0, 0, 0.03);
    --g11cf: 0 4px 20px rgba(0, 0, 0, 0.05);
    --g12av: 0 8px 40px rgba(0, 0, 0, 0.07);
    --g13b2: 0 16px 60px rgba(0, 0, 0, 0.09);

    --sc_xk7ltd: 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(--g5mf);
    font-size: var(--g17i5);
    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(--g14lh);
    transition: var(--transition);
}
a:hover { color: var(--g15vf); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--g14lh); color: #fff; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--g3x7);
    font-weight: var(--g18yc);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h1 { font-size: var(--g19a4); letter-spacing: -1px; }
h2 { font-size: var(--g20mb); }
h3 { font-size: var(--g21uf); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--g1c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--g14lh); }
.text-accent-2 { color: var(--g15vf); }
.text-dark { color: var(--text-primary); }
.sc_naf0dv { color: var(--text-muted); }

.sc_xk7ltd { padding: var(--sc_xk7ltd); position: relative; }
.sc_xk7ltd-sm { padding: 70px 0; }
.sc_xk7ltd-lg { padding: 160px 0; }
.sc_xk7ltd > .container { position: relative; z-index: 1; }

.sc_fy5it9 { background-color: var(--bg-primary); }
.sc_xmqyi3 { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--g1c6); }
.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(.sc_xmpk6i) { color: #fff; }
.bg-gradient-custom .sc_bf4lj0 { color: #fff; }
.bg-gradient-custom .sc_ldw83t { color: rgba(255,255,255,0.7); }

.sc_yzksn2 {
    background-color: #1c1c1c;
    color: rgba(255,255,255,0.75);
}
.sc_yzksn2 h1, .sc_yzksn2 h2, .sc_yzksn2 h3,
.sc_yzksn2 h4, .sc_yzksn2 h5, .sc_yzksn2 h6 { color: #fff; }
.sc_yzksn2 p, .sc_yzksn2 li, .sc_yzksn2 span:not(.badge) { color: rgba(255,255,255,0.75); }
.sc_yzksn2 a:not(.sc_xmpk6i) { color: rgba(255,255,255,0.8); }
.sc_yzksn2 a:not(.sc_xmpk6i):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; }

.sc_ehaecc {
    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;
}
.sc_ehaecc.loaded { opacity: 0; visibility: hidden; }
.sc_r49qgw { display: flex; gap: 12px; }
.sc_licind {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--g14lh);
    animation: sc_ehaeccBounce 1.6s ease-in-out infinite both;
}
.sc_licind:nth-child(1) { animation-delay: -0.32s; }
.sc_licind:nth-child(2) { animation-delay: -0.16s; }
.sc_licind:nth-child(3) { animation-delay: 0; }

@keyframes sc_ehaeccBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.sc_xmpk6i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-family: var(--g5mf);
    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;
}

.sc_zmuqt8 {
    background: var(--g14lh);
    color: #fff;
    box-shadow: none;
}
.sc_zmuqt8:hover {
    background: var(--g15vf);
    color: #fff;
    letter-spacing: 4px;
}

.sc_g63h5i {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}
.sc_g63h5i:hover {
    background: var(--text-primary);
    color: #fff;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--g14lh);
    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(--g14lh);
    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(--g15vf); }
.btn-link-custom i { transition: transform 0.3s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

.sc_wm4374 {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: transparent;
}
.sc_wm4374.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);
}
.sc_cm3b4p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc_amgzne {
    font-family: var(--g3x7);
    font-size: 26px;
    font-weight: var(--g18yc);
    color: var(--text-primary);
    letter-spacing: 2px;
}
.sc_amgzne:hover { color: var(--text-primary); }

.sc_vxcezq { display: flex; align-items: center; gap: 36px; }

.sc_vxcezq .nav-link {
    color: var(--text-secondary);
    font-family: var(--g5mf);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.sc_vxcezq .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--g14lh);
    transition: width 0.4s ease, left 0.4s ease;
}
.sc_vxcezq .nav-link:hover,
.sc_vxcezq .nav-link.active { color: var(--text-primary); }
.sc_vxcezq .nav-link:hover::after,
.sc_vxcezq .nav-link.active::after { width: 100%; left: 0; }

.sc_qbrfou { margin-left: 16px; }

.sc_wxcgh3, .sc_a2vwhr { display: flex; align-items: center; gap: 36px; }
.sc_wxcgh3 .nav-link, .sc_a2vwhr .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;
}
.sc_wxcgh3 .nav-link:hover, .sc_a2vwhr .nav-link:hover { color: var(--g14lh); }
.sc_wxcgh3 ~ .sc_vxcezq { display: none; }

.sc_gzixa2 {
    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;
}

.sc_gzixa2 .sc_yexq1a {
    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;
}

.sc_gzixa2.active .sc_yexq1a:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.sc_gzixa2.active .sc_yexq1a:nth-child(2) { opacity: 0; }
.sc_gzixa2.active .sc_yexq1a:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.sc_bu8ka6 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}
.sc_bu8ka6 .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: sepia(20%);
}
.sc_bu8ka6 .sc_fyydbo {
    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%);
}
.sc_x2z8mf { position: relative; z-index: 2; }

.sc_fnhchm {
    display: inline-block;
    font-family: var(--g5mf);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--g14lh);
    margin-bottom: 28px;
    padding: 0;
    position: relative;
}
.sc_fnhchm::before,
.sc_fnhchm::after {
    content: '—';
    margin: 0 12px;
    color: var(--border-light);
}

.sc_hpbvmt {
    font-size: var(--g19a4);
    font-weight: var(--g18yc);
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.sc_h2868o {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 44px;
    line-height: 1.8;
    font-style: italic;
}

.sc_k0j4uc { display: flex; gap: 20px; flex-wrap: wrap; }

.sc_aeo7wc { position: relative; z-index: 2; }
.sc_aeo7wc img {
    border-radius: var(--g7id);
    box-shadow: var(--g13b2);
}

.sc_bu8ka6::before {
    content: '';
    position: absolute;
    top: 50%; left: 40px;
    width: 1px; height: 200px;
    background: var(--border-color);
    transform: translateY(-50%);
    opacity: 0.5;
}

.sc_uqybnv { margin-bottom: 70px; }

.sc_ye34bj {
    display: inline-block;
    font-family: var(--g5mf);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--g14lh);
    margin-bottom: 16px;
}

.sc_say1rg {
    font-size: var(--g20mb);
    font-weight: var(--g18yc);
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
}
.sc_uqybnv.text-center .sc_say1rg::after {
    content: '';
    display: block;
    width: 60px; height: 1px;
    background: var(--g14lh);
    margin: 20px auto 0;
}

.sc_m1cd6l {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    font-style: italic;
}
.sc_uqybnv.text-center .sc_m1cd6l {
    margin-left: auto;
    margin-right: auto;
}

.sc_qk8zsr {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g7id);
    padding: 44px 32px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
}
.sc_qk8zsr:hover {
    box-shadow: var(--g12av);
    border-color: var(--g14lh);
}

.sc_qk8zsr .sc_a3ozgk {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--g14lh);
    color: var(--g14lh);
    font-size: 24px;
    margin: 0 auto 24px;
    transition: var(--transition);
}
.sc_qk8zsr:hover .sc_a3ozgk {
    background: var(--g14lh);
    color: #fff;
}

.sc_qk8zsr .sc_v70c7q {
    font-family: var(--g3x7);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}
.sc_qk8zsr .sc_jj2irw {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.sc_qk8zsr-horizontal {
    display: flex;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g7id);
    padding: 30px;
    transition: var(--transition);
}
.sc_qk8zsr-horizontal:hover { box-shadow: var(--g11cf); border-color: var(--g14lh); }
.sc_qk8zsr-horizontal .sc_a3ozgk {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--g14lh);
    color: var(--g14lh);
    font-size: 20px;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--g7id);
    overflow: hidden;
    box-shadow: var(--g12av);
}
.about-section .about-image img { width: 100%; border-radius: var(--g7id); }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--g14lh);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--g7id);
    text-align: center;
}
.experience-badge .badge-number {
    display: block;
    font-family: var(--g3x7);
    font-size: 40px;
    font-weight: var(--g18yc);
    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(--g14lh); font-size: 14px; }

.sc_ftwjp1 { background: var(--bg-secondary); }
.counter-item { text-align: center; padding: 24px; }
.sc_bf4lj0 {
    font-family: var(--g3x7);
    font-size: 52px;
    font-weight: var(--g18yc);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.sc_bf4lj0 .counter-suffix { color: var(--g14lh); }
.sc_ldw83t {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.sc_y481vu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g7id);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.sc_y481vu:hover {
    transform: translateY(-6px);
    box-shadow: var(--g12av);
}
.sc_y481vu .sc_onfebp {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.sc_y481vu .sc_onfebp img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.sc_y481vu:hover .sc_onfebp img { transform: scale(1.06); }
.sc_y481vu .sc_onfebp .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;
}
.sc_y481vu .card-body { padding: 32px; }
.sc_y481vu .card-title {
    font-family: var(--g3x7);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}
.sc_y481vu .card-title a { color: var(--text-primary); }
.sc_y481vu .card-title a:hover { color: var(--g14lh); }
.sc_y481vu .card-text { font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 20px; }
.sc_y481vu .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.sc_y481vu .card-price {
    font-family: var(--g3x7);
    font-size: var(--fs-h5);
    font-weight: var(--g18yc);
    color: var(--g14lh);
}

.sc_smv6cf { text-align: center; transition: var(--transition); }
.sc_smv6cf:hover { transform: translateY(-4px); }
.sc_smv6cf .sc_pkw2nh {
    position: relative;
    overflow: hidden;
    border-radius: var(--g7id);
    margin-bottom: 24px;
}
.sc_smv6cf .sc_pkw2nh img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.sc_smv6cf:hover .sc_pkw2nh img { transform: scale(1.04); }
.sc_smv6cf .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;
}
.sc_smv6cf: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(--g14lh); border-color: var(--g14lh); }
.sc_smv6cf .sc_l5w2b6 {
    font-family: var(--g3x7);
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}
.sc_smv6cf .sc_y62cd0 {
    font-size: var(--fs-small);
    color: var(--g14lh);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
}

.sc_zbg8hu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g7id);
    padding: 44px;
    transition: var(--transition);
    text-align: center;
}
.sc_zbg8hu:hover { box-shadow: var(--g11cf); }
.sc_zbg8hu .quote-icon {
    font-family: var(--g3x7);
    font-size: 60px;
    color: var(--g14lh);
    margin-bottom: 16px;
    opacity: 0.25;
    line-height: 1;
}
.sc_zbg8hu .sc_fcm8gs {
    font-family: var(--g3x7);
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-style: italic;
    font-weight: var(--fw-regular);
}
.sc_zbg8hu .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.sc_zbg8hu .sc_xx0s48 {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}
.sc_zbg8hu .sc_e58j4r {
    font-size: var(--g17i5);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.sc_zbg8hu .sc_sera8x {
    font-size: var(--fs-small);
    color: var(--text-muted);
    letter-spacing: 1px;
}
.sc_zbg8hu .stars { color: var(--g14lh); margin-bottom: 16px; }

.portfolio-item {
    position: relative;
    border-radius: var(--g7id);
    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(--g14lh);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.portfolio-overlay .portfolio-title {
    font-family: var(--g3x7);
    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(--g7id) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--g3x7);
    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(--g14lh);
}
.faq-section .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.sc_uvsol1 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g7id);
    padding: 44px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.sc_uvsol1.featured {
    border-color: var(--g14lh);
}
.sc_uvsol1.featured::before {
    content: 'Recommended';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--g14lh);
    color: #fff;
    padding: 4px 20px;
    font-size: 11px;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.sc_uvsol1:hover {
    box-shadow: var(--g12av);
}
.sc_uvsol1 .sc_n0xv59 {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.sc_uvsol1 .sc_h1rzku {
    font-family: var(--g3x7);
    font-size: 56px;
    font-weight: var(--g18yc);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.sc_uvsol1 .sc_h1rzku .currency {
    font-size: 22px;
    vertical-align: top;
    color: var(--g14lh);
}
.sc_uvsol1 .plan-period { font-size: var(--fs-small); color: var(--text-muted); margin-bottom: 30px; }
.sc_uvsol1 .sc_ad2udp { text-align: left; margin-bottom: 30px; }
.sc_uvsol1 .sc_ad2udp 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);
}
.sc_uvsol1 .sc_ad2udp li:last-child { border-bottom: none; }
.sc_uvsol1 .sc_ad2udp li i { color: var(--g14lh); }
.sc_uvsol1 .sc_ad2udp li.disabled { opacity: 0.4; text-decoration: line-through; }

.sc_gmj7cx {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--g7id);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.sc_gmj7cx:hover { transform: translateY(-4px); box-shadow: var(--g12av); }
.sc_gmj7cx .sc_onfebp { height: 220px; overflow: hidden; }
.sc_gmj7cx .sc_onfebp img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.sc_gmj7cx:hover .sc_onfebp img { transform: scale(1.05); }
.sc_gmj7cx .card-body { padding: 28px; }
.sc_gmj7cx .sc_su43np {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.sc_gmj7cx .sc_su43np i { margin-right: 4px; color: var(--g14lh); }
.sc_gmj7cx .card-title {
    font-family: var(--g3x7);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}
.sc_gmj7cx .card-title a { color: var(--text-primary); }
.sc_gmj7cx .card-title a:hover { color: var(--g14lh); }

.sc_j92nk8 {
    background: #1c1c1c;
    position: relative;
    overflow: hidden;
}
.sc_j92nk8 .cta-content { position: relative; z-index: 2; }
.sc_j92nk8 .sc_uy8jlb { font-size: var(--g20mb); color: #fff; }
.sc_j92nk8 .sc_ixypz8 { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 560px; font-style: italic; }
.sc_j92nk8 p, .sc_j92nk8 li { color: rgba(255,255,255,0.7); }
.sc_j92nk8 .sc_xmpk6i { background: var(--g14lh); color: #fff; border: none; }
.sc_j92nk8 .sc_xmpk6i:hover { background: var(--g15vf); }
.sc_j92nk8 .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(--g5mf);
    font-size: var(--g17i5);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--g14lh); }

.process-item { text-align: center; position: relative; padding: 0 20px; }
.process-item .sc_jv0xve {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--g14lh);
    color: var(--g14lh);
    font-family: var(--g3x7);
    font-size: 22px;
    font-weight: var(--g18yc);
    margin: 0 auto 20px;
}
.process-item .sc_zs3bv5 {
    font-family: var(--g3x7);
    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(--g18yc);
    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%); }
}

.sc_tz0ylm {
    background: #1c1c1c;
    color: rgba(255,255,255,0.6);
}
.sc_tz0ylm h1, .sc_tz0ylm h2, .sc_tz0ylm h3,
.sc_tz0ylm h4, .sc_tz0ylm h5 { color: #fff; }

.sc_i5370j .sc_ixzeif {
    font-family: var(--g3x7);
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 14px;
}
.sc_i5370j .sc_ixzeif::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 1px;
    background: var(--g14lh);
}
.sc_i5370j p { color: rgba(255,255,255,0.5); font-size: var(--fs-small); }
.sc_deytx2 a { color: rgba(255,255,255,0.5); font-size: var(--fs-small); transition: var(--transition); }
.sc_deytx2 a:hover { color: var(--g14lh); padding-left: 5px; }
.sc_deytx2 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(--g14lh); margin-top: 4px; }
.sc_nuk3d3 { display: flex; gap: 10px; margin-top: 20px; }
.sc_nuk3d3 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);
}
.sc_nuk3d3 a:hover { background: var(--g14lh); border-color: var(--g14lh); color: #fff; }
.sc_ovxmo6 { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; margin-top: 60px; }
.sc_ovxmo6 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(--g14lh); }

.policy-content h1 { font-size: var(--g20mb); 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(--g14lh); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

.sc_qi6b81 {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: transparent;
    color: var(--g14lh);
    border: 1px solid var(--g14lh);
    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;
}
.sc_qi6b81.visible { opacity: 1; visibility: visible; }
.sc_qi6b81:hover { background: var(--g14lh); color: #fff; }

.sc_woe3xd .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(--g5mf);
    font-size: var(--g17i5);
}
.sc_woe3xd .form-control:focus {
    border-bottom-color: var(--g14lh);
    box-shadow: none;
    background: transparent;
    color: var(--text-primary);
}
.sc_woe3xd .form-control::placeholder { color: var(--text-muted); }
.sc_woe3xd 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(--g14lh); 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(--g14lh); border-color: var(--g14lh); 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 { --g19a4: 50px; --g20mb: 38px; } }

@media (max-width: 992px) {
    :root { --g19a4: 42px; --g20mb: 34px; --g21uf: 26px; --sc_xk7ltd: 90px 0; }
    .sc_vxcezq {
        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;
    }
    .sc_vxcezq.active { right: 0; }
    .sc_vxcezq .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;
    }
    .sc_vxcezq .nav-link:hover, .sc_vxcezq .nav-link.active { color: var(--g14lh) !important; }
    .sc_vxcezq .nav-link::after { display: none; }
    .sc_qbrfou { display: none !important; }
    .sc_gzixa2 {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .sc_m8d7jo {
        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;
    }
    .sc_m8d7jo.active { opacity: 1; visibility: visible; }
    .sc_hpbvmt { font-size: var(--g19a4); }
    .sc_bu8ka6::before { display: none; }
    .process-item:not(:last-child)::after { display: none; }
    .sc_bf4lj0 { font-size: 38px; }
}

@media (max-width: 768px) {
    :root { --g19a4: 36px; --g20mb: 28px; --g21uf: 22px; --fs-h4: 20px; --sc_xk7ltd: 70px 0; }
    .sc_uqybnv { margin-bottom: 40px; }
    .sc_bu8ka6 { min-height: auto; padding: 140px 0 80px; }
    .sc_k0j4uc { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .sc_uvsol1 .sc_h1rzku { font-size: 40px; }
    .sc_ovxmo6 { text-align: center; }
}

@media (max-width: 576px) {
    :root { --g19a4: 30px; --g20mb: 24px; --g21uf: 20px; --sc_xk7ltd: 50px 0; }
    .sc_zbg8hu { padding: 28px; }
    .sc_uvsol1 { padding: 28px; }
    .sc_qk8zsr { padding: 28px 20px; }
}

.sc_yzksn2 .sc_fnhchm { color: #fff; }
.sc_yzksn2 .sc_ye34bj { color: var(--g14lh); }
.sc_yzksn2 .sc_naf0dv { color: rgba(255,255,255,0.55); }
.sc_yzksn2 .sc_deytx2 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.sc_yzksn2 .sc_deytx2 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(--g14lh) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
