/* ================================================================
   KIT: INDUSTRIAL FACTORY
   Грубые формы, оранжевые акценты, индустриальные текстуры
   Вдохновлён: 7-factory, промышленные лендинги, заводская эстетика
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   AI: Замени --b14nn и --b15ff на цвета из color_palette
---------------------------------------------------------------- */
:root {
    --bg-primary: #f3f4f6;
    --bg-secondary: #e5e7eb;
    --bg-card: #ffffff;
    --bg-card-hover: #fff8f0;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #8b95a1;
    --footer-dark-bg: #111827;
    --border-color: #d1d5db;
    --border-light: rgba(17, 24, 39, 0.08);

    --b14nn: #f97316;
    --b15ff: #f59e0b;
    --b1ho: linear-gradient(135deg, var(--b14nn), var(--b15ff));
    --accent-glow: 0 8px 24px rgba(249, 115, 22, 0.25);

    --b3xj: 'Oswald', 'Bebas Neue', 'Arial Narrow', system-ui, sans-serif;
    --b52s: 'Inter', system-ui, sans-serif;

    --b19tn: 62px;
    --b20ik: 46px;
    --b21ij: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --b172q: 16px;
    --fs-small: 14px;

    --b18v3: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --b60o: 6px;
    --b7lc: 10px;
    --b8oq: 14px;
    --b9mq: 20px;
    --b4f5: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --b10eg: 0 2px 8px rgba(17, 24, 39, 0.06);
    --b11xs: 0 8px 24px rgba(17, 24, 39, 0.10);
    --b12h1: 0 16px 48px rgba(17, 24, 39, 0.14);
    --b13s8: 0 24px 64px rgba(17, 24, 39, 0.18);

    --_wayuw: 100px 0;
    --container-width: 1200px;
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--b52s);
    font-size: var(--b172q);
    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(--b14nn);
    transition: var(--transition);
}
a:hover { color: var(--b15ff); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--b14nn); color: #fff; }

/* ----------------------------------------------------------------
   TYPOGRAPHY — industrial bold uppercase
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--b3xj);
    font-weight: var(--b18v3);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 { font-size: var(--b19tn); }
h2 { font-size: var(--b20ik); }
h3 { font-size: var(--b21ij); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--b1ho);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--b14nn); }
.text-accent-2 { color: var(--b15ff); }
.text-dark { color: var(--text-primary); }
._kpj405 { color: var(--text-muted); }

/* ----------------------------------------------------------------
   UTILITIES
---------------------------------------------------------------- */
._wayuw { padding: var(--_wayuw); position: relative; }
._wayuw-sm { padding: 60px 0; }
._wayuw-lg { padding: 130px 0; }
._wayuw > .container { position: relative; z-index: 1; }

