/* ================================================================
   KIT: SOLAR CLEAN
   Светлая экологичная тема с зелёно-синими акцентами и мягкими карточками
   Вдохновлён: Tesla Solar, Enphase Energy, SunPower
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   AI: Замени --l14x0 и --l15pn на цвета из color_palette
---------------------------------------------------------------- */
:root {
    --bg-primary: #f8faf9;
    --bg-secondary: #eef4f1;
    --bg-card: #ffffff;
    --bg-card-hover: #f4f9f6;
    --text-primary: #1a2e28;
    --text-secondary: #4d6a5e;
    --text-muted: #8da79b;
    --footer-dark-bg: #1a2e28;
    --border-color: #d0e0d6;
    --border-light: #e2ede6;

    --l14x0: #1b9e6d;
    --l15pn: #2a7fc2;
    --l1dv: linear-gradient(135deg, var(--l14x0), var(--l15pn));
    --accent-glow: 0 6px 28px rgba(27, 158, 109, 0.18);

    --l37c: 'Inter', 'Segoe UI', sans-serif;
    --l5sq: 'Inter', 'Segoe UI', sans-serif;

    --l19ni: 56px;
    --l20ej: 42px;
    --l21t7: 28px;
    --fs-h4: 22px;
    --fs-h5: 18px;
    --l17by: 16px;
    --fs-small: 14px;

    --l18ok: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --l6w4: 10px;
    --l7kl: 14px;
    --l8vq: 20px;
    --l97g: 28px;
    --l4wm: 50px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    --l105f: 0 2px 8px rgba(26, 46, 40, 0.04);
    --l11cy: 0 6px 22px rgba(26, 46, 40, 0.06);
    --l12mu: 0 12px 40px rgba(26, 46, 40, 0.08);
    --l13uu: 0 20px 60px rgba(26, 46, 40, 0.10);

    --css_2gtwh: 110px 0;
    --container-width: 1160px;
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--l5sq);
    font-size: var(--l17by);
    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(--l14x0);
    transition: var(--transition);
}
a:hover { color: var(--l15pn); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--l14x0); color: #fff; }

/* ----------------------------------------------------------------
   TYPOGRAPHY — clean, modern sans-serif
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--l37c);
    font-weight: var(--l18ok);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: var(--l19ni); letter-spacing: -0.03em; }
h2 { font-size: var(--l20ej); letter-spacing: -0.02em; }
h3 { font-size: var(--l21t7); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--l1dv);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--l14x0); }
.text-accent-2 { color: var(--l15pn); }
.text-dark { color: var(--text-primary); }
.css_y0xlt { color: var(--text-muted); }

/* ----------------------------------------------------------------
   UTILITIES
---------------------------------------------------------------- */
.css_2gtwh { padding: var(--css_2gtwh); position: relative; }
.css_2gtwh-sm { padding: 60px 0; }
.css_2gtwh-lg { padding: 150px 0; }
.css_2gtwh > .container { position: relative; z-index: 1; }

.css_fr19t { background-color: var(--bg-primary); }
.css_k70qu { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--l1dv); 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(.css_myg13) { color: #fff; }
.bg-gradient-custom .css_awpi5 { color: #fff; }
.bg-gradient-custom .css_mb5ho { color: rgba(255,255,255,0.7); }

.css_5b46s {
    background-color: #1a2e28;
    color: rgba(255,255,255,0.7);
}
.css_5b46s h1, .css_5b46s h2, .css_5b46s h3,
.css_5b46s h4, .css_5b46s h5, .css_5b46s h6 { color: #fff; }
.css_5b46s p, .css_5b46s li, .css_5b46s span:not(.badge) { color: rgba(255,255,255,0.7); }
.css_5b46s a:not(.css_myg13) { color: rgba(255,255,255,0.8); }
.css_5b46s a:not(.css_myg13):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
---------------------------------------------------------------- */
.css_nhyiu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.css_nhyiu.loaded { opacity: 0; visibility: hidden; }
.css_od7ug { display: flex; gap: 8px; }
.css_vnc14 {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--l14x0);
    animation: css_nhyiuPulse 1.4s ease-in-out infinite both;
}
.css_vnc14:nth-child(1) { animation-delay: -0.3s; }
.css_vnc14:nth-child(2) { animation-delay: -0.15s; }
.css_vnc14:nth-child(3) { animation-delay: 0; }

@keyframes css_nhyiuPulse {
    0%, 80%, 100% { transform: scale(0.5); opacity: 0.3; }
    40% { transform: scale(1.1); opacity: 1; }
}

/* ----------------------------------------------------------------
   BUTTONS — pill shape, soft shadows
---------------------------------------------------------------- */
.css_myg13 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: var(--l5sq);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    border-radius: var(--l4wm);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.css_z5cub {
    background: var(--l1dv);
    color: #fff;
    box-shadow: 0 4px 18px rgba(27, 158, 109, 0.22);
}
.css_z5cub:hover {
    color: #fff;
    box-shadow: 0 8px 28px rgba(27, 158, 109, 0.30);
    transform: translateY(-2px);
}

.css_v7dh5 {
    background: transparent;
    color: var(--l14x0);
    border: 2px solid var(--l14x0);
}
.css_v7dh5:hover {
    background: var(--l14x0);
    color: #fff;
    border-color: var(--l14x0);
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--l14x0);
    padding: 0;
    font-weight: var(--fw-semibold);
    font-size: var(--l17by);
    position: relative;
}
.btn-link-custom::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 100%; height: 2px;
    background: var(--l15pn);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}
