/* stiluri pagina */

:root {
    --green:        #1FD660;
    --green-dark:   #16B854;
    --green-deep:   #0C7D36;
    --green-soft:   rgba(31,214,96,0.10);
    --green-border: rgba(31,214,96,0.28);
    --dark:         #171717;
    --dark-2:       #2a2a2a;
    --white:        #ffffff;
    --text-muted:   #64748b;
    --text-light:   #94a3b8;
    --bg-white:     #ffffff;
    --bg-light:     #f7fdf9;
    --bg-section:   #f1f5f2;
    --border:       #e4ebe6;
    --radius:       16px;
    --radius-sm:    10px;
    --shadow:       0 4px 24px rgba(0,0,0,0.06);
    --shadow-md:    0 8px 40px rgba(0,0,0,0.10);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    overflow-x: hidden;
    max-width: 100vw;
}

/* navbar */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
    padding: 0;
}

.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.navbar > .container {
    height: 72px;
    display: flex;
    align-items: center;
}

.navbar-brand img { height: 34px; }
.navbar-nav { gap: 2px; }

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.55rem 1.1rem !important;
    border-radius: 8px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { background: var(--green-soft); color: var(--green-deep) !important; }

.navbar-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
    margin: 0 12px;
    flex-shrink: 0;
}

/* schimbator limba */
.lang-dropdown { flex-shrink: 0; }

.lang-drop-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-section);
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--dark);
    cursor: pointer;
    transition: background .2s, border-color .2s;
    white-space: nowrap;
}

.lang-drop-toggle:hover {
    background: var(--bg-white);
    border-color: var(--green-border);
}

.lang-drop-toggle::after { display: none; }

.lang-drop-toggle .lang-flag { display: block; flex-shrink: 0; }

.lang-drop-code {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.lang-drop-menu {
    min-width: 150px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 6px;
    background: var(--bg-white);
}

.lang-drop-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    border-radius: 6px;
    padding: 7px 10px;
    transition: background .15s;
}

.lang-drop-item:hover { background: var(--bg-light); color: var(--dark); }
.lang-drop-item.active { background: var(--green-soft); color: var(--green-deep); }

/* buton cta navbar */
.btn-nav-cta {
    background: var(--green-soft);
    color: var(--green-deep);
    border: 1.5px solid var(--green-border);
    border-radius: 10px;
    padding: 0.52rem 1.3rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-nav-cta:hover {
    background: var(--green);
    color: var(--dark);
    border-color: var(--green);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(31,214,96,0.28);
}

.btn-nav-cta i { font-size: 1rem; display: inline-block; transition: transform .32s cubic-bezier(.34,1.56,.64,1); }
.btn-nav-cta:hover i { transform: translateY(-5px) rotate(-22deg); }

/* dropdown unelte navbar */
.tools-dropdown {
    min-width: 260px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px;
    background: var(--bg-white);
}
.tools-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 6px;
    padding: 8px 12px;
    transition: background .15s;
}
.tools-dropdown .dropdown-item:hover {
    background: var(--green-soft);
    color: var(--green-deep);
}
.tools-dropdown .dropdown-item .bi { color: var(--text-muted); font-size: 1rem; }
.tools-dropdown .dropdown-item:hover .bi { color: var(--green-deep); }

/* pagina unelte */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.tool-card {
    display: block;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    box-shadow: var(--shadow);
}
.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-border);
    color: inherit;
}
.tool-card-icon {
    width: 52px; height: 52px;
    background: var(--green-soft);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--green-deep);
    margin-bottom: 16px;
}
.tool-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.tool-card p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* widget unealta */
.tool-widget {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}
.tool-result-box {
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-top: 20px;
}
.tool-result-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.tool-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.tool-stat {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    text-align: center;
}
.tool-stat-val { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.tool-stat-lbl { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 2px; }

.navbar-toggler {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: none;
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px var(--green-soft); }

/* ── Mobile Drawer ──────────────────────────────────────────────────────── */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 9200;
    visibility: hidden;
    pointer-events: none;
}
.mobile-drawer.is-open {
    visibility: visible;
    pointer-events: all;
}

/* backdrop — ascuns (panoul e full-width, nu se vede în spate) */
.mobile-drawer-backdrop { display: none; }

/* scroll-lock pe body cand draweru-i deschis (iOS-safe) */
body.drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    /* top se setează dinamic via JS */
}

/* panoul lateral — full-width */
.mobile-drawer-panel {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .34s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-drawer.is-open .mobile-drawer-panel { transform: translateX(0); }

/* header: logo + close */
.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mobile-drawer-logo img { height: 32px; width: auto; }
.mobile-drawer-close {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg-section);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    color: var(--dark);
    cursor: pointer;
    transition: background .18s, border-color .18s, color .18s;
    flex-shrink: 0;
}
.mobile-drawer-close:hover {
    background: var(--green-soft);
    border-color: var(--green-border);
    color: var(--green-deep);
}