._cy4s3 { background-color: var(--bg-primary); }
._jw3hg { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--b1ho); 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(._rvhcc) { color: #fff; }
.bg-gradient-custom ._zlbtn { color: #fff; }
.bg-gradient-custom ._tk4vv0 { color: rgba(255,255,255,0.7); }

._9xgle2 {
    background-color: #1f2937;
    color: rgba(255,255,255,0.8);
}
._9xgle2 h1, ._9xgle2 h2, ._9xgle2 h3,
._9xgle2 h4, ._9xgle2 h5, ._9xgle2 h6 { color: #fff; }
._9xgle2 p, ._9xgle2 li, ._9xgle2 span:not(.badge) { color: rgba(255,255,255,0.8); }
._9xgle2 a:not(._rvhcc) { color: rgba(255,255,255,0.85); }
._9xgle2 a:not(._rvhcc):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
---------------------------------------------------------------- */
._yg3j1 {
    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.4s ease, visibility 0.4s ease;
}
._yg3j1.loaded { opacity: 0; visibility: hidden; }
._gho6x8 { display: flex; gap: 8px; }
._2njzr {
    width: 14px; height: 14px;
    background: var(--b14nn);
    border-radius: 2px;
    animation: _yg3j1Bounce 1.4s ease-in-out infinite both;
}
._2njzr:nth-child(1) { animation-delay: -0.32s; }
._2njzr:nth-child(2) { animation-delay: -0.16s; background: var(--text-primary); }
._2njzr:nth-child(3) { animation-delay: 0; }

@keyframes _yg3j1Bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ----------------------------------------------------------------
   BUTTONS — industrial, bold, squared edges
---------------------------------------------------------------- */
._rvhcc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: var(--b172q);
    font-weight: var(--fw-semibold);
    border-radius: var(--b60o);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

._xm01c {
    background: var(--b14nn);
    color: #fff;
    border-color: var(--b14nn);
    box-shadow: var(--accent-glow);
}
._xm01c:hover {
    background: var(--b15ff);
    border-color: var(--b15ff);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
}

._lihaq {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}
._lihaq:hover {
    background: var(--b14nn);
    color: #fff;
    border-color: var(--b14nn);
    transform: translateY(-2px);
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--b14nn);
    padding: 0;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.btn-link-custom:hover { color: var(--b15ff); }
.btn-link-custom i { transition: transform 0.2s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

/* ----------------------------------------------------------------
   HEADER & NAVIGATION — industrial top bar
---------------------------------------------------------------- */
._bxyl2s {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

._bxyl2s.scrolled {
    background: rgba(243, 244, 246, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--b14nn);
    padding: 10px 0;
    box-shadow: var(--b10eg);
}

._21gr96e {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

._zzkqz6 {
    font-family: var(--b3xj);
    font-size: 28px;
    font-weight: var(--b18v3);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
._zzkqz6:hover { color: var(--text-primary); }

._6ymkm { display: flex; align-items: center; gap: 32px; }

._6ymkm .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

._6ymkm .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--b14nn);
    transition: width 0.3s ease;
}

._6ymkm .nav-link:hover,
._6ymkm .nav-link.active { color: var(--b14nn); }
._6ymkm .nav-link:hover::after,
._6ymkm .nav-link.active::after { width: 100%; }

._vy5be { margin-left: 16px; }

/* Centered logo variant */
._10d3i, ._sg6tj5 { display: flex; align-items: center; gap: 28px; }
._10d3i .nav-link, ._sg6tj5 .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-semibold); padding: 8px 0; text-transform: uppercase;
}
._10d3i .nav-link:hover, ._sg6tj5 .nav-link:hover { color: var(--b14nn); }
._10d3i ~ ._6ymkm { display: none; }

._t71ov {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid var(--text-primary);
    border-radius: var(--b60o);
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

._t71ov ._bl1bbsf {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

._t71ov.active ._bl1bbsf:nth-child(1) { transform: translateY(7px) rotate(45deg); }
._t71ov.active ._bl1bbsf:nth-child(2) { opacity: 0; }
._t71ov.active ._bl1bbsf:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO SECTION — industrial, powerful
---------------------------------------------------------------- */
._nsw0sa9 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}

._nsw0sa9 .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

._nsw0sa9 ._cs1gmr {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(243,244,246,0.95) 0%, rgba(229,231,235,0.85) 100%);
}

._3ir9zk { position: relative; z-index: 2; }

._zrfpy {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--b14nn);
    margin-bottom: 16px;
    padding: 6px 18px;
    background: rgba(249, 115, 22, 0.1);
    border-left: 3px solid var(--b14nn);
    border-radius: var(--b60o);
}

._03i02 {
    font-size: var(--b19tn);
    font-weight: var(--b18v3);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

._izdz6n {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

._1g23m { display: flex; gap: 16px; flex-wrap: wrap; }

._03fmo { position: relative; z-index: 2; }
._03fmo img {
    border-radius: var(--b8oq);
    box-shadow: var(--b13s8);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--b1ho);
    opacity: 0.08;
    filter: blur(60px);
}

/* ----------------------------------------------------------------
   SECTION TITLE
---------------------------------------------------------------- */
._vs7ey { margin-bottom: 60px; }

._drw1ok {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--b14nn);
    margin-bottom: 12px;
}

._q3rus6 {
    font-size: var(--b20ik);
    font-weight: var(--b18v3);
    margin-bottom: 16px;
    color: var(--text-primary);
    text-transform: uppercase;
}

._ddr6u2 {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
}
._vs7ey.text-center ._ddr6u2 {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------------
   ICON BOX / FEATURE CARD — industrial cards with top accent bar
---------------------------------------------------------------- */
._4e78z {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--b7lc);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
._4e78z::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--b1ho);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
._4e78z:hover::before { transform: scaleX(1); }

._4e78z:hover {
    transform: translateY(-6px);
    box-shadow: var(--b12h1);
    border-color: var(--b14nn);
}

._4e78z ._eqnb6 {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    color: var(--b14nn);
    font-size: 26px;
    border-radius: var(--b7lc);
    margin-bottom: 20px;
    transition: var(--transition);
}
._4e78z:hover ._eqnb6 {
    background: var(--b14nn);
    color: #fff;
}

._4e78z ._fo5hfc3 {
    font-size: var(--fs-h5);
    font-weight: var(--b18v3);
    margin-bottom: 10px;
    color: var(--text-primary);
}

._4e78z ._yg9sur {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

._4e78z-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--b7lc);
    padding: 24px;
    transition: var(--transition);
}
._4e78z-horizontal:hover {
    box-shadow: var(--b11xs);
    transform: translateY(-3px);
}
._4e78z-horizontal ._eqnb6 {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    color: var(--b14nn);
    font-size: 22px;
    border-radius: var(--b7lc);
}

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about-section .about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--b8oq);
    box-shadow: var(--b12h1);
}
.about-section .about-image img { width: 100%; }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--b14nn);
    color: #fff;
    padding: 16px 22px;
    text-align: center;
    border-radius: var(--b7lc);
    box-shadow: var(--b11xs);
}
.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--b18v3);
    line-height: 1;
    font-family: var(--b3xj);
}
.experience-badge .badge-text { font-size: var(--fs-small); }

