

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #faf5ff;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f0ff;
    --text-primary: #1e1b4b;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --footer-dark-bg: #1e1b4b;
    --border-color: #e5e7eb;
    --border-light: #d1d5db;

    --q14u3: #8b5cf6;
    --q15q0: #ec4899;
    --q16mu: #06b6d4;
    --q1h8: linear-gradient(135deg, var(--q14u3), var(--q15q0));
    --q1h8-alt: linear-gradient(135deg, var(--q15q0), var(--q16mu));
    --accent-glow: 0 4px 14px rgba(139, 92, 246, 0.25);

    --q3a8: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --q5di: 'Inter', system-ui, sans-serif;

    --q19hb: 60px;
    --q20u5: 44px;
    --q21a9: 30px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --q17tn: 16px;
    --fs-small: 14px;

    --q18zd: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --q6eu: 10px;
    --q7v5: 14px;
    --q8ml: 20px;
    --q9ew: 28px;
    --q4uf: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --q10z8: 0 2px 8px rgba(0, 0, 0, 0.04);
    --q11gz: 0 4px 20px rgba(139, 92, 246, 0.08);
    --q12gv: 0 8px 32px rgba(139, 92, 246, 0.12);
    --q13zr: 0 16px 48px rgba(139, 92, 246, 0.16);

    --sc_d5h6vg: 100px 0;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--q5di);
    font-size: var(--q17tn);
    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(--q14u3);
    transition: var(--transition);
}

a:hover { color: var(--q15q0); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; padding: 0; margin: 0; }

::selection {
    background: var(--q14u3);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--q3a8);
    font-weight: var(--q18zd);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

h1 { font-size: var(--q19hb); letter-spacing: -1px; }
h2 { font-size: var(--q20u5); letter-spacing: -0.5px; }
h3 { font-size: var(--q21a9); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--q1h8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--q14u3); }
.text-accent-2 { color: var(--q15q0); }
.text-dark { color: var(--text-primary); }
.sc_zvdzjz { color: var(--text-muted); }

.sc_d5h6vg { padding: var(--sc_d5h6vg); position: relative; }
.sc_d5h6vg-sm { padding: 60px 0; }
.sc_d5h6vg-lg { padding: 140px 0; }
.sc_d5h6vg > .container { position: relative; z-index: 1; }

