/* ================================================================
   KIT: VIBRANT STARTUP
   Яркая тема с градиентами и энергичным стилем
   Вдохновлён: Figma.com, Webflow.com, Canva
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   AI: Замени --a1432 и --a15fz на цвета из color_palette
---------------------------------------------------------------- */
: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;

    --a1432: #8b5cf6;
    --a15fz: #ec4899;
    --a1665: #06b6d4;
    --a1wp: linear-gradient(135deg, var(--a1432), var(--a15fz));
    --a1wp-alt: linear-gradient(135deg, var(--a15fz), var(--a1665));
    --accent-glow: 0 4px 14px rgba(139, 92, 246, 0.25);

    --a33z: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --a582: 'Inter', system-ui, sans-serif;

    --a19of: 60px;
    --a204d: 44px;
    --a21fr: 30px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --a17gf: 16px;
    --fs-small: 14px;

    --a18c5: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --a6g8: 10px;
    --a7y5: 14px;
    --a8ah: 20px;
    --a9vj: 28px;
    --a4og: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --a10t8: 0 2px 8px rgba(0, 0, 0, 0.04);
    --a11d0: 0 4px 20px rgba(139, 92, 246, 0.08);
    --a1209: 0 8px 32px rgba(139, 92, 246, 0.12);
    --a13ix: 0 16px 48px rgba(139, 92, 246, 0.16);

    --_pn1s9: 100px 0;
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--a582);
    font-size: var(--a17gf);
    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(--a1432);
    transition: var(--transition);
}

a:hover { color: var(--a15fz); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; padding: 0; margin: 0; }

::selection {
    background: var(--a1432);
    color: #fff;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--a33z);
    font-weight: var(--a18c5);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

h1 { font-size: var(--a19of); letter-spacing: -1px; }
h2 { font-size: var(--a204d); letter-spacing: -0.5px; }
h3 { font-size: var(--a21fr); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--a1432); }
.text-accent-2 { color: var(--a15fz); }
.text-dark { color: var(--text-primary); }
._zided4r { color: var(--text-muted); }

/* ----------------------------------------------------------------
   UTILITIES
---------------------------------------------------------------- */
._pn1s9 { padding: var(--_pn1s9); position: relative; }
._pn1s9-sm { padding: 60px 0; }
._pn1s9-lg { padding: 140px 0; }
._pn1s9 > .container { position: relative; z-index: 1; }