/* link-uri navigare */
.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 12px 12px;
    gap: 2px;
    flex: 1;
}
.mobile-drawer-link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: background .18s, color .18s;
    border: 1.5px solid transparent;
}
.mobile-drawer-link:hover {
    background: var(--bg-section);
    color: var(--green-deep);
    text-decoration: none;
}
.mobile-drawer-link.active {
    background: var(--green-soft);
    border-color: var(--green-border);
    color: var(--green-deep);
}

/* footer drawer: limbi + CTA */
.mobile-drawer-foot {
    padding: 16px 20px 28px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}
.mobile-drawer-langs {
    display: flex;
    gap: 8px;
}

/* selector limba mobil (pastrat pentru drawer) */
.nav-mobile-lang {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--bg-section);
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
    flex: 1;
    justify-content: center;
}

.nav-lang-pill:hover {
    background: var(--bg-white);
    border-color: var(--green-border);
    color: var(--dark);
    text-decoration: none;
}

.nav-lang-pill.active {
    background: var(--green-soft);
    border-color: var(--green-border);
    color: var(--green-deep);
}

/* hero */
.hero {
    padding: 96px 0 80px;
    background: linear-gradient(160deg, #edfdf4 0%, #f9fffc 55%, #f2fbf5 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(31,214,96,0.13) 0%, transparent 68%);
    top: -180px; right: -120px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(31,214,96,0.07) 0%, transparent 70%);
    bottom: -100px; left: -60px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-soft);
    color: var(--green-deep);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.7); }
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--dark);
    letter-spacing: -0.025em;
}