.btn-link-custom:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-link-custom:hover { color: var(--l15pn); }
.btn-link-custom i { transition: transform 0.3s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

/* ----------------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------------- */
.css_gkrmx {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}
.css_gkrmx.scrolled {
    background: rgba(248, 250, 249, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(26, 46, 40, 0.05);
}
.css_uud50 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.css_rae0m {
    font-family: var(--l37c);
    font-size: 26px;
    font-weight: var(--l18ok);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.css_rae0m:hover { color: var(--text-primary); }

.css_z906c { display: flex; align-items: center; gap: 32px; }

.css_z906c .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 6px 0;
    position: relative;
}
.css_z906c .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--l14x0);
    border-radius: 2px;
    transition: width 0.35s ease;
}
.css_z906c .nav-link:hover,
.css_z906c .nav-link.active { color: var(--l14x0); }
.css_z906c .nav-link:hover::after,
.css_z906c .nav-link.active::after { width: 100%; }

.css_u3yhx { margin-left: 12px; }

/* Centered logo variant */
.css_qogad, .css_l8eee { display: flex; align-items: center; gap: 28px; }
.css_qogad .nav-link, .css_l8eee .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-medium); padding: 8px 0;
}
.css_qogad .nav-link:hover, .css_l8eee .nav-link:hover { color: var(--l14x0); }
.css_qogad ~ .css_z906c { display: none; }

.css_4rju1 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.css_4rju1 .css_8f87q {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}

.css_4rju1.active .css_8f87q:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.css_4rju1.active .css_8f87q:nth-child(2) { opacity: 0; }
.css_4rju1.active .css_8f87q:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO SECTION — clean, airy
---------------------------------------------------------------- */
.css_31qdo {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-primary);
}
.css_31qdo .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: saturate(0.6);
}
.css_31qdo .css_l3edb {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 40%, transparent 60%, var(--bg-primary) 100%);
}
.css_ejquh { position: relative; z-index: 2; }

.css_bna7i {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--l14x0);
    margin-bottom: 24px;
    padding: 8px 18px;
    background: rgba(27, 158, 109, 0.08);
    border-radius: var(--l4wm);
    border: 1px solid rgba(27, 158, 109, 0.12);
}
.css_bna7i i { font-size: 14px; }