._ajp6u { background-color: var(--bg-primary); }
._4grrcb { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--a1wp); }
.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(._a7tg8) { color: #fff; }
.bg-gradient-custom ._uj6fxze { color: #fff; }
.bg-gradient-custom ._z3ote { color: rgba(255,255,255,0.7); }

._xrb7h {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: rgba(255, 255, 255, 0.7);
}
._xrb7h h1, ._xrb7h h2, ._xrb7h h3,
._xrb7h h4, ._xrb7h h5, ._xrb7h h6 { color: #fff; }
._xrb7h p, ._xrb7h li, ._xrb7h span:not(.badge) { color: rgba(255,255,255,0.7); }
._xrb7h a:not(._a7tg8) { color: rgba(255,255,255,0.8); }
._xrb7h a:not(._a7tg8):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; }

/* ----------------------------------------------------------------
   PRELOADER
---------------------------------------------------------------- */
._801eit {
    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;
}

._801eit.loaded { opacity: 0; visibility: hidden; }

._eev06u {
    display: flex;
    gap: 10px;
}

._sifxy1 {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: _801eitBounce 1.4s ease-in-out infinite both;
}

._sifxy1:nth-child(1) { background: var(--a1432); animation-delay: -0.32s; }
._sifxy1:nth-child(2) { background: var(--a15fz); animation-delay: -0.16s; }
._sifxy1:nth-child(3) { background: var(--a1665); animation-delay: 0; }

@keyframes _801eitBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
._a7tg8 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: var(--a17gf);
    font-weight: var(--fw-semibold);
    border-radius: var(--a4og);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

._5sjdol {
    background: var(--a1wp);
    color: #fff;
    box-shadow: var(--accent-glow);
}

._5sjdol:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
    color: #fff;
}

._w0r8x {
    background: transparent;
    color: var(--a1432);
    border: 2px solid var(--a1432);
}

._w0r8x:hover {
    background: var(--a1432);
    color: #fff;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--a1432);
    padding: 0;
    font-weight: var(--fw-medium);
}

.btn-link-custom:hover { color: var(--a15fz); }

.btn-link-custom i { transition: transform 0.3s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

/* ----------------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------------- */
._7yop8an {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

._7yop8an.scrolled {
    background: inherit;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 20px 0;
    box-shadow: none;
}

._6xcaw {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

._lonwy {
    font-family: var(--a33z);
    font-size: 26px;
    font-weight: 800;
    background: var(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._lonwy:hover {
    opacity: 0.9;
}

._8gcmnak {
    display: flex;
    align-items: center;
    gap: 32px;
}

._8gcmnak .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}

._8gcmnak .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--a1wp);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

._8gcmnak .nav-link:hover,
._8gcmnak .nav-link.active { color: var(--a1432); }

._8gcmnak .nav-link:hover::after,
._8gcmnak .nav-link.active::after { width: 100%; }

._2n83nq { margin-left: 16px; }

/* Centered logo variant: split nav groups */
._fv64g, ._k6wdp0t { display: flex; align-items: center; gap: 32px; }
._fv64g .nav-link, ._k6wdp0t .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-medium); padding: 8px 0;
}
._fv64g .nav-link:hover, ._k6wdp0t .nav-link:hover { color: var(--a1432); }
._fv64g ~ ._8gcmnak { display: none; }

._sptgfc {
    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;
}

._sptgfc ._02sdjnl {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

._sptgfc.active ._02sdjnl:nth-child(1) { transform: translateY(8px) rotate(45deg); }
._sptgfc.active ._02sdjnl:nth-child(2) { opacity: 0; }
._sptgfc.active ._02sdjnl:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO SECTION
---------------------------------------------------------------- */
._wsw5b58 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}

._wsw5b58 .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

._wsw5b58 ._dzskih {
    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%);
}

._20xequg {
    position: relative;
    z-index: 2;
}

._10t1s {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--a1432);
    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(--a4og);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

._7xud2n {
    font-size: var(--a19of);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

._qm4h62c {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.6;
}

._nji34s5 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

._jw3ezew {
    position: relative;
    z-index: 2;
}

._jw3ezew img {
    border-radius: var(--a9vj);
    box-shadow: var(--a13ix);
}

.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(--a1432);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--a15fz);
    bottom: -100px;
    left: -100px;
}

/* ----------------------------------------------------------------
   SECTION TITLE
---------------------------------------------------------------- */
._8c2bd70 {
    margin-bottom: 60px;
}

._vg8t076 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: var(--a18c5);
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

._xjowbsb {
    font-size: var(--a204d);
    font-weight: var(--a18c5);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

._7ogzl {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

._8c2bd70.text-center ._7ogzl {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------------
   ICON BOX / FEATURE CARD
---------------------------------------------------------------- */
._9ylp6i {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a8ah);
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--a10t8);
    position: relative;
    overflow: hidden;
}

._9ylp6i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--a1wp);
    opacity: 0;
    transition: opacity 0.3s ease;
}

._9ylp6i:hover::before { opacity: 1; }

._9ylp6i:hover {
    transform: translateY(-5px);
    box-shadow: var(--a1209);
}

._9ylp6i ._yyob4 {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--a7y5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--a1432);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

._9ylp6i:hover ._yyob4 {
    background: var(--a1wp);
    color: #fff;
    transform: scale(1.1);
}

._9ylp6i ._72i0uw {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

._9ylp6i ._8bz6mve {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

/* horizontal variant */
._9ylp6i-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7y5);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--a10t8);
}

._9ylp6i-horizontal:hover {
    box-shadow: var(--a11d0);
    border-color: var(--a1432);
    transform: translateY(-3px);
}

._9ylp6i-horizontal ._yyob4 {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--a6g8);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--a1432);
    font-size: 24px;
}

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about-section .about-image {
    position: relative;
    border-radius: var(--a9vj);
    overflow: hidden;
    box-shadow: var(--a13ix);
}

.about-section .about-image img {
    width: 100%;
    border-radius: var(--a9vj);
}