.hero h1 .highlight {
    position: relative;
    display: inline-block;
    color: var(--green-deep);
    white-space: nowrap;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    left: -2%;
    bottom: -14px;
    width: 104%;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1420 100' preserveAspectRatio='none'%3E%3Cpath d='M1412.29 72.17c-11.04-5.78-20.07-14.33-85.46-25.24-22.37-3.63-44.69-7.56-67.07-11.04-167.11-22.06-181.65-21.24-304.94-30.56C888.78 1.39 822.57 1.1 756.44 0c-46.63-.11-93.27 1.56-139.89 2.5C365.5 13.55 452.86 7.68 277.94 23.15 202.57 33.32 127.38 45.01 52.07 55.69c-11.23 2.41-22.63 4.17-33.71 7.22C6.1 66.33 5.64 66.19 3.89 67.79c-7.99 5.78-2.98 20.14 8.72 17.5 33.99-9.47 32.28-8.57 178.06-29.66 4.26 4.48 7.29 3.38 18.42 3.11 13.19-.32 26.38-.53 39.56-1.12 53.51-3.81 106.88-9.62 160.36-13.95 18.41-1.3 36.8-3.12 55.21-4.7 23.21-1.16 46.43-2.29 69.65-3.4 120.28-2.16 85.46-3.13 234.65-1.52 23.42.99 1.57-.18 125.72 6.9 96.61 8.88 200.92 27.94 295.42 46.12 40.87 7.91 116.67 23.2 156.31 36.78 3.81 1.05 8.28-.27 10.51-3.58 3.17-3.72 2.66-9.7-.78-13.13-3.25-3.12-8.14-3.44-12.18-5.08-17.89-5.85-44.19-12.09-63.67-16.56l26.16 3.28c23.02 3.13 46.28 3.92 69.34 6.75 10.8.96 25.43 1.81 34.34-4.39 2.26-1.54 4.86-2.75 6.21-5.27 2.76-4.59 1.13-11.06-3.59-13.68ZM925.4 23.77c37.64 1.4 153.99 10.85 196.64 14.94 45.95 5.51 91.89 11.03 137.76 17.19 24.25 4.77 74.13 11.21 101.72 18.14-11.87-1.15-23.77-1.97-35.65-3.06-133.46-15.9-266.8-33.02-400.47-47.21Z' fill='%231FD660' opacity='0.85'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: highlight-draw 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes highlight-draw {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}

/* hero titlu: 3 blocuri fixe — prefix / keyword / suffix */
.hero-pre,
.hero-kw-outer,
.hero-suf {
    display: block;
    line-height: 1.12;
}

/* containerul keyword: overflow:hidden izoleaza animatia,
   celelalte linii nu se misca deloc */
.hero-kw-outer {
    overflow: hidden;
    /* padding mic ca sa nu clipeze desc. literelor */
    padding-top: 0.04em;
    padding-bottom: 0.1em;
    margin: 0.06em 0;
}

/* cuvantul animat */
.hero-kw {
    display: block;
    color: var(--green-deep);
    line-height: 1.12;
}

/* linia de jos are padding pentru underline-ul SVG al .highlight */
.hero-suf {
    padding-bottom: 26px;
}

/* animatii slide-up curate */
@keyframes kwSlideOut {
    0%   { transform: translateY(0);      opacity: 1; }
    100% { transform: translateY(-110%);  opacity: 0; }
}

@keyframes kwSlideIn {
    0%   { transform: translateY(110%);   opacity: 0; }
    100% { transform: translateY(0);      opacity: 1; }
}

.hero-kw.kw-out {
    animation: kwSlideOut .3s cubic-bezier(.4, 0, 1, 1) forwards;
}
.hero-kw.kw-in {
    animation: kwSlideIn .48s cubic-bezier(0, 0, .2, 1) forwards;
}

/* iconite tehnologii pe fundal hero */
.hero-tech-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-tech-bg i {
    position: absolute;
    font-size: 5rem;
    color: var(--green-deep);
    opacity: 0.045;
    filter: blur(2.5px);
    line-height: 1;
    user-select: none;
}
.hero-tech-bg i:nth-child(1)  { top: 8%;  left: 4%;   font-size: 6rem; opacity: 0.035; }
.hero-tech-bg i:nth-child(2)  { top: 15%; right: 6%;  font-size: 7rem; opacity: 0.04;  }
.hero-tech-bg i:nth-child(3)  { top: 55%; left: 2%;   font-size: 4.5rem; }
.hero-tech-bg i:nth-child(4)  { top: 70%; right: 3%;  font-size: 5.5rem; opacity: 0.04; }
.hero-tech-bg i:nth-child(5)  { top: 35%; left: 10%;  font-size: 4rem;   opacity: 0.03; }
.hero-tech-bg i:nth-child(6)  { top: 80%; left: 15%;  font-size: 5rem;   opacity: 0.04; filter: blur(3px); }
.hero-tech-bg i:nth-child(7)  { top: 20%; right: 18%; font-size: 4rem;   opacity: 0.035; }
.hero-tech-bg i:nth-child(8)  { top: 60%; right: 12%; font-size: 6rem;   opacity: 0.03; filter: blur(3.5px); }
.hero-tech-bg i:nth-child(9)  { top: 45%; left: 88%;  font-size: 3.5rem; opacity: 0.04; }
.hero-tech-bg i:nth-child(10) { top: 88%; left: 55%;  font-size: 4.5rem; opacity: 0.035; filter: blur(2px); }
.hero-tech-bg i:nth-child(11) { top: 5%;  left: 45%;  font-size: 3.5rem; opacity: 0.03; }
.hero-tech-bg i:nth-child(12) { top: 50%; left: 50%;  font-size: 5rem;   opacity: 0.025; filter: blur(4px); }

.hero p.lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 500px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* modal contact */
.cm-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.15);
}
.cm-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-light);
}
.cm-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-soft);
    color: var(--green-deep);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.cm-dot {
    width: 5px; height: 5px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
.cm-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}
.cm-close {
    background: none;
    border: none;
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s, color .2s;
    flex-shrink: 0;
    margin-left: 12px;
    margin-top: 2px;
}
.cm-close:hover { background: var(--green-soft); color: var(--green-deep); }
.cm-body { padding: 28px 32px 32px; }
.cm-req { color: var(--green); }
.cm-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--green);
    color: var(--dark);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(31,214,96,0.30);
}
.cm-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(31,214,96,0.40); }
.cm-submit:disabled { opacity: .65; transform: none; cursor: not-allowed; }
.cm-err {
    background: #fff5f5;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.84rem;
    margin-bottom: 12px;
}
.cm-success {
    text-align: center;
    padding: 48px 24px;
}
.cm-success-icon {
    width: 64px; height: 64px;
    background: var(--green-soft);
    border: 2px solid var(--green-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--green-deep);
}
.cm-success h6 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.cm-success p { color: var(--text-muted); margin-bottom: 24px; }
.cm-btn-ok {
    background: var(--green);
    color: var(--dark);
    border: none;
    font-weight: 700;
    padding: 11px 32px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .2s;
}
.cm-btn-ok:hover { transform: translateY(-2px); }

/* buton trigger modal */
.btn-modal-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--dark);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(31,214,96,0.30);
}
.btn-modal-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(31,214,96,0.40);
    color: var(--dark);
}
.btn-modal-trigger i { display: inline-block; transition: transform .32s cubic-bezier(.34,1.56,.64,1); }
.btn-modal-trigger:hover i { transform: scale(1.3) rotate(-10deg); }

/* slider tehnologii */
.tech-slider-section {
    padding: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}