.css_d9f24 {
    font-size: var(--l19ni);
    font-weight: var(--l18ok);
    line-height: 1.12;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.css_buoh9 {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.css_xy0pn { display: flex; gap: 14px; flex-wrap: wrap; }

.css_kyz9a { position: relative; z-index: 2; }
.css_kyz9a img {
    border-radius: var(--l97g);
    box-shadow: var(--l13uu);
}

/* soft gradient blob */
.css_31qdo .hero-blob {
    position: absolute;
    width: 550px; height: 550px;
    background: radial-gradient(ellipse, rgba(27,158,109,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: blobPulse 10s ease-in-out infinite;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ----------------------------------------------------------------
   SECTION TITLE
---------------------------------------------------------------- */
.css_uoqh1 { margin-bottom: 60px; }

.css_ax6lp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--l14x0);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.css_ax6lp i { font-size: 15px; }

.css_e7ndn {
    font-size: var(--l20ej);
    font-weight: var(--l18ok);
    margin-bottom: 18px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.css_2jd9m {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}
.css_uoqh1.text-center .css_2jd9m {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------------
   ICON BOX / FEATURE CARD — soft, rounded
---------------------------------------------------------------- */
.css_9x3c0 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--l8vq);
    padding: 36px 26px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
    box-shadow: var(--l105f);
}
.css_9x3c0:hover {
    box-shadow: var(--l12mu);
    transform: translateY(-6px);
    border-color: rgba(27, 158, 109, 0.2);
}

.css_9x3c0 .css_09dc6 {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--l7kl);
    background: rgba(27, 158, 109, 0.08);
    color: var(--l14x0);
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.css_9x3c0:hover .css_09dc6 {
    background: var(--l1dv);
    color: #fff;
    transform: scale(1.08);
}

.css_9x3c0 .css_2hr7g {
    font-family: var(--l37c);
    font-size: var(--fs-h5);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.css_9x3c0 .css_8xc8k {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.css_9x3c0-horizontal {
    display: flex;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--l7kl);
    padding: 26px;
    transition: var(--transition);
    box-shadow: var(--l105f);
}
.css_9x3c0-horizontal:hover { box-shadow: var(--l11cy); transform: translateY(-3px); border-color: rgba(27,158,109,0.2); }
.css_9x3c0-horizontal .css_09dc6 {
    flex-shrink: 0;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--l7kl);
    background: rgba(27, 158, 109, 0.08);
    color: var(--l14x0);
    font-size: 20px;
}

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about-section .about-image {
    position: relative;
    border-radius: var(--l97g);
    overflow: hidden;
    box-shadow: var(--l12mu);
}
.about-section .about-image img { width: 100%; border-radius: var(--l97g); }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--l1dv);
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--l8vq);
    text-align: center;
    box-shadow: 0 4px 18px rgba(27,158,109,0.25);
}
.experience-badge .badge-number {
    display: block;
    font-family: var(--l37c);
    font-size: 38px;
    line-height: 1;
    font-weight: var(--l18ok);
}
.experience-badge .badge-text { font-size: var(--fs-small); opacity: 0.9; }

.about-list { margin-top: 20px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--l14x0); font-size: 14px; }

/* ----------------------------------------------------------------
   COUNTER / STATS
---------------------------------------------------------------- */
.css_br4fj {
    background: var(--l1dv);
    color: #fff;
    border-radius: var(--l97g);
}
.counter-item { text-align: center; padding: 24px; }
.css_awpi5 {
    font-family: var(--l37c);
    font-size: 50px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: var(--l18ok);
}
.css_awpi5 .counter-suffix { color: rgba(255,255,255,0.8); }
.css_mb5ho {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.75);
}

/* ----------------------------------------------------------------
   SERVICE CARDS
---------------------------------------------------------------- */
.css_6w1wb {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--l8vq);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--l105f);
}
.css_6w1wb:hover {
    transform: translateY(-8px);
    box-shadow: var(--l12mu);
    border-color: rgba(27,158,109,0.2);
}
.css_6w1wb .css_fd871 {
    position: relative;
    overflow: hidden;
    height: 230px;
}
.css_6w1wb .css_fd871 img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.css_6w1wb:hover .css_fd871 img { transform: scale(1.06); }
.css_6w1wb .css_fd871 .card-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--l1dv);
    color: #fff;
    padding: 6px 16px;
    border-radius: var(--l4wm);
    font-size: 12px;
    font-weight: var(--fw-semibold);
}
.css_6w1wb .card-body { padding: 26px; }
.css_6w1wb .card-title {
    font-family: var(--l37c);
    font-size: var(--fs-h5);
    margin-bottom: 12px;
    color: var(--text-primary);
}
.css_6w1wb .card-title a { color: var(--text-primary); }
.css_6w1wb .card-title a:hover { color: var(--l14x0); }
.css_6w1wb .card-text { font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 20px; }
.css_6w1wb .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}
.css_6w1wb .card-price {
    font-family: var(--l37c);
    font-size: var(--fs-h5);
    color: var(--l14x0);
    font-weight: var(--l18ok);
}