.sc_pkmr7f { background-color: var(--bg-primary); }
.sc_zi539t { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--q1h8); }
.bg-gradient-subtle {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.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.85); }
.bg-gradient-custom a:not(.sc_ec39gx) { color: #fff; }
.bg-gradient-custom .sc_l18eyr { color: #fff; }
.bg-gradient-custom .sc_veq59l { color: rgba(255,255,255,0.7); }

.sc_ar7yne {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: rgba(255, 255, 255, 0.7);
}
.sc_ar7yne h1, .sc_ar7yne h2, .sc_ar7yne h3,
.sc_ar7yne h4, .sc_ar7yne h5, .sc_ar7yne h6 { color: #fff; }
.sc_ar7yne p, .sc_ar7yne li, .sc_ar7yne span:not(.badge) { color: rgba(255,255,255,0.7); }
.sc_ar7yne a:not(.sc_ec39gx) { color: rgba(255,255,255,0.8); }
.sc_ar7yne a:not(.sc_ec39gx):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_nr74bn {
    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.5s ease, visibility 0.5s ease;
}

.sc_nr74bn.loaded { opacity: 0; visibility: hidden; }

.sc_oxo5lo {
    display: flex;
    gap: 10px;
}

.sc_vp5qxs {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: sc_nr74bnBounce 1.4s ease-in-out infinite both;
}

.sc_vp5qxs:nth-child(1) { background: var(--q14u3); animation-delay: -0.32s; }
.sc_vp5qxs:nth-child(2) { background: var(--q15q0); animation-delay: -0.16s; }
.sc_vp5qxs:nth-child(3) { background: var(--q16mu); animation-delay: 0; }

@keyframes sc_nr74bnBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.sc_ec39gx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: var(--q17tn);
    font-weight: var(--fw-semibold);
    border-radius: var(--q4uf);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.sc_yox73f {
    background: var(--q1h8);
    color: #fff;
    box-shadow: var(--accent-glow);
}

.sc_yox73f:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
    color: #fff;
}

.sc_ianth8 {
    background: transparent;
    color: var(--q14u3);
    border: 2px solid var(--q14u3);
}

.sc_ianth8:hover {
    background: var(--q14u3);
    color: #fff;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--q14u3);
    padding: 0;
    font-weight: var(--fw-medium);
}

.btn-link-custom:hover { color: var(--q15q0); }

.btn-link-custom i { transition: transform 0.3s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

.sc_zvcsw1 {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.sc_zvcsw1.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--q10z8);
}

.sc_xafub1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc_cgfycy {
    font-family: var(--q3a8);
    font-size: 26px;
    font-weight: 800;
    background: var(--q1h8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sc_cgfycy:hover {
    opacity: 0.9;
}

.sc_qjkr6e {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sc_qjkr6e .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}

.sc_qjkr6e .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--q1h8);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.sc_qjkr6e .nav-link:hover,
.sc_qjkr6e .nav-link.active { color: var(--q14u3); }

.sc_qjkr6e .nav-link:hover::after,
.sc_qjkr6e .nav-link.active::after { width: 100%; }

.sc_k6e9jp { margin-left: 16px; }

.sc_ytxucp, .sc_pd446l { display: flex; align-items: center; gap: 32px; }
.sc_ytxucp .nav-link, .sc_pd446l .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-medium); padding: 8px 0;
}
.sc_ytxucp .nav-link:hover, .sc_pd446l .nav-link:hover { color: var(--q14u3); }
.sc_ytxucp ~ .sc_qjkr6e { display: none; }

.sc_duo3hk {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.sc_duo3hk .sc_vr8yhd {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sc_duo3hk.active .sc_vr8yhd:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.sc_duo3hk.active .sc_vr8yhd:nth-child(2) { opacity: 0; }
.sc_duo3hk.active .sc_vr8yhd:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.sc_lw933x {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}

.sc_lw933x .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.sc_lw933x .sc_c2wsze {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at top right, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
}

.sc_cdd3y3 {
    position: relative;
    z-index: 2;
}

.sc_q2r3ap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--q14u3);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: var(--q4uf);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.sc_i2z0ez {
    font-size: var(--q19hb);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.sc_edlas1 {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.sc_kizkh6 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sc_h3xodh {
    position: relative;
    z-index: 2;
}

.sc_h3xodh img {
    border-radius: var(--q9ew);
    box-shadow: var(--q13zr);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--q14u3);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--q15q0);
    bottom: -100px;
    left: -100px;
}

.sc_gp4q4s {
    margin-bottom: 60px;
}

.sc_bkhmkd {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: var(--q18zd);
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--q1h8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.sc_iqjpp6 {
    font-size: var(--q20u5);
    font-weight: var(--q18zd);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.sc_g4lc12 {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

.sc_gp4q4s.text-center .sc_g4lc12 {
    margin-left: auto;
    margin-right: auto;
}

.sc_b5ools {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--q8ml);
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--q10z8);
    position: relative;
    overflow: hidden;
}

.sc_b5ools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--q1h8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sc_b5ools:hover::before { opacity: 1; }

.sc_b5ools:hover {
    transform: translateY(-5px);
    box-shadow: var(--q12gv);
}

.sc_b5ools .sc_zjq3jj {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--q7v5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--q14u3);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.sc_b5ools:hover .sc_zjq3jj {
    background: var(--q1h8);
    color: #fff;
    transform: scale(1.1);
}

.sc_b5ools .sc_pxw2z3 {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.sc_b5ools .sc_r4ibs8 {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.sc_b5ools-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--q7v5);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--q10z8);
}

.sc_b5ools-horizontal:hover {
    box-shadow: var(--q11gz);
    border-color: var(--q14u3);
    transform: translateY(-3px);
}

.sc_b5ools-horizontal .sc_zjq3jj {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--q6eu);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--q14u3);
    font-size: 24px;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--q9ew);
    overflow: hidden;
    box-shadow: var(--q13zr);
}

.about-section .about-image img {
    width: 100%;
    border-radius: var(--q9ew);
}

.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--q1h8);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--q7v5);
    text-align: center;
    box-shadow: var(--q12gv);
}