.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--a1wp);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--a7y5);
    text-align: center;
    box-shadow: var(--a1209);
}

.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--a18c5);
    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(--a1432);
    font-size: 16px;
}

/* ----------------------------------------------------------------
   COUNTER / STATS
---------------------------------------------------------------- */
._s084k {
    background: var(--bg-secondary);
}

._s084k.bg-gradient-custom {
    background: var(--a1wp);
}

.counter-item {
    text-align: center;
    padding: 20px;
}

._uj6fxze {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.bg-gradient-custom ._uj6fxze { color: #fff; }
._uj6fxze { color: var(--text-primary); }

._uj6fxze .counter-suffix {
    background: var(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._z3ote {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bg-gradient-custom ._z3ote {
    color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------------------------------
   SERVICE CARDS
---------------------------------------------------------------- */
._necpb {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a8ah);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--a10t8);
}

._necpb:hover {
    transform: translateY(-8px);
    box-shadow: var(--a13ix);
}

._necpb ._cdwkhq {
    position: relative;
    overflow: hidden;
    height: 220px;
}

._necpb ._cdwkhq img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

._necpb:hover ._cdwkhq img {
    transform: scale(1.08);
}

._necpb ._cdwkhq .card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--a1wp);
    color: #fff;
    padding: 6px 18px;
    border-radius: var(--a4og);
    font-size: 12px;
    font-weight: var(--a18c5);
}

._necpb .card-body { padding: 28px; }

._necpb .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

._necpb .card-title a { color: var(--text-primary); }
._necpb .card-title a:hover { color: var(--a1432); }

._necpb .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

._necpb .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

._necpb .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--a18c5);
    background: var(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------------------------------
   TEAM SECTION
---------------------------------------------------------------- */
._ajbob24 {
    text-align: center;
    transition: var(--transition);
}

._ajbob24:hover { transform: translateY(-5px); }

._ajbob24 ._347d67f {
    position: relative;
    overflow: hidden;
    border-radius: var(--a9vj);
    margin-bottom: 20px;
    box-shadow: var(--a11d0);
}

._ajbob24 ._347d67f img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

._ajbob24:hover ._347d67f img { transform: scale(1.05); }

._ajbob24 .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;
}

._ajbob24: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(--a1432); }

._ajbob24 ._idnp2 {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}

._ajbob24 ._riayz {
    font-size: var(--fs-small);
    background: var(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--fw-medium);
}

/* ----------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------- */
._mr5y2ak {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a8ah);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--a10t8);
    position: relative;
}

._mr5y2ak::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--a1wp);
    border-radius: var(--a8ah) var(--a8ah) 0 0;
}

._mr5y2ak:hover {
    box-shadow: var(--a1209);
    transform: translateY(-3px);
}

._mr5y2ak .quote-icon {
    font-size: 36px;
    background: var(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

._mr5y2ak ._pjyuchl {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

._mr5y2ak .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

._mr5y2ak ._2xt4qp {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(139, 92, 246, 0.2);
}

._mr5y2ak ._83onicu {
    font-size: var(--a17gf);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}

._mr5y2ak ._02coot {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

._mr5y2ak .stars {
    color: #f59e0b;
    margin-bottom: 16px;
}

/* ----------------------------------------------------------------
   PORTFOLIO / GALLERY
---------------------------------------------------------------- */
.portfolio-item {
    position: relative;
    border-radius: var(--a8ah);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--a11d0);
}

.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 {
    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(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: var(--a18c5);
}

.portfolio-overlay .portfolio-title {
    font-size: var(--fs-h5);
    color: #fff;
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   FAQ / ACCORDION
---------------------------------------------------------------- */
.faq-section .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7y5) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--a10t8);
}

.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(--a1432);
}

.faq-section .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ----------------------------------------------------------------
   PRICING
---------------------------------------------------------------- */
._gua0jm {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a9vj);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--a10t8);
    overflow: hidden;
}

._gua0jm.featured {
    border-color: transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
                var(--a1wp) border-box;
    border: 2px solid transparent;
    box-shadow: var(--a1209);
}