.tech-slider-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 24px 0 16px;
}
.tech-slider-rows {
    position: relative;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tech-slider-rows::before,
.tech-slider-rows::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.tech-slider-rows::before { left: 0; background: linear-gradient(to right, var(--bg-white), transparent); }
.tech-slider-rows::after  { right: 0; background: linear-gradient(to left,  var(--bg-white), transparent); }
.tech-slider-row {
    overflow: hidden;
}
.tech-slider-track {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    animation: tech-scroll 60s linear infinite;
}
.tech-slider-track.tech-slider-reverse {
    animation-name: tech-scroll-reverse;
}
.tech-slider-track:hover { animation-play-state: paused; }
.tech-slider-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 9px 16px;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
    transition: border-color .2s, background .2s, color .2s;
    cursor: default;
}
.tech-slider-item:hover {
    border-color: var(--green-border);
    background: var(--green-soft);
    color: var(--green-deep);
}
.tech-slider-item img { width: 22px; height: 22px; object-fit: contain; }
.tech-slider-item i   { font-size: 1.1rem; color: var(--green-deep); }
@keyframes tech-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes tech-scroll-reverse {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* buton hero primar */
.btn-primary-hero {
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 0.9rem 2rem;
    font-size: 0.975rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.btn-primary-hero:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(31,214,96,0.35);
}
.btn-primary-hero i { display: inline-block; transition: transform .32s cubic-bezier(.34,1.56,.64,1); }
.btn-primary-hero:hover i { transform: scale(1.3) rotate(-10deg); }

.btn-outline-hero {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem 2rem;
    font-size: 0.975rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.btn-outline-hero:hover {
    border-color: var(--green);
    color: var(--green-deep);
    transform: translateY(-2px);
}
.btn-outline-hero i { display: inline-block; transition: transform .32s cubic-bezier(.34,1.56,.64,1); }
.btn-outline-hero:hover [class*="bi-arrow-right"] { transform: translateX(5px); }
.btn-outline-hero:hover [class*="bi-arrow-left"]  { transform: translateX(-5px); }
.btn-outline-hero:hover [class*="bi-grid"]         { transform: rotate(22deg) scale(1.1); }

/* statistici hero */
.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid var(--border);
}

.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.hero-stat-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--green-soft);
    color: var(--green-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.hero-stat-value span { color: var(--green); }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 3px; }

/* hero centrat cu carduri */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.hero-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(31,214,96,0.22) 0%, transparent 70%);
    top: -120px; left: 50%;
    transform: translateX(-50%);
    animation: blob1 14s ease-in-out infinite;
}

.hero-blob-2 {
    width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(31,214,96,0.14) 0%, transparent 70%);
    top: 40px; right: -100px;
    animation: blob2 18s ease-in-out infinite;
}

.hero-blob-3 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(12,125,54,0.12) 0%, transparent 70%);
    bottom: -60px; left: -60px;
    animation: blob3 22s ease-in-out infinite;
}

@keyframes blob1 {
    0%, 100% { transform: translateX(-50%) translateY(0)   scale(1); }
    33%       { transform: translateX(-46%) translateY(-35px) scale(1.06); }
    66%       { transform: translateX(-54%) translateY(25px)  scale(0.94); }
}
@keyframes blob2 {
    0%, 100% { transform: translate(0, 0)    scale(1); }
    40%       { transform: translate(-40px, 30px) scale(1.08); }
    70%       { transform: translate(20px, -20px) scale(0.92); }
}
@keyframes blob3 {
    0%, 100% { transform: translate(0, 0)    scale(1); }
    35%       { transform: translate(30px, -25px) scale(1.10); }
    65%       { transform: translate(-15px, 35px) scale(0.96); }
}

.hero-text-center {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text-center .hero-badge { justify-content: center; }
.hero-text-center p.lead { max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-text-center .hero-cta { justify-content: center; }
.hero-text-center .hero-stats { justify-content: center; }

.hero-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 52px;
    position: relative;
    z-index: 1;
}

/* mini-card hero */
.hero-mini-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform .3s ease, box-shadow .3s, border-color .3s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.hero-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(31,214,96,0.15);
    border-color: var(--green-border);
    color: inherit;
    text-decoration: none;
}

.hero-mini-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.hero-mini-card-title {
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.hero-mini-card-text {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.hero-mini-card-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--green-soft);
    color: var(--green-deep);
    border-radius: 100px;
    padding: 2px 9px;
    letter-spacing: 0.03em;
}

.hero-mini-card-stat {
    margin-top: 8px;
    font-size: 0.74rem;
    color: var(--text-muted);
}

.hero-mini-card-stat span {
    font-weight: 700;
    color: var(--green-deep);
}

/* sectiuni comune */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-deep);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 20px; height: 3px;
    background: var(--green);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* servicii */
#servicii { padding: 104px 0; background: var(--bg-white); }

.service-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    transition: all .28s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s;
}

.service-card:hover {
    border-color: var(--green-border);
    box-shadow: 0 12px 40px rgba(31,214,96,0.10);
    transform: translateY(-4px);
}

.service-card:hover::after { transform: scaleX(1); }

/* top card serviciu: icon + badge pret */
.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.service-card-top .service-icon { margin-bottom: 0; }