.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--q18zd);
    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: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.about-list li i {
    color: var(--q14u3);
    font-size: 16px;
}

.sc_cr10cf {
    background: var(--bg-secondary);
}

.sc_cr10cf.bg-gradient-custom {
    background: var(--q1h8);
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.sc_l18eyr {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.bg-gradient-custom .sc_l18eyr { color: #fff; }
.sc_l18eyr { color: var(--text-primary); }

.sc_l18eyr .counter-suffix {
    background: var(--q1h8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sc_veq59l {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bg-gradient-custom .sc_veq59l {
    color: rgba(255, 255, 255, 0.7);
}

.sc_uc8p0a {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--q8ml);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--q10z8);
}

.sc_uc8p0a:hover {
    transform: translateY(-8px);
    box-shadow: var(--q13zr);
}

.sc_uc8p0a .sc_d0vzci {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.sc_uc8p0a .sc_d0vzci img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sc_uc8p0a:hover .sc_d0vzci img {
    transform: scale(1.08);
}

.sc_uc8p0a .sc_d0vzci .card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--q1h8);
    color: #fff;
    padding: 6px 18px;
    border-radius: var(--q4uf);
    font-size: 12px;
    font-weight: var(--q18zd);
}

.sc_uc8p0a .card-body { padding: 28px; }

.sc_uc8p0a .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.sc_uc8p0a .card-title a { color: var(--text-primary); }
.sc_uc8p0a .card-title a:hover { color: var(--q14u3); }

.sc_uc8p0a .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.sc_uc8p0a .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.sc_uc8p0a .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--q18zd);
    background: var(--q1h8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sc_f3u893 {
    text-align: center;
    transition: var(--transition);
}

.sc_f3u893:hover { transform: translateY(-5px); }

.sc_f3u893 .sc_uouzug {
    position: relative;
    overflow: hidden;
    border-radius: var(--q9ew);
    margin-bottom: 20px;
    box-shadow: var(--q11gz);
}

.sc_f3u893 .sc_uouzug img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sc_f3u893:hover .sc_uouzug img { transform: scale(1.05); }

.sc_f3u893 .team-social {
    position: absolute;
    bottom: -60px;
    left: 0; width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    transition: bottom 0.3s ease;
}

.sc_f3u893:hover .team-social { bottom: 0; }

.team-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.team-social a:hover { background: var(--q14u3); }

.sc_f3u893 .sc_e7e8db {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}

.sc_f3u893 .sc_hwkwzz {
    font-size: var(--fs-small);
    background: var(--q1h8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--fw-medium);
}

.sc_yt4key {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--q8ml);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--q10z8);
    position: relative;
}

.sc_yt4key::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--q1h8);
    border-radius: var(--q8ml) var(--q8ml) 0 0;
}

.sc_yt4key:hover {
    box-shadow: var(--q12gv);
    transform: translateY(-3px);
}

.sc_yt4key .quote-icon {
    font-size: 36px;
    background: var(--q1h8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.sc_yt4key .sc_vfzey0 {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.sc_yt4key .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sc_yt4key .sc_qjwoxr {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(139, 92, 246, 0.2);
}

.sc_yt4key .sc_czn6s0 {
    font-size: var(--q17tn);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.sc_yt4key .sc_xwvkf5 {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.sc_yt4key .stars {
    color: #f59e0b;
    margin-bottom: 16px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--q8ml);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--q11gz);
}

.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img { transform: scale(1.1); }

.portfolio-item .portfolio-overlay { color: #fff;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(30, 27, 75, 0.9) 0%, rgba(30, 27, 75, 0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    background: var(--q1h8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: var(--q18zd);
}

.portfolio-overlay .portfolio-title {
    font-size: var(--fs-h5);
    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);
    border-radius: var(--q7v5) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--q10z8);
}

.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    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(--q14u3);
}

.faq-section .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sc_dh1b1q {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--q9ew);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--q10z8);
    overflow: hidden;
}

.sc_dh1b1q.featured {
    border-color: transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                var(--q1h8) border-box;
    border: 2px solid transparent;
    box-shadow: var(--q12gv);
}

.sc_dh1b1q.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--q1h8);
    color: #fff;
    padding: 6px 24px;
    font-size: 12px;
    font-weight: var(--q18zd);
    border-radius: 0 0 var(--q6eu) var(--q6eu);
}

