

:root {
    --bg-primary: #f8faf9;
    --bg-secondary: #eef4f1;
    --bg-card: #ffffff;
    --bg-card-hover: #f4f9f6;
    --text-primary: #1a2e28;
    --text-secondary: #4d6a5e;
    --text-muted: #8da79b;
    --footer-dark-bg: #1a2e28;
    --border-color: #d0e0d6;
    --border-light: #e2ede6;

    --f14h6: #1b9e6d;
    --f15j3: #2a7fc2;
    --f1mr: linear-gradient(135deg, var(--f14h6), var(--f15j3));
    --accent-glow: 0 6px 28px rgba(27, 158, 109, 0.18);

    --f3b8: 'Inter', 'Segoe UI', sans-serif;
    --f5iu: 'Inter', 'Segoe UI', sans-serif;

    --f19qm: 56px;
    --f20ye: 42px;
    --f21yy: 28px;
    --fs-h4: 22px;
    --fs-h5: 18px;
    --f17s6: 16px;
    --fs-small: 14px;

    --f18cl: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --f6uq: 10px;
    --f7kk: 14px;
    --f8dp: 20px;
    --f9x9: 28px;
    --f4hr: 50px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    --f10wb: 0 2px 8px rgba(26, 46, 40, 0.04);
    --f11dw: 0 6px 22px rgba(26, 46, 40, 0.06);
    --f12fy: 0 12px 40px rgba(26, 46, 40, 0.08);
    --f13cl: 0 20px 60px rgba(26, 46, 40, 0.10);

    --sc_mwgkoq: 110px 0;
    --container-width: 1160px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--f5iu);
    font-size: var(--f17s6);
    font-weight: var(--fw-regular);
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--f14h6);
    transition: var(--transition);
}
a:hover { color: var(--f15j3); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--f14h6); color: #fff; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f3b8);
    font-weight: var(--f18cl);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: var(--f19qm); letter-spacing: -0.03em; }
h2 { font-size: var(--f20ye); letter-spacing: -0.02em; }
h3 { font-size: var(--f21yy); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--f1mr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--f14h6); }
.text-accent-2 { color: var(--f15j3); }
.text-dark { color: var(--text-primary); }
.sc_hp9wec { color: var(--text-muted); }

.sc_mwgkoq { padding: var(--sc_mwgkoq); position: relative; }
.sc_mwgkoq-sm { padding: 60px 0; }
.sc_mwgkoq-lg { padding: 150px 0; }
.sc_mwgkoq > .container { position: relative; z-index: 1; }