/* badge pret serviciu */
.service-price-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: var(--green-soft);
    color: var(--green-deep);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 6px;
}

.service-price-individual {
    background: var(--bg-section);
    color: var(--text-muted);
    border-color: var(--border);
}

.service-card:hover .service-price-badge:not(.service-price-individual) {
    background: var(--green);
    color: var(--dark);
    border-color: var(--green);
}

.service-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    background: var(--green-soft);
    color: var(--green-deep);
    transition: background .28s, color .28s;
    margin-bottom: 18px;
}

.service-card:hover .service-icon {
    background: var(--green);
    color: var(--dark);
}

.service-card h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Service Plans ───────────────────────────────────────────────────────── */
.service-plans-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.service-plans-grid {
    display: grid;
    gap: 24px;
    align-items: start;
}
.service-plans-grid.plans-1 { grid-template-columns: minmax(0, 480px); justify-content: center; }
.service-plans-grid.plans-2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin: 0 auto; }
.service-plans-grid.plans-3 { grid-template-columns: repeat(3, 1fr); }
.service-plans-grid.plans-4 { grid-template-columns: repeat(4, 1fr); }

.service-plan-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow .2s, transform .2s;
}
.service-plan-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.09);
    transform: translateY(-3px);
}
.service-plan-card.is-featured {
    border-color: var(--green-deep);
    background: #fff;
    box-shadow: 0 8px 32px rgba(16,185,129,.12);
}

.plan-featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-deep);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 0 0 12px 12px;
}

.plan-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}
.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.plan-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.plan-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.plan-price-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    align-self: flex-end;
    padding-bottom: 4px;
}
.plan-price-request {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.5;
}
.plan-features li .bi {
    color: var(--green-deep);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-footer {
    margin-top: 28px;
}
.plan-cta-btn {
    display: block;
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--dark);
    transition: background .18s, color .18s, border-color .18s;
}
.plan-cta-btn:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}
.plan-cta-btn.plan-cta-featured {
    background: var(--green-deep);
    color: #fff;
    border-color: var(--green-deep);
}
.plan-cta-btn.plan-cta-featured:hover {
    background: var(--green-darker, #059669);
    border-color: var(--green-darker, #059669);
}

/* de ce noi */
#de-ce-noi { padding: 104px 0; background: var(--bg-light); }

.why-feature { display: flex; gap: 18px; margin-bottom: 32px; align-items: flex-start; }

.why-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    background: var(--green-soft);
    color: var(--green-deep);
}

.why-feature h6 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; color: var(--dark); }
.why-feature p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.stat-box {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}

.stat-box .stat-value { font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.stat-box .stat-value em { font-style: normal; color: var(--green); }
.stat-box .stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* proces */
#cum-lucram { padding: 104px 0; background: var(--bg-white); }

.process-track {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0;
}

.process-track::before {
    content: '';
    position: absolute;
    top: 30px; left: 14%; right: 14%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--green-border), var(--border));
}

.process-step { text-align: center; position: relative; flex: 1; padding: 0 16px; }

.step-number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--bg-section);
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    border: 2px solid var(--border);
    transition: all .25s;
}

.process-step:hover .step-number {
    background: var(--green);
    color: var(--dark);
    border-color: var(--green);
    box-shadow: 0 6px 20px rgba(31,214,96,0.30);
}

.process-step h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* tehnologii */
#tehnologii { padding: 80px 0; background: var(--bg-light); }

.tech-category-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green-border);
    display: inline-block;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 14px;
}

.tech-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 12px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.tech-logo-wrap {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--text-muted);
}

.tech-logo-wrap img {
    width: 48px; height: 48px;
    object-fit: contain;
}

.tech-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

/* parteneri grila */
#parteneri { padding: 80px 0; background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.partners-label {
    text-align: center;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 48px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    filter: grayscale(1);
    opacity: 0.35;
    transition: filter .3s, opacity .3s;
    cursor: default;
}

.partner-logo-item:hover {
    filter: none;
    opacity: 1;
}

.partner-logo-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.partner-logo-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.01em;
    text-align: center;
}

/* tech compact pagini detalii */
.tech-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-compact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tech-compact-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: 120px;
    flex-shrink: 0;
}

.tech-compact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 8px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.tech-chip img {
    width: 18px; height: 18px;
    object-fit: contain;
    border-radius: 3px;
}

.tech-chip .bi { font-size: 0.9rem; color: var(--text-muted); }

/* slider parteneri */
.partners-slider-section {
    padding: 48px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.partners-slider-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 28px;
}

.partners-slider-outer {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-slider-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: partners-scroll 50s linear infinite;
}

.partners-slider-track:hover { animation-play-state: paused; }

@keyframes partners-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-slider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    filter: grayscale(1);
    opacity: 0.4;
    transition: filter .3s, opacity .3s;
    flex-shrink: 0;
}