.sc_dh1b1q:hover {
    transform: translateY(-8px);
    box-shadow: var(--q13zr);
}

.sc_dh1b1q .sc_nlob8r {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: var(--q18zd);
    margin-bottom: 16px;
}

.sc_dh1b1q .sc_pirvng {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.sc_dh1b1q .sc_pirvng .currency {
    font-size: 24px;
    vertical-align: top;
    background: var(--q1h8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sc_dh1b1q .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 30px;
}

.sc_dh1b1q .sc_hsmykp {
    text-align: left;
    margin-bottom: 30px;
}

.sc_dh1b1q .sc_hsmykp 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_dh1b1q .sc_hsmykp li:last-child { border-bottom: none; }
.sc_dh1b1q .sc_hsmykp li i { color: var(--q14u3); }
.sc_dh1b1q .sc_hsmykp li.disabled { opacity: 0.4; text-decoration: line-through; }

.sc_njibke {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--q8ml);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--q10z8);
}

.sc_njibke:hover {
    transform: translateY(-5px);
    box-shadow: var(--q12gv);
}

.sc_njibke .sc_d0vzci {
    height: 200px;
    overflow: hidden;
}

.sc_njibke .sc_d0vzci img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sc_njibke:hover .sc_d0vzci img { transform: scale(1.05); }

.sc_njibke .card-body { padding: 24px; }

.sc_njibke .sc_xc6tb9 {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.sc_njibke .sc_xc6tb9 i {
    margin-right: 4px;
    color: var(--q14u3);
}

.sc_njibke .card-title {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}

.sc_njibke .card-title a { color: var(--text-primary); }
.sc_njibke .card-title a:hover { color: var(--q14u3); }

.sc_a1hfla {
    background: var(--q1h8);
    position: relative;
    overflow: hidden;
}

.sc_a1hfla .cta-content {
    position: relative;
    z-index: 2;
}

.sc_a1hfla .sc_up0t47 {
    font-size: var(--q20u5);
    color: #fff;
    letter-spacing: -0.5px;
}

.sc_a1hfla .sc_a767r1 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
}

.sc_a1hfla p, .sc_a1hfla li { color: rgba(255,255,255,0.85); }

.sc_a1hfla .sc_ec39gx {
    background: #fff;
    color: var(--q14u3);
    font-weight: var(--q18zd);
}

.sc_a1hfla .sc_ec39gx:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.sc_a1hfla .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 0;
}

.cta-shape-1 { width: 400px; height: 400px; top: -200px; right: -100px; }
.cta-shape-2 { width: 300px; height: 300px; bottom: -150px; left: -100px; }

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--q4uf);
    padding: 14px 24px;
    color: var(--text-primary);
    font-size: var(--q17tn);
}

.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--q14u3); box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-item .sc_xqj305 {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--q1h8);
    color: #fff;
    font-size: 24px;
    font-weight: var(--q18zd);
    margin: 0 auto 20px;
    box-shadow: var(--accent-glow);
}

.process-item .sc_pvufzy {
    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: 32px; right: -20px;
    width: 40px; height: 2px;
    background: var(--q1h8);
    opacity: 0.3;
}

.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(--q18zd);
    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_xinvq3 {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: rgba(255, 255, 255, 0.6);
}

.sc_xinvq3 h1, .sc_xinvq3 h2, .sc_xinvq3 h3,
.sc_xinvq3 h4, .sc_xinvq3 h5 { color: #fff; }

.sc_ihv461 .sc_xeg9ux {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.sc_ihv461 .sc_xeg9ux::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--q1h8);
    border-radius: 2px;
}

.sc_ihv461 p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
}

.sc_mj7ror a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}

.sc_mj7ror a:hover {
    color: #fff;
    padding-left: 5px;
}

.sc_mj7ror li { margin-bottom: 10px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
}

.footer-contact li i { color: var(--q15q0); margin-top: 4px; }

.sc_b9uxq5 {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.sc_b9uxq5 a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.sc_b9uxq5 a:hover {
    background: var(--q1h8);
    border-color: transparent;
    color: #fff;
}

.sc_aipiv0 {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 60px;
}

.sc_aipiv0 p {
    margin: 0;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.4);
}