.about-list { margin-top: 20px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--b14nn); font-size: 16px; }

/* ----------------------------------------------------------------
   COUNTER / STATS — heavy industrial numbers
---------------------------------------------------------------- */
._h1m37b1 {
    background: var(--text-primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}
._h1m37b1::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--b1ho);
}
.counter-item { text-align: center; padding: 20px; }
._zlbtn {
    font-family: var(--b3xj);
    font-size: 56px;
    font-weight: var(--b18v3);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
._zlbtn .counter-suffix { color: var(--b14nn); }
._tk4vv0 {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ----------------------------------------------------------------
   SERVICE CARDS
---------------------------------------------------------------- */
._dv4ps {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--b7lc);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
._dv4ps:hover {
    transform: translateY(-6px);
    box-shadow: var(--b12h1);
    border-color: var(--b14nn);
}
._dv4ps ._oe7j11a {
    position: relative;
    overflow: hidden;
    height: 220px;
}
._dv4ps ._oe7j11a img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
._dv4ps:hover ._oe7j11a img { transform: scale(1.06); }
._dv4ps ._oe7j11a .card-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--b14nn);
    color: #fff;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    border-radius: var(--b60o);
    letter-spacing: 0.5px;
}
._dv4ps .card-body { padding: 24px; }
._dv4ps .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--b18v3);
    margin-bottom: 10px;
    color: var(--text-primary);
}
._dv4ps .card-title a { color: var(--text-primary); }
._dv4ps .card-title a:hover { color: var(--b14nn); }
._dv4ps .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}
._dv4ps .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
._dv4ps .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--b18v3);
    color: var(--b14nn);
    font-family: var(--b3xj);
}