.partners-slider-item:hover {
    filter: none;
    opacity: 1;
}

.partners-slider-item img {
    height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.partners-slider-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-slider-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}

/* formular contact */
#contact { padding: 104px 0; background: var(--bg-light); }

.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }

.contact-info-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--green-soft);
    color: var(--green-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 3px; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--dark); text-decoration: none; }
.contact-info-value:hover { color: var(--green-deep); }

.contact-form-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-form-card .form-label { font-size: 0.84rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }

.contact-form-card .form-control {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--bg-white);
    transition: border-color .2s, box-shadow .2s;
}

.contact-form-card .form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(31,214,96,0.12);
    outline: none;
}

.contact-form-card textarea.form-control { resize: none; }

.btn-submit {
    background: var(--green);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    padding: 0.9rem 2.4rem;
    font-size: 0.975rem;
    font-weight: 700;
    width: 100%;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(31,214,96,0.30);
}

/* banner cta */
#cta-banner { padding: 80px 0; background: var(--bg-white); }

.cta-box {
    background: linear-gradient(135deg, #0a1f10 0%, #112a18 45%, #081a0c 100%);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* cercuri decorative */
.cta-box::before {
    content: '';
    position: absolute;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(31,214,96,0.18) 0%, transparent 65%);
    top: -220px; right: -140px;
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(31,214,96,0.12) 0%, transparent 65%);
    bottom: -160px; left: -100px;
    pointer-events: none;
}

.cta-circle-mid {
    position: absolute;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(31,214,96,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-chip {
    display: inline-block;
    background: rgba(31,214,96,0.12);
    border: 1px solid rgba(31,214,96,0.22);
    color: var(--green);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cta-box p { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 36px; }

.btn-cta-green {
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 0.9rem 2.2rem;
    font-size: 0.975rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-green:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(31,214,96,0.35);
}
.btn-cta-green i { display: inline-block; transition: transform .32s cubic-bezier(.34,1.56,.64,1); }
.btn-cta-green:hover [class*="bi-arrow-up"]   { transform: translateY(-5px) scale(1.1); }
.btn-cta-green:hover [class*="bi-chat"]        { transform: scale(1.3) rotate(-10deg); }

.btn-cta-outline {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 0.9rem 2.2rem;
    font-size: 0.975rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.11);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.btn-cta-outline i { display: inline-block; transition: transform .32s cubic-bezier(.34,1.56,.64,1); }
.btn-cta-outline:hover [class*="bi-grid"]     { transform: rotate(22deg) scale(1.1); }
.btn-cta-outline:hover [class*="bi-envelope"] { transform: rotate(-12deg) scale(1.1); }
.btn-cta-outline:hover [class*="bi-arrow"]    { transform: translateX(5px); }

.cta-perks { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 44px; }

.cta-perk { font-size: 0.84rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; }
.cta-perk i { color: var(--green); font-size: 1rem; }

/* footer */
footer {
    background: #0d0d0d;
    color: rgba(255,255,255,0.55);
    padding: 72px 0 32px;
}

.footer-logo img { height: 28px; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-desc { font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.4); max-width: 260px; }

.footer-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); margin-bottom: 18px; }

footer a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; display: block; margin-bottom: 11px; transition: color .2s; }
footer a:hover { color: var(--green); }

.social-links { display: flex; gap: 8px; margin-top: 24px; }

.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45) !important;
    font-size: 1rem;
    transition: all .2s;
    margin: 0 !important;
}

.social-link:hover { background: var(--green); color: var(--dark) !important; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 56px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { display: inline; margin: 0; font-size: 0.8rem; }
/* ── Performance badge în footer ──────────────────────────────────────── */
.footer-perf {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 4px 10px 4px 6px;
    border-radius: 100px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.38);
    cursor: pointer;
    transition: background .2s, color .2s;
    position: relative;
    white-space: nowrap;
    line-height: 1;
}
.footer-perf:hover {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7);
}
.footer-perf:hover .perf-icon { filter: drop-shadow(0 0 5px currentColor); }

.perf-icon {
    font-size: 0.9rem;
    transition: filter .2s, color .2s;
    /* color se seteaza dinamic via JS */
}