._gua0jm.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--a1wp);
    color: #fff;
    padding: 6px 24px;
    font-size: 12px;
    font-weight: var(--a18c5);
    border-radius: 0 0 var(--a6g8) var(--a6g8);
}

._gua0jm:hover {
    transform: translateY(-8px);
    box-shadow: var(--a13ix);
}

._gua0jm ._1pwdh {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: var(--a18c5);
    margin-bottom: 16px;
}

._gua0jm ._rlzctl {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

._gua0jm ._rlzctl .currency {
    font-size: 24px;
    vertical-align: top;
    background: var(--a1wp);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._gua0jm .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 30px;
}

._gua0jm ._jl2nfwk {
    text-align: left;
    margin-bottom: 30px;
}

._gua0jm ._jl2nfwk 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);
}

._gua0jm ._jl2nfwk li:last-child { border-bottom: none; }
._gua0jm ._jl2nfwk li i { color: var(--a1432); }
._gua0jm ._jl2nfwk li.disabled { opacity: 0.4; text-decoration: line-through; }

/* ----------------------------------------------------------------
   BLOG CARDS
---------------------------------------------------------------- */
._55h2cze {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a8ah);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--a10t8);
}

._55h2cze:hover {
    transform: translateY(-5px);
    box-shadow: var(--a1209);
}

._55h2cze ._cdwkhq {
    height: 200px;
    overflow: hidden;
}

._55h2cze ._cdwkhq img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

._55h2cze:hover ._cdwkhq img { transform: scale(1.05); }

._55h2cze .card-body { padding: 24px; }

._55h2cze ._bbh09yx {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

._55h2cze ._bbh09yx i {
    margin-right: 4px;
    color: var(--a1432);
}

._55h2cze .card-title {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}

._55h2cze .card-title a { color: var(--text-primary); }
._55h2cze .card-title a:hover { color: var(--a1432); }

/* ----------------------------------------------------------------
   CTA SECTION
---------------------------------------------------------------- */
._wft175 {
    background: var(--a1wp);
    position: relative;
    overflow: hidden;
}

._wft175 .cta-content {
    position: relative;
    z-index: 2;
}

._wft175 ._2yq2v {
    font-size: var(--a204d);
    color: #fff;
    letter-spacing: -0.5px;
}

._wft175 ._expsdsn {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
}

._wft175 p, ._wft175 li { color: rgba(255,255,255,0.85); }

._wft175 ._a7tg8 {
    background: #fff;
    color: var(--a1432);
    font-weight: var(--a18c5);
}

._wft175 ._a7tg8:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

._wft175 .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
---------------------------------------------------------------- */
.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(--a4og);
    padding: 14px 24px;
    color: var(--text-primary);
    font-size: var(--a17gf);
}

.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--a1432); box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1); }

/* ----------------------------------------------------------------
   PROCESS / STEPS
---------------------------------------------------------------- */
.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-item ._gm4hl {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--a1wp);
    color: #fff;
    font-size: 24px;
    font-weight: var(--a18c5);
    margin: 0 auto 20px;
    box-shadow: var(--accent-glow);
}

.process-item ._gl0lr {
    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(--a1wp);
    opacity: 0.3;
}

/* ----------------------------------------------------------------
   MARQUEE / TEXT SLIDER
---------------------------------------------------------------- */
.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(--a18c5);
    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%); }
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
._cnset {
    background: linear-gradient(135deg, #1e1b4b, #312e81);
    color: rgba(255, 255, 255, 0.6);
}

._cnset h1, ._cnset h2, ._cnset h3,
._cnset h4, ._cnset h5 { color: #fff; }

._1upvd25 ._lwgxv {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

._1upvd25 ._lwgxv::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--a1wp);
    border-radius: 2px;
}

._1upvd25 p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
}

._sn9na32 a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}

._sn9na32 a:hover {
    color: #fff;
    padding-left: 5px;
}

._sn9na32 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(--a15fz); margin-top: 4px; }

._84b4jpm {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

._84b4jpm 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);
}

._84b4jpm a:hover {
    background: var(--a1wp);
    border-color: transparent;
    color: #fff;
}

._ijlsiy {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 60px;
}

._ijlsiy 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(--a1432);
}