/* ----------------------------------------------------------------
   TEAM SECTION
---------------------------------------------------------------- */
.css_cux3x { text-align: center; transition: var(--transition); }
.css_cux3x:hover { transform: translateY(-5px); }
.css_cux3x .css_7sg6c {
    position: relative;
    overflow: hidden;
    border-radius: var(--l97g);
    margin-bottom: 20px;
}
.css_cux3x .css_7sg6c img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.css_cux3x:hover .css_7sg6c img { transform: scale(1.05); }
.css_cux3x .team-social {
    position: absolute;
    bottom: -60px; left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(0deg, rgba(26,46,40,0.6) 0%, transparent 100%);
    transition: bottom 0.4s ease;
}
.css_cux3x:hover .team-social { bottom: 0; }
.team-social a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    transition: var(--transition);
}
.team-social a:hover { background: var(--l14x0); }
.css_cux3x .css_9lbu2 {
    font-family: var(--l37c);
    font-size: var(--fs-h5);
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: var(--fw-semibold);
}
.css_cux3x .css_iu60b {
    font-size: var(--fs-small);
    color: var(--l14x0);
}

/* ----------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------- */
.css_kwkef {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--l8vq);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--l105f);
    position: relative;
}
.css_kwkef:hover { box-shadow: var(--l11cy); transform: translateY(-4px); border-color: rgba(27,158,109,0.2); }
.css_kwkef .quote-icon {
    font-size: 44px;
    color: var(--l14x0);
    margin-bottom: 12px;
    opacity: 0.18;
    line-height: 1;
}
.css_kwkef .css_57jfy {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 24px;
}
.css_kwkef .author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.css_kwkef .css_gabhl {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-secondary);
}
.css_kwkef .css_xnmi6 {
    font-size: var(--l17by);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.css_kwkef .css_6k09c {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
.css_kwkef .stars { color: var(--l15pn); margin-bottom: 12px; }

/* solar panel decoration */
.css_kwkef::before {
    content: '☀️';
    position: absolute;
    top: 14px; right: 20px;
    font-size: 22px;
    opacity: 0.12;
}

/* ----------------------------------------------------------------
   PORTFOLIO / GALLERY
---------------------------------------------------------------- */
.portfolio-item {
    position: relative;
    border-radius: var(--l8vq);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--l105f);
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item .portfolio-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(0deg, rgba(26,46,40,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--l15pn);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.portfolio-overlay .portfolio-title {
    font-family: var(--l37c);
    font-size: var(--fs-h4);
    color: #fff;
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   FAQ / ACCORDION
---------------------------------------------------------------- */
.faq-section .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light) !important;
    border-radius: var(--l7kl) !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--l37c);
    font-size: 17px;
    font-weight: var(--fw-semibold);
    padding: 20px 24px;
    box-shadow: none;
    border: none;
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(27, 158, 109, 0.04);
    color: var(--l14x0);
}
.faq-section .accordion-body {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ----------------------------------------------------------------
   PRICING — clean cards with gradient accents
---------------------------------------------------------------- */
.css_rjx4b {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--l8vq);
    padding: 38px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--l105f);
}
.css_rjx4b.featured {
    background: var(--l1dv);
    color: #fff;
    border: none;
    box-shadow: var(--accent-glow);
}
.css_rjx4b.featured .css_qqfc3,
.css_rjx4b.featured .plan-period,
.css_rjx4b.featured .css_b0fy9 li { color: rgba(255,255,255,0.85); }
.css_rjx4b.featured .css_ankym { color: #fff; }
.css_rjx4b.featured .css_b0fy9 li i { color: rgba(255,255,255,0.9); }
.css_rjx4b.featured .css_myg13 { background: #fff; color: var(--l14x0); }
.css_rjx4b.featured .css_myg13:hover { background: var(--bg-secondary); }

.css_rjx4b:hover {
    transform: translateY(-6px);
    box-shadow: var(--l12mu);
}
.css_rjx4b .css_qqfc3 {
    font-size: var(--fs-small);
    color: var(--l14x0);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: var(--fw-semibold);
}
.css_rjx4b .css_ankym {
    font-family: var(--l37c);
    font-size: 48px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: var(--l18ok);
}
.css_rjx4b .css_ankym .currency {
    font-size: 22px;
    vertical-align: top;
    color: var(--l14x0);
}
.css_rjx4b .plan-period { font-size: var(--fs-small); color: var(--text-muted); margin-bottom: 28px; }
.css_rjx4b .css_b0fy9 { text-align: left; margin-bottom: 30px; }
.css_rjx4b .css_b0fy9 li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}
.css_rjx4b .css_b0fy9 li:last-child { border-bottom: none; }
.css_rjx4b .css_b0fy9 li i { color: var(--l14x0); }
.css_rjx4b .css_b0fy9 li.disabled { opacity: 0.4; text-decoration: line-through; }

/* ----------------------------------------------------------------
   BLOG CARDS
---------------------------------------------------------------- */
.css_ehio9 {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--l8vq);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--l105f);
}
.css_ehio9:hover { transform: translateY(-5px); box-shadow: var(--l12mu); border-color: rgba(27,158,109,0.2); }
.css_ehio9 .css_fd871 { height: 210px; overflow: hidden; }
.css_ehio9 .css_fd871 img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.css_ehio9:hover .css_fd871 img { transform: scale(1.06); }
.css_ehio9 .card-body { padding: 24px; }
.css_ehio9 .css_tzmni {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.css_ehio9 .css_tzmni i { margin-right: 4px; color: var(--l14x0); }
.css_ehio9 .card-title {
    font-family: var(--l37c);
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: var(--fw-semibold);
}
.css_ehio9 .card-title a { color: var(--text-primary); }
.css_ehio9 .card-title a:hover { color: var(--l14x0); }

/* ----------------------------------------------------------------
   CTA SECTION
---------------------------------------------------------------- */
.css_mtk20 {
    background: var(--l1dv);
    position: relative;
    overflow: hidden;
    border-radius: var(--l97g);
}
.css_mtk20 .cta-content { position: relative; z-index: 2; }
.css_mtk20 .css_97zm9 { font-size: var(--l20ej); color: #fff; }
.css_mtk20 .css_zvy4u { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 520px; }
.css_mtk20 p, .css_mtk20 li { color: rgba(255,255,255,0.8); }
.css_mtk20 .css_myg13 { background: #fff; color: var(--l14x0); border: none; }
.css_mtk20 .css_myg13:hover { background: var(--bg-secondary); transform: translateY(-2px); }
.css_mtk20 .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 0;
}
.cta-shape-1 { width: 350px; height: 350px; top: -150px; right: -80px; }
.cta-shape-2 { width: 220px; height: 220px; bottom: -90px; left: -50px; }

/* ----------------------------------------------------------------
   NEWSLETTER
---------------------------------------------------------------- */
.newsletter-form { display: flex; gap: 12px; max-width: 460px; }
.newsletter-form input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--l4wm);
    padding: 14px 24px;
    color: var(--text-primary);
    font-family: var(--l5sq);
    font-size: var(--l17by);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--l14x0); box-shadow: 0 0 0 3px rgba(27,158,109,0.08); }