/* Tooltip apare la hover deasupra badge-ului */
.footer-perf::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(15,25,20,0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s, transform .18s;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-perf::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    border: 5px solid transparent;
    border-top-color: rgba(15,25,20,0.92);
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s, transform .18s;
}
.footer-perf:hover::before,
.footer-perf:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Modal performanță */
#perfModal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}
#perfModal .perf-modal-hero {
    padding: 40px 32px 28px;
    text-align: center;
    position: relative;
}
#perfModal .perf-modal-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 20px currentColor);
    animation: perfPulse 2.4s ease-in-out infinite;
}
@keyframes perfPulse {
    0%, 100% { filter: drop-shadow(0 0 12px currentColor); transform: scale(1); }
    50%       { filter: drop-shadow(0 0 28px currentColor); transform: scale(1.08); }
}
#perfModal .perf-modal-tier {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
#perfModal .perf-modal-time {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin: 10px 0 4px;
    letter-spacing: -0.02em;
}
#perfModal .perf-modal-time small {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.6;
}
#perfModal .perf-modal-body {
    padding: 0 28px 28px;
}
#perfModal .perf-meter {
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: 100px;
    margin: 16px 0;
    overflow: hidden;
}
#perfModal .perf-meter-fill {
    height: 100%;
    border-radius: 100px;
    transition: width .6s cubic-bezier(.4,0,.2,1);
}
#perfModal .perf-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    text-align: center;
}
#perfModal .perf-tech {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.78rem;
    color: #999;
    font-weight: 500;
}