.sc_dre0cb { background-color: var(--bg-primary); }
.sc_bw76cj { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--f1mr); 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.85); }
.bg-gradient-custom a:not(.sc_rjed9e) { color: #fff; }
.bg-gradient-custom .sc_kfyn1a { color: #fff; }
.bg-gradient-custom .sc_uesytm { color: rgba(255,255,255,0.7); }

.sc_v16ieh {
    background-color: #1a2e28;
    color: rgba(255,255,255,0.7);
}
.sc_v16ieh h1, .sc_v16ieh h2, .sc_v16ieh h3,
.sc_v16ieh h4, .sc_v16ieh h5, .sc_v16ieh h6 { color: #fff; }
.sc_v16ieh p, .sc_v16ieh li, .sc_v16ieh span:not(.badge) { color: rgba(255,255,255,0.7); }
.sc_v16ieh a:not(.sc_rjed9e) { color: rgba(255,255,255,0.8); }
.sc_v16ieh a:not(.sc_rjed9e):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_uvuywq {
    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_uvuywq.loaded { opacity: 0; visibility: hidden; }
.sc_lq8syv { display: flex; gap: 8px; }
.sc_ibl3ll {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--f14h6);
    animation: sc_uvuywqPulse 1.4s ease-in-out infinite both;
}
.sc_ibl3ll:nth-child(1) { animation-delay: -0.3s; }
.sc_ibl3ll:nth-child(2) { animation-delay: -0.15s; }
.sc_ibl3ll:nth-child(3) { animation-delay: 0; }

@keyframes sc_uvuywqPulse {
    0%, 80%, 100% { transform: scale(0.5); opacity: 0.3; }
    40% { transform: scale(1.1); opacity: 1; }
}

.sc_rjed9e {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: var(--f5iu);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    border-radius: var(--f4hr);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.sc_sw297z {
    background: var(--f1mr);
    color: #fff;
    box-shadow: 0 4px 18px rgba(27, 158, 109, 0.22);
}
.sc_sw297z:hover {
    color: #fff;
    box-shadow: 0 8px 28px rgba(27, 158, 109, 0.30);
    transform: translateY(-2px);
}

.sc_jzjmgu {
    background: transparent;
    color: var(--f14h6);
    border: 2px solid var(--f14h6);
}
.sc_jzjmgu:hover {
    background: var(--f14h6);
    color: #fff;
    border-color: var(--f14h6);
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--f14h6);
    padding: 0;
    font-weight: var(--fw-semibold);
    font-size: var(--f17s6);
    position: relative;
}
.btn-link-custom::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 100%; height: 2px;
    background: var(--f15j3);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}
.btn-link-custom:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-link-custom:hover { color: var(--f15j3); }
.btn-link-custom i { transition: transform 0.3s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

.sc_nmh1kl {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}
.sc_nmh1kl.scrolled {
    background: rgba(248, 250, 249, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(26, 46, 40, 0.05);
}
.sc_d8l8dg {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc_l5eh1e {
    font-family: var(--f3b8);
    font-size: 26px;
    font-weight: var(--f18cl);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.sc_l5eh1e:hover { color: var(--text-primary); }

.sc_zur45l { display: flex; align-items: center; gap: 32px; }

.sc_zur45l .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 6px 0;
    position: relative;
}
.sc_zur45l .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--f14h6);
    border-radius: 2px;
    transition: width 0.35s ease;
}
.sc_zur45l .nav-link:hover,
.sc_zur45l .nav-link.active { color: var(--f14h6); }
.sc_zur45l .nav-link:hover::after,
.sc_zur45l .nav-link.active::after { width: 100%; }

.sc_a2h8vm { margin-left: 12px; }

.sc_db1tck, .sc_p5dxoo { display: flex; align-items: center; gap: 28px; }
.sc_db1tck .nav-link, .sc_p5dxoo .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-medium); padding: 8px 0;
}
.sc_db1tck .nav-link:hover, .sc_p5dxoo .nav-link:hover { color: var(--f14h6); }
.sc_db1tck ~ .sc_zur45l { display: none; }

.sc_fnpbzf {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.sc_fnpbzf .sc_d01hpp {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}

.sc_fnpbzf.active .sc_d01hpp:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sc_fnpbzf.active .sc_d01hpp:nth-child(2) { opacity: 0; }
.sc_fnpbzf.active .sc_d01hpp:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sc_xkhdxr {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-primary);
}
.sc_xkhdxr .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: saturate(0.6);
}
.sc_xkhdxr .sc_o0jvvf {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 40%, transparent 60%, var(--bg-primary) 100%);
}
.sc_i1sap8 { position: relative; z-index: 2; }

.sc_lr2ded {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--f14h6);
    margin-bottom: 24px;
    padding: 8px 18px;
    background: rgba(27, 158, 109, 0.08);
    border-radius: var(--f4hr);
    border: 1px solid rgba(27, 158, 109, 0.12);
}
.sc_lr2ded i { font-size: 14px; }