/* ----------------------------------------------------------------
   TEAM SECTION
---------------------------------------------------------------- */
._f5fk0w { text-align: center; transition: var(--transition); }
._f5fk0w:hover { transform: translateY(-6px); }
._f5fk0w ._a0sm7vl {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: var(--b7lc);
    box-shadow: var(--b11xs);
}
._f5fk0w ._a0sm7vl img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.4s ease;
}
._f5fk0w:hover ._a0sm7vl img { transform: scale(1.04); }
._f5fk0w .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;
}
._f5fk0w:hover .team-social { bottom: 0; }
.team-social a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--b14nn);
    color: #fff;
    font-size: 14px;
    border-radius: var(--b60o);
    transition: var(--transition);
}
.team-social a:hover { background: var(--b15ff); }
._f5fk0w ._au8bi {
    font-size: var(--fs-h5);
    font-weight: var(--b18v3);
    margin-bottom: 4px;
    color: var(--text-primary);
}
._f5fk0w ._xrrjp {
    font-size: var(--fs-small);
    color: var(--b14nn);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ----------------------------------------------------------------
   TESTIMONIALS — quote blocks with left accent bar
---------------------------------------------------------------- */
._f4z5t7 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--b7lc);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
._f4z5t7::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--b14nn);
}
._f4z5t7:hover {
    box-shadow: var(--b12h1);
    transform: translateY(-4px);
}
._f4z5t7 .quote-icon {
    font-size: 36px;
    color: var(--b14nn);
    margin-bottom: 16px;
}
._f4z5t7 ._fislnq {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
._f4z5t7 .author {
    display: flex;
    align-items: center;
    gap: 16px;
}
._f4z5t7 ._rnl4ryp {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--b14nn);
}
._f4z5t7 ._mnb3d {
    font-size: var(--b172q);
    font-weight: var(--b18v3);
    color: var(--text-primary);
    margin-bottom: 2px;
}
._f4z5t7 ._qg5xz7 {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
._f4z5t7 .stars {
    color: var(--b15ff);
    margin-bottom: 14px;
}

/* ----------------------------------------------------------------
   PORTFOLIO / GALLERY
---------------------------------------------------------------- */
.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--b7lc);
    box-shadow: var(--b10eg);
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item .portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(17, 24, 39, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--b7lc);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--b14nn);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
}
.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) !important;
    border-radius: var(--b7lc) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 17px;
    font-weight: var(--fw-semibold);
    padding: 18px 24px;
    box-shadow: none;
    border: none;
    border-radius: var(--b7lc);
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(249, 115, 22, 0.06);
    color: var(--b14nn);
}
.faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ----------------------------------------------------------------
   PRICING — industrial pricing cards
---------------------------------------------------------------- */
._4ptvjf2 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--b8oq);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
._4ptvjf2.featured {
    border-color: var(--b14nn);
    box-shadow: var(--b12h1);
    transform: scale(1.03);
}
._4ptvjf2.featured::before {
    content: '★ BEST';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--b14nn);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--b18v3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0 0 var(--b60o) var(--b60o);
}
._4ptvjf2:hover {
    transform: translateY(-6px);
    box-shadow: var(--b12h1);
}
._4ptvjf2.featured:hover { transform: scale(1.03) translateY(-6px); }
._4ptvjf2 ._ocxos {
    font-size: var(--fs-h5);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: var(--b18v3);
}
._4ptvjf2 ._en6aiif {
    font-size: 56px;
    font-weight: var(--b18v3);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--b3xj);
}
._4ptvjf2 ._en6aiif .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--b14nn);
}
._4ptvjf2 .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 28px;
}
._4ptvjf2 ._09vimp {
    text-align: left;
    margin-bottom: 28px;
}
._4ptvjf2 ._09vimp 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);
}
._4ptvjf2 ._09vimp li:last-child { border-bottom: none; }
._4ptvjf2 ._09vimp li i { color: var(--b14nn); }
._4ptvjf2 ._09vimp li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}