/* culori iconite */
.ic-green   { background: rgba(31,214,96,0.10); color: #0C7D36; }
.ic-dark    { background: rgba(23,23,23,0.07); color: var(--dark); }
.ic-amber   { background: rgba(245,158,11,0.10); color: #b45309; }
.ic-sky     { background: rgba(14,165,233,0.10); color: #0369a1; }
.ic-purple  { background: rgba(168,85,247,0.10); color: #7e22ce; }
.ic-rose    { background: rgba(244,63,94,0.10); color: #be123c; }
.ic-teal    { background: rgba(20,184,166,0.10); color: #0f766e; }
.ic-orange  { background: rgba(249,115,22,0.10); color: #c2410c; }

/* culori parteneri */
.pc-blue    { background: #dbeafe; color: #1d4ed8; }
.pc-green   { background: #dcfce7; color: #15803d; }
.pc-purple  { background: #f3e8ff; color: #7e22ce; }
.pc-orange  { background: #ffedd5; color: #c2410c; }
.pc-rose    { background: #ffe4e6; color: #be123c; }
.pc-teal    { background: #ccfbf1; color: #0f766e; }
.pc-amber   { background: #fef9c3; color: #a16207; }
.pc-sky     { background: #e0f2fe; color: #0369a1; }
.pc-indigo  { background: #e0e7ff; color: #3730a3; }
.pc-cyan    { background: #cffafe; color: #0e7490; }

/* intl tel input */
.iti { width: 100%; }
.iti input.form-control { border-radius: 10px; }
.iti--separate-dial-code .iti__selected-flag {
    border-radius: 10px 0 0 10px;
    background: var(--bg-section);
    border-right: 1.5px solid var(--border);
}
.iti__dropdown-content { border-radius: 10px; box-shadow: var(--shadow-md); }

/* antet pagini interioare */
.page-header {
    background: linear-gradient(160deg, #edfdf4 0%, #f9fffc 60%, #f2fbf5 100%);
    padding: 80px 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-header::before {
    content: '';
    position: absolute;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(31,214,96,0.10) 0%, transparent 68%);
    top: -160px; right: -100px;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(31,214,96,0.07) 0%, transparent 70%);
    bottom: -80px; left: -60px;
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0 14px;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 575px;
    margin: 0 auto;
    line-height: 1.72;
    position: relative;
    z-index: 1;
}

.page-header .section-label { position: relative; z-index: 1; }
.portfolio-header-meta { font-size: 0.9rem; color: var(--text-muted); }

/* galerie portofoliu */
.pgallery-section {
    background: #1c2333;
    padding: 40px 0 32px;
}

/* wrapper taiere overflow */
.pgallery-outer {
    overflow: hidden;
}

/* containerul nu taie overflow pentru peek */
.pgallery-container {
    overflow: visible !important;
}

.pgallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* latime slide minus peek */
.pgallery-slide {
    flex: 0 0 calc(100% - 80px);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #263045;
    cursor: zoom-in;
}

.pgallery-img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.pgallery-zoom {
    position: absolute;
    bottom: 14px; right: 14px;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background .2s;
    z-index: 2;
}
.pgallery-zoom:hover { background: rgba(255,255,255,.28); }

/* butoane prev next si contor */
.pgallery-controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pgallery-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.18);
    background: transparent;
    color: #fff;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.pgallery-btn:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.35);
}

.pgallery-counter {
    font-size: 0.82rem;
    color: rgba(255,255,255,.5);
    min-width: 40px;
    text-align: center;
}

/* fallback imagine unica */
.portfolio-detail-single-thumb {
    background: #1c2333;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}
.portfolio-detail-single-thumb img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

/* lightbox */
.pgallery-lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.94);
    z-index: 9000;
    align-items: center;
    justify-content: center;
}
.pgallery-lightbox.open { display: flex; }

.pgallery-lb-inner {
    max-width: 94vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pgallery-lb-inner img {
    max-width: 100%;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 6px;
}

.pgallery-lb-close {
    position: fixed; top: 16px; right: 20px;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    background: transparent;
    color: #fff;
    font-size: 17px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 9001;
    transition: background .2s;
}
.pgallery-lb-close:hover { background: rgba(255,255,255,.15); }

.pgallery-lb-arrow {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    background: transparent;
    color: #fff;
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 9001;
    transition: background .2s;
}
.pgallery-lb-arrow:hover { background: rgba(255,255,255,.15); }
.pgallery-lb-prev { left: 16px; }
.pgallery-lb-next { right: 16px; }

/* portofoliu */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.portfolio-card {
    display: block;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .28s, box-shadow .28s, border-color .28s;
    color: inherit;
    text-decoration: none;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-border);
}

.portfolio-thumb {
    aspect-ratio: 16/9;
    background: var(--bg-section);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    overflow: hidden;
    position: relative;
}

.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; }

.portfolio-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(23,23,23,0.35) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .28s;
}

.portfolio-card:hover .portfolio-thumb-overlay { opacity: 1; }

.portfolio-body { padding: 20px 22px 24px; }

.portfolio-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-deep);
    background: var(--green-soft);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.portfolio-body h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.portfolio-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.portfolio-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.portfolio-meta span { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }

/* fade-in */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* filtru blog */
.blog-filter-bar {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.blog-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.blog-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: all .2s;
}

.blog-filter-pill:hover {
    border-color: var(--green-border);
    color: var(--green-deep);
    text-decoration: none;
}

.blog-filter-pill.active {
    background: var(--green-soft);
    border-color: var(--green-border);
    color: var(--green-deep);
}

/* grila blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* card blog */
.blog-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(31,214,96,0.13);
    border-color: var(--green-border);
    color: inherit;
    text-decoration: none;
}

.blog-card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-section);
    position: relative;
}

.blog-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }

.blog-card-thumb-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
}

.blog-card-body {
    padding: 20px 20px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.blog-card-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-deep);
    background: var(--green-soft);
    border-radius: 100px;
    padding: 2px 9px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin: 0 0 8px;
}

.blog-card-excerpt {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0 0 14px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.blog-card-views {
    font-size: 0.75rem;
    color: var(--text-light);
}

.blog-card-read {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-left: auto;
}

/* paginare blog si portofoliu */
.pager-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 56px;
}

.pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .18s ease;
}

.pager-btn:hover {
    border-color: var(--green-deep);
    color: var(--green-deep);
    background: var(--bg-light);
}

.pager-btn.active {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: #fff;
    font-weight: 700;
    pointer-events: none;
}

/* pagina detaliu blog */
.blog-detail-hero-img {
    max-height: 480px;
    overflow: hidden;
}

.blog-detail-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    border-left: 4px solid var(--green-border);
    padding-left: 20px;
    margin-bottom: 32px;
}

.blog-detail-body { line-height: 1.85; }
.blog-detail-body h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 12px; }
.blog-detail-body h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 10px; }
.blog-detail-body p  { margin-bottom: 16px; }
.blog-detail-body ul, .blog-detail-body ol { margin-bottom: 16px; padding-left: 24px; }
.blog-detail-body li { margin-bottom: 6px; }
.blog-detail-body a  { color: var(--green-deep); }
.blog-detail-body blockquote {
    border-left: 4px solid var(--green-border);
    padding: 12px 20px;
    background: var(--green-soft);
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-style: italic;
}
.blog-detail-body img { max-width: 100%; border-radius: var(--radius-sm); }
.blog-detail-body table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.blog-detail-body th, .blog-detail-body td { padding: 10px 14px; border: 1px solid var(--border); }
.blog-detail-body th { background: var(--bg-section); font-weight: 600; }

/* responsive */
@media (max-width: 991px) {
    .navbar > .container { height: auto; padding-top: 12px; padding-bottom: 12px; }
    .navbar-collapse { padding: 8px 0 4px; }
    .hero { padding: 64px 0 48px; }
    .hero-cards-row { grid-template-columns: repeat(2, 1fr); }
    .hero-stat { padding-right: 24px; margin-right: 24px; }
    .process-track { flex-direction: column; align-items: center; gap: 32px; }
    .process-track::before { display: none; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .partner-logo-item { filter: none; opacity: 1; }
    .cta-box { padding: 52px 32px; }
    .contact-form-card { padding: 28px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .service-plans-grid.plans-3,
    .service-plans-grid.plans-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .hero-cta { flex-direction: column; }
    .hero-cta a { justify-content: center; }
    .hero-cards-row { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-right: 0; padding-right: 0; }
    .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-perks { flex-direction: column; align-items: center; gap: 12px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .service-plans-grid.plans-2,
    .service-plans-grid.plans-3,
    .service-plans-grid.plans-4 { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
    .tech-compact-cat { min-width: 90px; }
    .tech-compact-row { gap: 8px; }
}