.sc_nhp0x9 {
    font-size: var(--f19qm);
    font-weight: var(--f18cl);
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.sc_xzttsn {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.sc_xaugs5 { display: flex; gap: 14px; flex-wrap: wrap; }

.sc_ny2yaq { position: relative; z-index: 2; }
.sc_ny2yaq img {
    border-radius: var(--f9x9);
    box-shadow: var(--f13cl);
}

.sc_xkhdxr .hero-blob {
    position: absolute;
    width: 550px; height: 550px;
    background: radial-gradient(ellipse, rgba(27,158,109,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: blobPulse 10s ease-in-out infinite;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.sc_je5dgi { margin-bottom: 60px; }

.sc_nmzs1c {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--f14h6);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.sc_nmzs1c i { font-size: 15px; }

.sc_ngkqm3 {
    font-size: var(--f20ye);
    font-weight: var(--f18cl);
    margin-bottom: 18px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.sc_hnzo24 {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}
.sc_je5dgi.text-center .sc_hnzo24 {
    margin-left: auto;
    margin-right: auto;
}

.sc_mgr65o {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--f8dp);
    padding: 36px 26px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
    box-shadow: var(--f10wb);
}
.sc_mgr65o:hover {
    box-shadow: var(--f12fy);
    transform: translateY(-6px);
    border-color: rgba(27, 158, 109, 0.2);
}

.sc_mgr65o .sc_jv3xnt {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--f7kk);
    background: rgba(27, 158, 109, 0.08);
    color: var(--f14h6);
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.sc_mgr65o:hover .sc_jv3xnt {
    background: var(--f1mr);
    color: #fff;
    transform: scale(1.08);
}

.sc_mgr65o .sc_lbgemw {
    font-family: var(--f3b8);
    font-size: var(--fs-h5);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.sc_mgr65o .sc_r68kit {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.sc_mgr65o-horizontal {
    display: flex;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--f7kk);
    padding: 26px;
    transition: var(--transition);
    box-shadow: var(--f10wb);
}
.sc_mgr65o-horizontal:hover { box-shadow: var(--f11dw); transform: translateY(-3px); border-color: rgba(27,158,109,0.2); }
.sc_mgr65o-horizontal .sc_jv3xnt {
    flex-shrink: 0;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--f7kk);
    background: rgba(27, 158, 109, 0.08);
    color: var(--f14h6);
    font-size: 20px;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--f9x9);
    overflow: hidden;
    box-shadow: var(--f12fy);
}
.about-section .about-image img { width: 100%; border-radius: var(--f9x9); }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--f1mr);
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--f8dp);
    text-align: center;
    box-shadow: 0 4px 18px rgba(27,158,109,0.25);
}
.experience-badge .badge-number {
    display: block;
    font-family: var(--f3b8);
    font-size: 38px;
    line-height: 1;
    font-weight: var(--f18cl);
}
.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-light);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--f14h6); font-size: 14px; }

.sc_tz4j92 {
    background: var(--f1mr);
    color: #fff;
    border-radius: var(--f9x9);
}
.counter-item { text-align: center; padding: 24px; }
.sc_kfyn1a {
    font-family: var(--f3b8);
    font-size: 50px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: var(--f18cl);
}
.sc_kfyn1a .counter-suffix { color: rgba(255,255,255,0.8); }
.sc_uesytm {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.75);
}

.sc_u3gdtv {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--f8dp);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--f10wb);
}
.sc_u3gdtv:hover {
    transform: translateY(-8px);
    box-shadow: var(--f12fy);
    border-color: rgba(27,158,109,0.2);
}
.sc_u3gdtv .sc_z169uk {
    position: relative;
    overflow: hidden;
    height: 230px;
}
.sc_u3gdtv .sc_z169uk img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.sc_u3gdtv:hover .sc_z169uk img { transform: scale(1.06); }
.sc_u3gdtv .sc_z169uk .card-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--f1mr);
    color: #fff;
    padding: 6px 16px;
    border-radius: var(--f4hr);
    font-size: 12px;
    font-weight: var(--fw-semibold);
}
.sc_u3gdtv .card-body { padding: 26px; }
.sc_u3gdtv .card-title {
    font-family: var(--f3b8);
    font-size: var(--fs-h5);
    margin-bottom: 12px;
    color: var(--text-primary);
}
.sc_u3gdtv .card-title a { color: var(--text-primary); }
.sc_u3gdtv .card-title a:hover { color: var(--f14h6); }
.sc_u3gdtv .card-text { font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 20px; }
.sc_u3gdtv .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}
.sc_u3gdtv .card-price {
    font-family: var(--f3b8);
    font-size: var(--fs-h5);
    color: var(--f14h6);
    font-weight: var(--f18cl);
}