/* ----------------------------------------------------------------
   POLICY PAGES
---------------------------------------------------------------- */
.policy-content h1 {
    font-size: var(--a204d);
    font-weight: var(--a18c5);
    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(--a1432);
    text-decoration: underline;
}

.policy-content strong {
    color: var(--text-primary);
}

/* ----------------------------------------------------------------
   SCROLL TO TOP
---------------------------------------------------------------- */
._6gastdv {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--a1wp);
    color: #fff;
    border: none;
    border-radius: var(--a7y5);
    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);
}

._6gastdv.visible { opacity: 1; visibility: visible; }
._6gastdv:hover { transform: translateY(-3px); }

/* ----------------------------------------------------------------
   FORMS
---------------------------------------------------------------- */
._m5lqpx .form-control {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--a6g8);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--a17gf);
}

._m5lqpx .form-control:focus {
    border-color: var(--a1432);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
    background: var(--bg-primary);
    color: var(--text-primary);
}

._m5lqpx .form-control::placeholder { color: var(--text-muted); }
._m5lqpx textarea.form-control { min-height: 150px; resize: vertical; }

/* ----------------------------------------------------------------
   SWIPER OVERRIDES
---------------------------------------------------------------- */
.swiper-pagination-bullet { background: var(--border-light); opacity: 1; }
.swiper-pagination-bullet-active {
    background: var(--a1wp);
    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(--a6g8);
    color: var(--text-primary);
    box-shadow: var(--a10t8);
}

.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--a1wp);
    border-color: transparent;
    color: #fff;
}

/* ----------------------------------------------------------------
   WOW.JS / ANIMATION HELPERS
---------------------------------------------------------------- */
.wow { visibility: hidden; }
.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; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1200px) {
    :root { --a19of: 50px; --a204d: 38px; }
}

/* ----------------------------------------------------------------
   MOBILE MENU — slide-in panel
---------------------------------------------------------------- */
@media (max-width: 992px) {
    :root {
        --a19of: 40px; --a204d: 32px; --a21fr: 26px;
        --_pn1s9: 80px 0;
    }

    ._8gcmnak {
        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;
    }

    ._8gcmnak.active {
        right: 0;
    }

    ._8gcmnak .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;
    }

    ._8gcmnak .nav-link:hover,
    ._8gcmnak .nav-link.active {
        color: var(--a1432) !important;
    }

    ._8gcmnak .nav-link::after {
        display: none;
    }

    ._2n83nq { display: none !important; }

    ._sptgfc {
        display: flex !important;
        z-index: 10001;
        position: relative;
        pointer-events: auto !important;
        opacity: 1 !important;
        background: none !important;
        border: none !important;
    }

    ._j694v {
        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;
    }

    ._j694v.active {
        opacity: 1;
        visibility: visible;
    }

    ._7xud2n { font-size: var(--a19of); }
    .process-item:not(:last-child)::after { display: none; }
    ._uj6fxze { font-size: 40px; }
}

@media (max-width: 768px) {
    :root {
        --a19of: 34px; --a204d: 28px; --a21fr: 22px; --fs-h4: 20px;
        --_pn1s9: 60px 0;
    }
    ._8c2bd70 { margin-bottom: 40px; }
    ._wsw5b58 { min-height: auto; padding: 140px 0 80px; }
    ._nji34s5 { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    ._gua0jm ._rlzctl { font-size: 40px; }
    ._ijlsiy { text-align: center; }
}

@media (max-width: 576px) {
    :root {
        --a19of: 28px; --a204d: 24px; --a21fr: 20px;
        --_pn1s9: 50px 0;
    }
    ._mr5y2ak { padding: 24px; }
    ._gua0jm { padding: 28px; }
    ._9ylp6i { padding: 28px 20px; }
}

/* [PATCH] _xrb7h gaps */
._xrb7h ._10t1s { color: #fff; }
._xrb7h ._vg8t076 { color: var(--a1432); }
._xrb7h ._zided4r { color: rgba(255,255,255,0.55); }
._xrb7h ._sn9na32 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
._xrb7h ._sn9na32 a:hover { color: #fff; }

/* [PATCH] text-force-light utilities */
/* Utility classes replacing inline color:#fff / color:rgba(255,255,255,...) */
.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(--a1432) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