/* ----------------------------------------------------------------
   BLOG CARDS
---------------------------------------------------------------- */
._tibpz {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--b7lc);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
._tibpz:hover {
    transform: translateY(-6px);
    box-shadow: var(--b12h1);
}
._tibpz ._oe7j11a { height: 200px; overflow: hidden; }
._tibpz ._oe7j11a img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
._tibpz:hover ._oe7j11a img { transform: scale(1.06); }
._tibpz .card-body { padding: 24px; }
._tibpz ._f9u221h {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
._tibpz ._f9u221h i { margin-right: 4px; color: var(--b14nn); }
._tibpz .card-title {
    font-size: 18px;
    font-weight: var(--b18v3);
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}
._tibpz .card-title a { color: var(--text-primary); }
._tibpz .card-title a:hover { color: var(--b14nn); }

/* ----------------------------------------------------------------
   CTA SECTION — dark industrial
---------------------------------------------------------------- */
._i9rcytv {
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
}
._i9rcytv::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--b1ho);
}
._i9rcytv .cta-content { position: relative; z-index: 2; }
._i9rcytv ._wupr0 {
    font-size: var(--b20ik);
    color: #fff;
    text-transform: uppercase;
}
._i9rcytv ._8ll6zz { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; }
._i9rcytv p, ._i9rcytv li { color: rgba(255,255,255,0.7); }
._i9rcytv ._xm01c {
    background: var(--b14nn);
    color: #fff;
    border-color: var(--b14nn);
}
._i9rcytv ._xm01c:hover {
    background: var(--b15ff);
    border-color: var(--b15ff);
}
._i9rcytv .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--b14nn);
    opacity: 0.06;
    filter: blur(80px);
}

/* ----------------------------------------------------------------
   NEWSLETTER
---------------------------------------------------------------- */
.newsletter-form {
    display: flex; gap: 0; max-width: 500px;
}
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--b60o) 0 0 var(--b60o);
    padding: 14px 20px;
    color: #fff;
    font-size: var(--b172q);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--b14nn); }

/* ----------------------------------------------------------------
   PROCESS / STEPS
---------------------------------------------------------------- */
.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.process-item ._ywtrm2t {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--b14nn);
    color: #fff;
    font-size: 24px;
    font-weight: var(--b18v3);
    font-family: var(--b3xj);
    border-radius: var(--b7lc);
    margin: 0 auto 20px;
    box-shadow: var(--accent-glow);
}
.process-item ._rw8s6 {
    font-size: var(--fs-h5);
    font-weight: var(--b18v3);
    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: 28px; right: -14px;
    font-size: 24px;
    font-weight: var(--b18v3);
    color: var(--b14nn);
}

/* ----------------------------------------------------------------
   MARQUEE / TEXT SLIDER
---------------------------------------------------------------- */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    background: var(--text-primary);
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.marquee-track .marquee-item {
    font-family: var(--b3xj);
    font-size: 60px;
    font-weight: var(--b18v3);
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
    color: #fff;
}

.marquee-track .marquee-item.stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    -webkit-text-fill-color: transparent;
}

.marquee-track .marquee-item.italic {
    font-style: italic;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
._sjj72 {
    background: var(--footer-dark-bg);
    color: rgba(255,255,255,0.7);
}
._sjj72 h1, ._sjj72 h2, ._sjj72 h3,
._sjj72 h4, ._sjj72 h5 { color: #fff; }

._l0dsf ._hssvu0 {
    font-size: 18px;
    font-weight: var(--b18v3);
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}
._l0dsf ._hssvu0::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--b14nn);
    border-radius: 2px;
}
._l0dsf p { color: rgba(255,255,255,0.6); font-size: var(--fs-small); }
._tpdr8k a {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}
._tpdr8k a:hover {
    color: var(--b14nn);
    text-decoration: none;
    padding-left: 6px;
}
._tpdr8k 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(--b14nn); margin-top: 4px; }
._1pt5a9 { display: flex; gap: 8px; margin-top: 20px; }
._1pt5a9 a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: var(--b60o);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
._1pt5a9 a:hover {
    background: var(--b14nn);
    color: #fff;
}
._zq5mh1 {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    margin-top: 60px;
}
._zq5mh1 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(--b14nn); }