.sc_cqtndf { text-align: center; transition: var(--transition); }
.sc_cqtndf:hover { transform: translateY(-5px); }
.sc_cqtndf .sc_na0559 {
    position: relative;
    overflow: hidden;
    border-radius: var(--f9x9);
    margin-bottom: 20px;
}
.sc_cqtndf .sc_na0559 img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.sc_cqtndf:hover .sc_na0559 img { transform: scale(1.05); }
.sc_cqtndf .team-social {
    position: absolute;
    bottom: -60px; left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(0deg, rgba(26,46,40,0.6) 0%, transparent 100%);
    transition: bottom 0.4s ease;
}
.sc_cqtndf:hover .team-social { bottom: 0; }
.team-social a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    transition: var(--transition);
}
.team-social a:hover { background: var(--f14h6); }
.sc_cqtndf .sc_xfh6ko {
    font-family: var(--f3b8);
    font-size: var(--fs-h5);
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: var(--fw-semibold);
}
.sc_cqtndf .sc_fd99et {
    font-size: var(--fs-small);
    color: var(--f14h6);
}

.sc_zk4zr7 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--f8dp);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--f10wb);
    position: relative;
}
.sc_zk4zr7:hover { box-shadow: var(--f11dw); transform: translateY(-4px); border-color: rgba(27,158,109,0.2); }
.sc_zk4zr7 .quote-icon {
    font-size: 44px;
    color: var(--f14h6);
    margin-bottom: 12px;
    opacity: 0.18;
    line-height: 1;
}
.sc_zk4zr7 .sc_rd08in {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 24px;
}
.sc_zk4zr7 .author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sc_zk4zr7 .sc_x5o2dz {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-secondary);
}
.sc_zk4zr7 .sc_zror3b {
    font-size: var(--f17s6);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.sc_zk4zr7 .sc_ew9x4e {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
.sc_zk4zr7 .stars { color: var(--f15j3); margin-bottom: 12px; }

.sc_zk4zr7::before {
    content: '☀️';
    position: absolute;
    top: 14px; right: 20px;
    font-size: 22px;
    opacity: 0.12;
}

.portfolio-item {
    position: relative;
    border-radius: var(--f8dp);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--f10wb);
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item .portfolio-overlay { color: #fff;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(0deg, rgba(26,46,40,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--f15j3);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.portfolio-overlay .portfolio-title {
    font-family: var(--f3b8);
    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-light) !important;
    border-radius: var(--f7kk) !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--f3b8);
    font-size: 17px;
    font-weight: var(--fw-semibold);
    padding: 20px 24px;
    box-shadow: none;
    border: none;
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(27, 158, 109, 0.04);
    color: var(--f14h6);
}
.faq-section .accordion-body {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sc_adz60i {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--f8dp);
    padding: 38px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--f10wb);
}
.sc_adz60i.featured {
    background: var(--f1mr);
    color: #fff;
    border: none;
    box-shadow: var(--accent-glow);
}
.sc_adz60i.featured .sc_iiqo0k,
.sc_adz60i.featured .plan-period,
.sc_adz60i.featured .sc_owtoow li { color: rgba(255,255,255,0.85); }
.sc_adz60i.featured .sc_n4jwhn { color: #fff; }
.sc_adz60i.featured .sc_owtoow li i { color: rgba(255,255,255,0.9); }
.sc_adz60i.featured .sc_rjed9e { background: #fff; color: var(--f14h6); }
.sc_adz60i.featured .sc_rjed9e:hover { background: var(--bg-secondary); }

.sc_adz60i:hover {
    transform: translateY(-6px);
    box-shadow: var(--f12fy);
}
.sc_adz60i .sc_iiqo0k {
    font-size: var(--fs-small);
    color: var(--f14h6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: var(--fw-semibold);
}
.sc_adz60i .sc_n4jwhn {
    font-family: var(--f3b8);
    font-size: 48px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: var(--f18cl);
}
.sc_adz60i .sc_n4jwhn .currency {
    font-size: 22px;
    vertical-align: top;
    color: var(--f14h6);
}
.sc_adz60i .plan-period { font-size: var(--fs-small); color: var(--text-muted); margin-bottom: 28px; }
.sc_adz60i .sc_owtoow { text-align: left; margin-bottom: 30px; }
.sc_adz60i .sc_owtoow li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}
.sc_adz60i .sc_owtoow li:last-child { border-bottom: none; }
.sc_adz60i .sc_owtoow li i { color: var(--f14h6); }
.sc_adz60i .sc_owtoow li.disabled { opacity: 0.4; text-decoration: line-through; }

.sc_ulni7e {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--f8dp);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--f10wb);
}
.sc_ulni7e:hover { transform: translateY(-5px); box-shadow: var(--f12fy); border-color: rgba(27,158,109,0.2); }
.sc_ulni7e .sc_z169uk { height: 210px; overflow: hidden; }
.sc_ulni7e .sc_z169uk img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.sc_ulni7e:hover .sc_z169uk img { transform: scale(1.06); }
.sc_ulni7e .card-body { padding: 24px; }
.sc_ulni7e .sc_e1cv79 {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.sc_ulni7e .sc_e1cv79 i { margin-right: 4px; color: var(--f14h6); }
.sc_ulni7e .card-title {
    font-family: var(--f3b8);
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: var(--fw-semibold);
}
.sc_ulni7e .card-title a { color: var(--text-primary); }
.sc_ulni7e .card-title a:hover { color: var(--f14h6); }

.sc_kh81tu {
    background: var(--f1mr);
    position: relative;
    overflow: hidden;
    border-radius: var(--f9x9);
}
.sc_kh81tu .cta-content { position: relative; z-index: 2; }
.sc_kh81tu .sc_ofplqc { font-size: var(--f20ye); color: #fff; }
.sc_kh81tu .sc_mmyszt { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 520px; }
.sc_kh81tu p, .sc_kh81tu li { color: rgba(255,255,255,0.8); }
.sc_kh81tu .sc_rjed9e { background: #fff; color: var(--f14h6); border: none; }
.sc_kh81tu .sc_rjed9e:hover { background: var(--bg-secondary); transform: translateY(-2px); }
.sc_kh81tu .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 0;
}
.cta-shape-1 { width: 350px; height: 350px; top: -150px; right: -80px; }
.cta-shape-2 { width: 220px; height: 220px; bottom: -90px; left: -50px; }

.newsletter-form { display: flex; gap: 12px; max-width: 460px; }
.newsletter-form input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--f4hr);
    padding: 14px 24px;
    color: var(--text-primary);
    font-family: var(--f5iu);
    font-size: var(--f17s6);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--f14h6); box-shadow: 0 0 0 3px rgba(27,158,109,0.08); }