/* ----------------------------------------------------------------
   PROCESS / STEPS
---------------------------------------------------------------- */
.process-item { text-align: center; position: relative; padding: 0 20px; }
.process-item .css_pu1r6 {
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(27, 158, 109, 0.08);
    color: var(--l14x0);
    font-family: var(--l37c);
    font-size: 22px;
    font-weight: var(--l18ok);
    margin: 0 auto 18px;
    transition: var(--transition);
}
.process-item:hover .css_pu1r6 {
    background: var(--l1dv);
    color: #fff;
}
.process-item .css_t889w {
    font-family: var(--l37c);
    font-size: var(--fs-h5);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.process-item .step-text { font-size: var(--fs-small); color: var(--text-secondary); }
.process-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 24px; right: -16px;
    color: var(--l14x0);
    font-size: 22px;
    opacity: 0.5;
}

/* ----------------------------------------------------------------
   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: 60px;
    font-weight: var(--l18ok);
    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
---------------------------------------------------------------- */
.css_3vg16 {
    background: #1a2e28;
    color: rgba(255,255,255,0.6);
}
.css_3vg16 h1, .css_3vg16 h2, .css_3vg16 h3,
.css_3vg16 h4, .css_3vg16 h5 { color: #fff; }

.css_j995s .css_x2iqz {
    font-family: var(--l37c);
    font-size: 17px;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    font-weight: var(--fw-semibold);
}
.css_j995s .css_x2iqz::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--l14x0);
    border-radius: 2px;
}
.css_j995s p { color: rgba(255,255,255,0.45); font-size: var(--fs-small); }
.css_4imxa a { color: rgba(255,255,255,0.45); font-size: var(--fs-small); transition: var(--transition); }
.css_4imxa a:hover { color: var(--l14x0); padding-left: 5px; }
.css_4imxa li { margin-bottom: 10px; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; color: rgba(255,255,255,0.45); font-size: var(--fs-small);
}
.footer-contact li i { color: var(--l14x0); margin-top: 4px; }
.css_r3ir7 { display: flex; gap: 10px; margin-top: 20px; }
.css_r3ir7 a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.css_r3ir7 a:hover { background: var(--l14x0); color: #fff; }
.css_b00ft { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; margin-top: 50px; }
.css_b00ft p { margin: 0; font-size: var(--fs-small); color: rgba(255,255,255,0.3); }

.footer-policy { margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-policy a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-policy a:hover { color: var(--l14x0); }

/* ----------------------------------------------------------------
   POLICY PAGES
---------------------------------------------------------------- */
.policy-content h1 { font-size: var(--l20ej); 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(--l14x0); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

/* ----------------------------------------------------------------
   SCROLL TO TOP
---------------------------------------------------------------- */
.css_ua75g {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--l1dv);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 14px rgba(27,158,109,0.25);
}
.css_ua75g.visible { opacity: 1; visibility: visible; }
.css_ua75g:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(27,158,109,0.35); }

/* ----------------------------------------------------------------
   FORMS
---------------------------------------------------------------- */
.css_09iwh .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--l7kl);
    padding: 14px 20px;
    color: var(--text-primary);
    font-family: var(--l5sq);
    font-size: var(--l17by);
}
.css_09iwh .form-control:focus {
    border-color: var(--l14x0);
    box-shadow: 0 0 0 3px rgba(27, 158, 109, 0.08);
    background: var(--bg-card);
    color: var(--text-primary);
}
.css_09iwh .form-control::placeholder { color: var(--text-muted); }
.css_09iwh textarea.form-control { min-height: 120px; resize: vertical; }