/* ----------------------------------------------------------------
   POLICY PAGES
---------------------------------------------------------------- */
.policy-content h1 { font-size: var(--b20ik); 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(--b14nn); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

/* ----------------------------------------------------------------
   SCROLL TO TOP
---------------------------------------------------------------- */
._pxcuv23 {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--b14nn);
    color: #fff;
    border: none;
    border-radius: var(--b7lc);
    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);
}
._pxcuv23.visible { opacity: 1; visibility: visible; }
._pxcuv23:hover { transform: translateY(-3px); box-shadow: var(--b12h1); }

/* ----------------------------------------------------------------
   FORMS
---------------------------------------------------------------- */
._34ywd0 .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--b60o);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--b172q);
    transition: var(--transition);
}
._34ywd0 .form-control:focus {
    border-color: var(--b14nn);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    background: var(--bg-card);
    color: var(--text-primary);
}
._34ywd0 .form-control::placeholder { color: var(--text-muted); }
._34ywd0 textarea.form-control { min-height: 150px; resize: vertical; }

/* ----------------------------------------------------------------
   SWIPER OVERRIDES
---------------------------------------------------------------- */
.swiper-pagination-bullet { background: var(--text-primary); opacity: 0.3; width: 10px; height: 10px; border-radius: 2px; }
.swiper-pagination-bullet-active { background: var(--b14nn); opacity: 1; }
.swiper-button-prev,
.swiper-button-next {
    width: 46px; height: 46px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--b60o);
    color: var(--text-primary);
    box-shadow: var(--b10eg);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--b14nn);
    color: #fff;
    border-color: var(--b14nn);
}

/* ----------------------------------------------------------------
   ANIMATIONS
---------------------------------------------------------------- */
.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(-10px); }
}
.float-anim { animation: floatUpDown 3s ease-in-out infinite; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1200px) { :root { --b19tn: 50px; --b20ik: 38px; } }

@media (max-width: 992px) {
    :root { --b19tn: 42px; --b20ik: 34px; --b21ij: 26px; --_wayuw: 70px 0; }
    ._6ymkm {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-primary);
        border-left: 2px solid var(--b14nn);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    ._6ymkm.active { right: 0; }
    ._6ymkm .nav-link {
        display: block !important;
        font-size: 18px !important; padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-color); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    ._6ymkm .nav-link:hover, ._6ymkm .nav-link.active { color: var(--b14nn) !important; }
    ._6ymkm .nav-link::after { display: none; }
    ._vy5be { display: none !important; }
    ._t71ov {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important;
    }
    ._6y4z8 {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    ._6y4z8.active { opacity: 1; visibility: visible; }
    ._03i02 { font-size: var(--b19tn); }
    .process-item:not(:last-child)::after { display: none; }
    ._zlbtn { font-size: 40px; }
}

@media (max-width: 768px) {
    :root { --b19tn: 36px; --b20ik: 28px; --b21ij: 22px; --fs-h4: 20px; --_wayuw: 60px 0; }
    ._vs7ey { margin-bottom: 40px; }
    ._nsw0sa9 { min-height: auto; padding: 140px 0 80px; }
    ._1g23m { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    ._4ptvjf2 ._en6aiif { font-size: 44px; }
    ._zq5mh1 { text-align: center; }
}

@media (max-width: 576px) {
    :root { --b19tn: 30px; --b20ik: 24px; --b21ij: 20px; --_wayuw: 50px 0; }
    ._f4z5t7 { padding: 24px; }
    ._4ptvjf2 { padding: 24px; }
    ._4e78z { padding: 24px 18px; }
}

/* [PATCH] _9xgle2 gaps */
._9xgle2 ._zrfpy { color: #fff; }
._9xgle2 ._drw1ok { color: var(--b14nn); }
._9xgle2 ._kpj405 { color: rgba(255,255,255,0.55); }
._9xgle2 ._tpdr8k a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
._9xgle2 ._tpdr8k 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(--b14nn) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