.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.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policy a:hover {
    color: var(--q14u3);
}

.policy-content h1 {
    font-size: var(--q20u5);
    font-weight: var(--q18zd);
    margin-bottom: 24px;
    color: var(--text-primary);
}

.policy-content h2 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.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(--q14u3);
    text-decoration: underline;
}

.policy-content strong {
    color: var(--text-primary);
}

.sc_vqoe2k {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--q1h8);
    color: #fff;
    border: none;
    border-radius: var(--q7v5);
    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: var(--accent-glow);
}

.sc_vqoe2k.visible { opacity: 1; visibility: visible; }
.sc_vqoe2k:hover { transform: translateY(-3px); }

.sc_r1loi5 .form-control {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--q6eu);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--q17tn);
}

.sc_r1loi5 .form-control:focus {
    border-color: var(--q14u3);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.sc_r1loi5 .form-control::placeholder { color: var(--text-muted); }
.sc_r1loi5 textarea.form-control { min-height: 150px; resize: vertical; }

.swiper-pagination-bullet { background: var(--border-light); opacity: 1; }
.swiper-pagination-bullet-active {
    background: var(--q1h8);
    width: 24px;
    border-radius: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 48px; height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--q6eu);
    color: var(--text-primary);
    box-shadow: var(--q10z8);
}

.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--q1h8);
    border-color: transparent;
    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(-15px); }
}

@keyframes floatLeftRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.float-anim { animation: floatUpDown 3s ease-in-out infinite; }
.float-anim-2 { animation: floatLeftRight 4s ease-in-out infinite; }

@media (max-width: 1200px) {
    :root { --q19hb: 50px; --q20u5: 38px; }
}

@media (max-width: 992px) {
    :root {
        --q19hb: 40px; --q20u5: 32px; --q21a9: 26px;
        --sc_d5h6vg: 80px 0;
    }

    .sc_qjkr6e {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-body);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        box-shadow: -4px 0 30px rgba(0,0,0,0.25);
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
    }

    .sc_qjkr6e.active {
        right: 0;
    }

    .sc_qjkr6e .nav-link {
        display: block !important;
        font-size: 18px !important;
        padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text-primary) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .sc_qjkr6e .nav-link:hover,
    .sc_qjkr6e .nav-link.active {
        color: var(--q14u3) !important;
    }

    .sc_qjkr6e .nav-link::after {
        display: none;
    }

    .sc_k6e9jp { display: none !important; }

    .sc_duo3hk {
        display: flex !important;
        z-index: 10001;
        position: relative;
        pointer-events: auto !important;
        opacity: 1 !important;
        background: none !important;
        border: none !important;
    }

    .sc_e8epet {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .sc_e8epet.active {
        opacity: 1;
        visibility: visible;
    }

    .sc_i2z0ez { font-size: var(--q19hb); }
    .process-item:not(:last-child)::after { display: none; }
    .sc_l18eyr { font-size: 40px; }
}

@media (max-width: 768px) {
    :root {
        --q19hb: 34px; --q20u5: 28px; --q21a9: 22px; --fs-h4: 20px;
        --sc_d5h6vg: 60px 0;
    }
    .sc_gp4q4s { margin-bottom: 40px; }
    .sc_lw933x { min-height: auto; padding: 140px 0 80px; }
    .sc_kizkh6 { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .sc_dh1b1q .sc_pirvng { font-size: 40px; }
    .sc_aipiv0 { text-align: center; }
}

@media (max-width: 576px) {
    :root {
        --q19hb: 28px; --q20u5: 24px; --q21a9: 20px;
        --sc_d5h6vg: 50px 0;
    }
    .sc_yt4key { padding: 24px; }
    .sc_dh1b1q { padding: 28px; }
    .sc_b5ools { padding: 28px 20px; }
}

.sc_ar7yne .sc_q2r3ap { color: #fff; }
.sc_ar7yne .sc_bkhmkd { color: var(--q14u3); }
.sc_ar7yne .sc_zvdzjz { color: rgba(255,255,255,0.55); }
.sc_ar7yne .sc_mj7ror a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.sc_ar7yne .sc_mj7ror 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(--q14u3) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