/* ----------------------------------------------------------------
   SWIPER OVERRIDES
---------------------------------------------------------------- */
.swiper-pagination-bullet { background: var(--border-color); opacity: 1; width: 10px; height: 10px; }
.swiper-pagination-bullet-active { background: var(--l14x0); width: 24px; border-radius: 10px; }
.swiper-button-prev,
.swiper-button-next {
    width: 44px; height: 44px;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-primary);
    box-shadow: var(--l105f);
    border: 1px solid var(--border-light);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 14px; }
.swiper-button-prev:hover,
.swiper-button-next:hover { background: var(--l14x0); color: #fff; border-color: var(--l14x0); }

/* ----------------------------------------------------------------
   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(-10px); }
}
.float-anim { animation: floatUpDown 5s ease-in-out infinite; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1200px) { :root { --l19ni: 46px; --l20ej: 36px; } }

@media (max-width: 992px) {
    :root { --l19ni: 38px; --l20ej: 32px; --l21t7: 24px; --css_2gtwh: 80px 0; }
    .css_z906c {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--bg-primary);
        padding: 90px 28px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    }
    .css_z906c.active { right: 0; }
    .css_z906c .nav-link {
        display: block !important;
        font-size: 16px !important; padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-light); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    .css_z906c .nav-link:hover, .css_z906c .nav-link.active { color: var(--l14x0) !important; }
    .css_z906c .nav-link::after { display: none; }
    .css_u3yhx { display: none !important; }
    .css_4rju1 {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .css_h7hfu {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.2);
        z-index: 9999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .css_h7hfu.active { opacity: 1; visibility: visible; }
    .css_d9f24 { font-size: var(--l19ni); }
    .process-item:not(:last-child)::after { display: none; }
    .css_awpi5 { font-size: 36px; }
    .css_mtk20 { border-radius: var(--l8vq); }
}

@media (max-width: 768px) {
    :root { --l19ni: 32px; --l20ej: 26px; --l21t7: 22px; --fs-h4: 20px; --css_2gtwh: 60px 0; }
    .css_uoqh1 { margin-bottom: 36px; }
    .css_31qdo { min-height: auto; padding: 130px 0 70px; }
    .css_xy0pn { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .css_rjx4b .css_ankym { font-size: 36px; }
    .css_b00ft { text-align: center; }
}

@media (max-width: 576px) {
    :root { --l19ni: 28px; --l20ej: 22px; --l21t7: 19px; --css_2gtwh: 44px 0; }
    .css_kwkef { padding: 24px; }
    .css_rjx4b { padding: 24px; }
    .css_9x3c0 { padding: 24px 18px; }
    .css_br4fj { border-radius: var(--l7kl); }
}

/* [PATCH] css_5b46s gaps */
.css_5b46s .css_bna7i { color: #fff; }
.css_5b46s .css_ax6lp { color: var(--l14x0); }
.css_5b46s .css_y0xlt { color: rgba(255,255,255,0.55); }
.css_5b46s .css_4imxa a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.css_5b46s .css_4imxa 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(--l14x0) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