.process-item { text-align: center; position: relative; padding: 0 20px; }
.process-item .sc_v4x7m5 {
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(27, 158, 109, 0.08);
    color: var(--f14h6);
    font-family: var(--f3b8);
    font-size: 22px;
    font-weight: var(--f18cl);
    margin: 0 auto 18px;
    transition: var(--transition);
}
.process-item:hover .sc_v4x7m5 {
    background: var(--f1mr);
    color: #fff;
}
.process-item .sc_xq4hh3 {
    font-family: var(--f3b8);
    font-size: var(--fs-h5);
    margin-bottom: 10px;
    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: 24px; right: -16px;
    color: var(--f14h6);
    font-size: 22px;
    opacity: 0.5;
}

.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: 60px;
    font-weight: var(--f18cl);
    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_e88l4z {
    background: #1a2e28;
    color: rgba(255,255,255,0.6);
}
.sc_e88l4z h1, .sc_e88l4z h2, .sc_e88l4z h3,
.sc_e88l4z h4, .sc_e88l4z h5 { color: #fff; }

.sc_f342s0 .sc_ubn1ep {
    font-family: var(--f3b8);
    font-size: 17px;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    font-weight: var(--fw-semibold);
}
.sc_f342s0 .sc_ubn1ep::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--f14h6);
    border-radius: 2px;
}
.sc_f342s0 p { color: rgba(255,255,255,0.45); font-size: var(--fs-small); }
.sc_y0emh0 a { color: rgba(255,255,255,0.45); font-size: var(--fs-small); transition: var(--transition); }
.sc_y0emh0 a:hover { color: var(--f14h6); padding-left: 5px; }
.sc_y0emh0 li { margin-bottom: 10px; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; color: rgba(255,255,255,0.45); font-size: var(--fs-small);
}
.footer-contact li i { color: var(--f14h6); margin-top: 4px; }
.sc_hlsie1 { display: flex; gap: 10px; margin-top: 20px; }
.sc_hlsie1 a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.sc_hlsie1 a:hover { background: var(--f14h6); color: #fff; }
.sc_tdf1c7 { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; margin-top: 50px; }
.sc_tdf1c7 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(--f14h6); }

.policy-content h1 { font-size: var(--f20ye); 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.8; 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(--f14h6); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

.sc_sfbxpi {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--f1mr);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 14px rgba(27,158,109,0.25);
}
.sc_sfbxpi.visible { opacity: 1; visibility: visible; }
.sc_sfbxpi:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(27,158,109,0.35); }

.sc_eb0nvt .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--f7kk);
    padding: 14px 20px;
    color: var(--text-primary);
    font-family: var(--f5iu);
    font-size: var(--f17s6);
}
.sc_eb0nvt .form-control:focus {
    border-color: var(--f14h6);
    box-shadow: 0 0 0 3px rgba(27, 158, 109, 0.08);
    background: var(--bg-card);
    color: var(--text-primary);
}
.sc_eb0nvt .form-control::placeholder { color: var(--text-muted); }
.sc_eb0nvt textarea.form-control { min-height: 120px; resize: vertical; }

.swiper-pagination-bullet { background: var(--border-color); opacity: 1; width: 10px; height: 10px; }
.swiper-pagination-bullet-active { background: var(--f14h6); width: 24px; border-radius: 10px; }
.swiper-button-prev,
.swiper-button-next {
    width: 44px; height: 44px;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-primary);
    box-shadow: var(--f10wb);
    border: 1px solid var(--border-light);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 14px; }
.swiper-button-prev:hover,
.swiper-button-next:hover { background: var(--f14h6); color: #fff; border-color: var(--f14h6); }

.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 5s ease-in-out infinite; }

@media (max-width: 1200px) { :root { --f19qm: 46px; --f20ye: 36px; } }

@media (max-width: 992px) {
    :root { --f19qm: 38px; --f20ye: 32px; --f21yy: 24px; --sc_mwgkoq: 80px 0; }
    .sc_zur45l {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--bg-primary);
        padding: 90px 28px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    }
    .sc_zur45l.active { right: 0; }
    .sc_zur45l .nav-link {
        display: block !important;
        font-size: 16px !important; padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-light); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    .sc_zur45l .nav-link:hover, .sc_zur45l .nav-link.active { color: var(--f14h6) !important; }
    .sc_zur45l .nav-link::after { display: none; }
    .sc_a2h8vm { display: none !important; }
    .sc_fnpbzf {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .sc_w73zvl {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.2);
        z-index: 9999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .sc_w73zvl.active { opacity: 1; visibility: visible; }
    .sc_nhp0x9 { font-size: var(--f19qm); }
    .process-item:not(:last-child)::after { display: none; }
    .sc_kfyn1a { font-size: 36px; }
    .sc_kh81tu { border-radius: var(--f8dp); }
}

@media (max-width: 768px) {
    :root { --f19qm: 32px; --f20ye: 26px; --f21yy: 22px; --fs-h4: 20px; --sc_mwgkoq: 60px 0; }
    .sc_je5dgi { margin-bottom: 36px; }
    .sc_xkhdxr { min-height: auto; padding: 130px 0 70px; }
    .sc_xaugs5 { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .sc_adz60i .sc_n4jwhn { font-size: 36px; }
    .sc_tdf1c7 { text-align: center; }
}

@media (max-width: 576px) {
    :root { --f19qm: 28px; --f20ye: 22px; --f21yy: 19px; --sc_mwgkoq: 44px 0; }
    .sc_zk4zr7 { padding: 24px; }
    .sc_adz60i { padding: 24px; }
    .sc_mgr65o { padding: 24px 18px; }
    .sc_tz4j92 { border-radius: var(--f7kk); }
}

.sc_v16ieh .sc_lr2ded { color: #fff; }
.sc_v16ieh .sc_nmzs1c { color: var(--f14h6); }
.sc_v16ieh .sc_hp9wec { color: rgba(255,255,255,0.55); }
.sc_v16ieh .sc_y0emh0 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.sc_v16ieh .sc_y0emh0 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(--f14h6) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
