/* ===================================================
   WEBSUPPORT — Global Brand CSS (FINAL)
   Conform Brand Guidelines v1.0 / Mai 2026
   Override total: lime, neon, acid → gradient brand
   Loaded directly via <link>, max priority
   =================================================== */

:root {
    /* Brand */
    --ws-magenta: #FF00A1;
    --ws-orange:  #FF8D1D;
    --ws-gradient: linear-gradient(135deg, #FF00A1 0%, #FF5055 50%, #FF8D1D 100%);
    --ws-black:   #000000;
    --ws-carbon:  #141414;
    --ws-slate:   #2A2A2A;
    --ws-steel:   #6E6E6E;
    --ws-bone:    #D5D5D5;
    --ws-white:   #FAFAFA;
    --ws-success: #1F8A5B;
    --ws-warning: #E8B600;
    --ws-error:   #C8253C;
    --ws-info:    #2A6FDB;

    /* Override Tailwind/site arbitrary lime variables */
    --color-acid: #FF00A1 !important;
    --color-lime: #FF00A1 !important;
    --color-accent: #FF00A1 !important;
    --color-primary: #FF00A1 !important;
    --acid: #FF00A1 !important;
    --lime: #FF00A1 !important;
    --accent: #FF00A1 !important;
}

/* ===================================================
   GLOBAL OVERRIDE: lime → brand gradient
   acoperă orice utility class sau hex hardcoded
   =================================================== */

/* Background lime */
[style*="#FF00A1"],
[style*="rgb(197"],
[style*="rgb(197, 251"],
.bg-acid, .bg-lime, .bg-accent,
.bg-\[\#FF00A1\], .bg-\[c5fb00\] {
    background: var(--ws-gradient) !important;
    background-color: transparent !important;
}

/* Text lime */
.text-acid, .text-lime, .text-accent,
.text-\[\#FF00A1\] {
    background: var(--ws-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

/* Border lime */
.border-acid, .border-lime, .border-accent,
.border-\[\#FF00A1\] {
    border-color: var(--ws-magenta) !important;
}

/* Fill / stroke lime in SVG */
[fill="#FF00A1"], [fill="#FF00A1"],
[stroke="#FF00A1"], [stroke="#FF00A1"] {
    fill: var(--ws-magenta) !important;
    stroke: var(--ws-magenta) !important;
}

/* ===================================================
   HEADER & NAV
   =================================================== */
header, .site-header, nav.main-nav {
    background: var(--ws-black);
}

/* Logo - asigură că folosește SVG-ul nou */
.site-logo img, header .logo img {
    max-height: 36px;
}

/* Nav links */
header a, .nav-link, .main-nav a {
    color: var(--ws-white);
    transition: color 0.2s;
}
header a:hover, .nav-link:hover {
    color: var(--ws-magenta);
}

/* Header CTA button (was lime) */
header .btn,
header a.btn,
header button.btn,
.header-cta,
.nav-cta,
.btn-primary,
.btn-acid,
.btn-lime,
a[class*="btn-primary"],
a[class*="btn-acid"] {
    background: var(--ws-gradient) !important;
    background-color: transparent !important;
    color: var(--ws-white) !important;
    border-color: transparent !important;
}
header .btn:hover,
.header-cta:hover,
.btn-primary:hover,
.btn-acid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 161, 0.4);
}

/* Language toggle (RO/EN) */
.lang-switcher,
.locale-switcher,
[class*="lang-toggle"] {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 100px !important;
}
.lang-switcher .active,
.lang-switcher a.active,
.lang-switcher [aria-current="true"],
.locale-switcher .active,
.locale-switcher [class*="active"] {
    background: var(--ws-gradient) !important;
    background-color: transparent !important;
    color: var(--ws-white) !important;
    border-radius: 100px !important;
}

/* ===================================================
   GENERIC BUTTONS (toate paginile)
   =================================================== */
.btn,
button.btn,
a.btn,
.button,
[class*="btn-primary"]:not(.btn-secondary-tech):not(.btn-secondary),
.cta-button,
.submit-button {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s;
}

/* Primary: gradient brand */
.btn-primary,
.btn.primary,
.btn-cta,
.btn-acid,
a.btn-primary,
button.btn-primary {
    background: var(--ws-gradient) !important;
    background-color: transparent !important;
    color: var(--ws-white) !important;
    border: 2px solid transparent !important;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 0, 161, 0.4);
}

/* Secondary: outline white */
.btn-secondary,
.btn.secondary,
.btn-outline {
    background: transparent !important;
    color: var(--ws-white) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
}
.btn-secondary:hover,
.btn-outline:hover {
    background: var(--ws-gradient) !important;
    border-color: transparent !important;
}

/* ===================================================
   LINKS & ACCENTS (peste tot)
   =================================================== */
a {
    color: inherit;
}
a.link-accent,
a.accent,
.link {
    color: var(--ws-magenta);
}
a.link-accent:hover, a.accent:hover {
    color: var(--ws-orange);
}

/* Selection */
::selection {
    background: var(--ws-magenta);
    color: var(--ws-white);
}

/* ===================================================
   LISTS / BULLETS / CHECKMARKS
   =================================================== */
ul.bullet-list li::before,
ul.check-list li::before,
.list-checked li::before {
    background: var(--ws-magenta) !important;
    color: var(--ws-white) !important;
}

/* ===================================================
   ICONS — accent color
   =================================================== */
.icon-accent,
.text-accent svg,
svg.accent,
[class*="icon-primary"] {
    color: var(--ws-magenta) !important;
    stroke: var(--ws-magenta) !important;
}

/* ===================================================
   FORMS
   =================================================== */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--ws-magenta) !important;
    outline-color: var(--ws-magenta) !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 161, 0.15) !important;
}

/* ===================================================
   BADGES, TAGS, PILLS
   =================================================== */
.badge,
.tag,
.pill {
    font-family: 'Inter', sans-serif;
}
.badge-accent, .badge-primary,
.tag-accent, .tag-primary {
    background: rgba(255, 0, 161, 0.15) !important;
    color: var(--ws-magenta) !important;
    border: 1px solid rgba(255, 0, 161, 0.3) !important;
}

/* ===================================================
   FOOTER
   =================================================== */
footer, .site-footer {
    background: var(--ws-black);
}
footer a:hover, .site-footer a:hover {
    color: var(--ws-magenta) !important;
}
footer .social-link,
.site-footer .social-link,
footer [class*="social"] a {
    transition: all 0.3s;
}
footer .social-link:hover,
.site-footer .social-link:hover,
footer [class*="social"] a:hover {
    color: var(--ws-magenta) !important;
}

/* ===================================================
   GSAP FALLBACKS
   =================================================== */
[data-fade-up], [data-fade-stagger] > *, [data-split],
.fade-up, .fade-stagger > * {
    opacity: 1 !important;
    transform: none !important;
}

/* ===================================================
   HERO ENGINE (homepage)
   =================================================== */
.ws-container, .hero-container, .partners-band-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .ws-container, .hero-container, .partners-band-inner { padding: 0 16px; }
}

.ws-section { padding: 80px 0; position: relative; }
@media (max-width: 768px) { .ws-section { padding: 60px 0; } }

.ws-section-title {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    color: var(--ws-white) !important;
    margin: 0 0 16px !important;
    letter-spacing: -0.02em;
}

.ws-section-lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: var(--ws-bone);
    opacity: 0.7;
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
}

.ws-section-header {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 56px;
}
.ws-section-intro { max-width: 760px; margin-bottom: 64px; }

.eyebrow {
    display: inline-block !important;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--ws-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 24px;
    position: relative;
    padding-left: 32px;
    opacity: 1 !important;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--ws-gradient);
    -webkit-text-fill-color: initial;
}

.hero-engine {
    position: relative;
    background: var(--ws-black) !important;
    padding: 100px 0 80px !important;
    overflow: hidden;
    min-height: calc(100vh - 73px);
    display: flex !important;
    align-items: center;
    z-index: 1;
}
.hero-engine::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(255, 0, 161, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(255, 141, 29, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-shape-tl, .hero-shape-br {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
.hero-shape-tl {
    top: -200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 161, 0.35) 0%, transparent 70%);
}
.hero-shape-br {
    bottom: -200px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 141, 29, 0.3) 0%, transparent 70%);
}
.hero-dots-tl { position: absolute; top: 100px; left: 60px; width: 200px; opacity: 0.5; z-index: 1; pointer-events: none; }
.hero-dots-tl img { width: 100%; display: block; }
.hero-hex-tr, .hero-hex-bl { position: absolute; width: 180px; z-index: 1; pointer-events: none; }
.hero-hex-tr { top: 60px; right: -50px; opacity: 0.45; }
.hero-hex-bl { bottom: 60px; left: -50px; opacity: 0.3; }
.hero-hex-tr img, .hero-hex-bl img { width: 100%; display: block; }

.hero-container { position: relative; z-index: 10; width: 100%; }
.hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
}
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
}
.hero-content { max-width: 600px; }

.eyebrow-pill {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 1 !important;
}
.eyebrow-pill span:not(.eyebrow-pill-dot) {
    background: var(--ws-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.eyebrow-pill-dot {
    width: 8px; height: 8px;
    background: var(--ws-magenta) !important;
    border-radius: 50%;
    box-shadow: 0 0 12px var(--ws-magenta);
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.85); }
}

.hero-mega-title {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem) !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    color: var(--ws-white) !important;
    margin: 0 0 24px !important;
    letter-spacing: -0.02em;
    display: block !important;
}
.hero-mega-title > *, .hero-mega-title span, .hero-mega-title div {
    display: inline !important;
}
.hero-mark {
    display: inline !important;
    background: var(--ws-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 0 4px;
    font-weight: 700;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.65;
    color: var(--ws-bone) !important;
    opacity: 0.7 !important;
    max-width: 540px;
    margin: 0 0 32px;
    font-weight: 300;
}

.step-list {
    list-style: none !important;
    padding: 4px 0 4px 28px !important;
    margin: 0 0 36px !important;
    border-left: 2px solid var(--ws-magenta) !important;
    box-shadow: -2px 0 20px rgba(255, 0, 161, 0.2);
}
.step-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ws-white) !important;
    opacity: 0.9 !important;
    margin-bottom: 14px;
    position: relative;
    padding-left: 32px;
    display: block !important;
    list-style: none !important;
}
.step-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    background: rgba(255, 0, 161, 0.1);
    border: 1.5px solid var(--ws-magenta);
    border-radius: 50%;
}
.step-list li::after {
    content: '';
    position: absolute;
    left: 6px; top: 50%;
    transform: translateY(-65%) rotate(45deg);
    width: 8px; height: 4px;
    border-bottom: 2px solid var(--ws-magenta);
    border-right: 2px solid var(--ws-magenta);
}
.step-list li:last-child { margin-bottom: 0; }

.hero-cta-row { display: flex !important; flex-wrap: wrap; align-items: center; gap: 24px; }

.btn-primary-large {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--ws-gradient) !important;
    color: var(--ws-white) !important;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-primary-large:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 0, 161, 0.4); }
.btn-primary-large .btn-icon {
    width: 28px; height: 28px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary-tech {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent !important;
    color: var(--ws-white) !important;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s;
}
.btn-secondary-tech:hover { background: var(--ws-gradient) !important; border-color: transparent !important; transform: translateY(-2px); }

.hotline-block { display: inline-flex !important; align-items: center; gap: 14px; color: var(--ws-white) !important; text-decoration: none; }
.hotline-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    background: var(--ws-gradient) !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ws-white) !important;
    box-shadow: 0 8px 20px rgba(255, 0, 161, 0.4);
    animation: hotline-pulse 2s infinite;
}
@keyframes hotline-pulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(255, 0, 161, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(255, 141, 29, 0.6); }
}
.hotline-text { display: flex; flex-direction: column; gap: 2px; }
.hotline-text small { color: var(--ws-steel) !important; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.hotline-text strong { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ws-white) !important; }

.hero-engine-col { display: flex !important; justify-content: center; align-items: center; }
.engine-wrap { position: relative; width: 100% !important; max-width: 560px !important; aspect-ratio: 1; }
.engine-ring { position: absolute; inset: 0; display: flex !important; align-items: center; justify-content: center; }
.engine-ring img { width: 100% !important; height: 100% !important; object-fit: contain; display: block; }
.engine-ring-1 { animation: spin 50s linear infinite; }
.engine-ring-2 { inset: 8%; animation: spinReverse 40s linear infinite; }
.engine-ring-3 { inset: 18%; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

.engine-badge {
    position: absolute;
    background: rgba(20, 20, 20, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 161, 0.3) !important;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: float-badge 4s ease-in-out infinite;
}
.engine-badge-tl { top: 5%; left: -8%; }
.engine-badge-br { bottom: 5%; right: -8%; animation-delay: 2s; }
@keyframes float-badge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.engine-badge-num {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--ws-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}
.engine-badge-label { font-family: 'Inter', sans-serif; font-size: 10px; color: var(--ws-steel); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; font-weight: 500; }

/* Partners band */
.partners-band { background: var(--ws-gradient) !important; padding: 40px 0; position: relative; overflow: hidden; }
.partners-band-inner { display: grid !important; grid-template-columns: 240px 1fr !important; gap: 32px; align-items: center; }
@media (max-width: 768px) { .partners-band-inner { grid-template-columns: 1fr !important; gap: 16px; } }
.partners-band-title { position: relative; padding-right: 32px; }
.partners-band-title span { font-family: 'Inter', sans-serif; font-size: 1.4rem !important; font-weight: 700; color: var(--ws-white) !important; letter-spacing: -0.01em; line-height: 1.2; display: block; }
.partners-band-title::after { content: ''; position: absolute; top: -30px; right: 0; bottom: -30px; width: 2px; background: rgba(255, 255, 255, 0.3); }
@media (max-width: 768px) { .partners-band-title::after { display: none; } }
.partners-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.partners-track { display: flex !important; gap: 16px; animation: marquee-scroll 35s linear infinite; width: max-content; }
.partner-card { flex-shrink: 0; height: 60px; min-width: 160px; max-width: 200px; background: var(--ws-white) !important; border-radius: 4px; display: flex !important; align-items: center; justify-content: center; padding: 0 20px; clip-path: polygon(85% 0, 100% 40%, 100% 100%, 0 100%, 0 0); transition: transform 0.3s; }
.partner-card:hover { transform: translateY(-2px); }
.partner-card img { max-height: 32px; max-width: 100px; object-fit: contain; }
.partner-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ws-carbon); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Services */
.services-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 20px; }
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr !important; } }
.service-card-tech { display: block !important; position: relative; padding: 28px 24px; background: rgba(255, 255, 255, 0.025) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 24px; transition: all 0.4s; overflow: hidden; text-decoration: none; opacity: 1 !important; }
.service-card-tech::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255, 0, 161, 0.08) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.service-card-tech:hover { border-color: rgba(255, 0, 161, 0.4) !important; transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5); }
.service-card-tech:hover::before { opacity: 1; }
.service-card-icon { width: 48px; height: 48px; background: rgba(255, 0, 161, 0.1); border: 1px solid rgba(255, 0, 161, 0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--ws-magenta); margin-bottom: 20px; transition: all 0.4s; }
.service-card-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.service-card-tech:hover .service-card-icon { background: var(--ws-gradient); border-color: transparent; color: var(--ws-white); transform: rotate(-5deg) scale(1.1); }
.service-card-title { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--ws-white) !important; margin: 0 0 10px; }
.service-card-desc { font-family: 'Inter', sans-serif; font-size: 0.875rem; color: var(--ws-bone) !important; opacity: 0.7 !important; line-height: 1.6; margin: 0; }
.service-card-arrow { position: absolute; top: 24px; right: 24px; width: 32px; height: 32px; background: rgba(255, 255, 255, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ws-steel); transition: all 0.3s; }
.service-card-tech:hover .service-card-arrow { background: var(--ws-gradient); color: var(--ws-white); transform: rotate(-45deg); }

/* Process */
.process-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 48px; }
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr !important; gap: 32px; } }
.process-step-num { font-family: 'Inter', sans-serif; font-size: 7rem; font-weight: 700; line-height: 0.9; margin-bottom: 16px; letter-spacing: -0.05em; background: var(--ws-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; opacity: 0.4 !important; }
.process-step-title { font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 600; color: var(--ws-white) !important; margin: 0 0 12px; }
.process-step-desc { font-family: 'Inter', sans-serif; color: var(--ws-bone) !important; opacity: 0.7; line-height: 1.6; margin: 0; }

/* Articles & Projects */
.projects-grid, .articles-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 24px; }
@media (max-width: 1024px) { .projects-grid, .articles-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .projects-grid, .articles-grid { grid-template-columns: 1fr !important; } }
.article-card { display: block !important; padding: 32px 28px; background: rgba(255, 255, 255, 0.025) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 24px; transition: all 0.4s; position: relative; text-decoration: none; }
.article-card:hover { border-color: rgba(255, 0, 161, 0.4) !important; transform: translateY(-4px); }
.article-card-meta { display: flex; gap: 8px; align-items: center; font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ws-steel) !important; margin-bottom: 14px; }
.article-card-title { font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--ws-white) !important; margin: 0 0 12px; line-height: 1.35; }
.article-card-excerpt { font-family: 'Inter', sans-serif; font-size: 0.875rem; color: var(--ws-bone) !important; opacity: 0.7; line-height: 1.6; margin: 0; }
.article-card-arrow { position: absolute; bottom: 24px; right: 28px; font-size: 1.5rem; background: var(--ws-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; transition: transform 0.3s; }
.article-card:hover .article-card-arrow { transform: translateX(8px); }

/* CTA strip */
.cta-strip, .lead-capture-cta, .cta-banner, [class*="lead-capture"], section.cta {
    background-color: transparent !important;
}
.cta-strip > *, .lead-capture-cta > * { color: var(--ws-white); }
.cta-strip input, .lead-capture-cta input {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(0, 0, 0, 0.4) !important;
    color: var(--ws-white) !important;
}
.cta-strip input::placeholder, .lead-capture-cta input::placeholder { color: rgba(255, 255, 255, 0.6) !important; }

/* Mobile */
@media (max-width: 768px) {
    .engine-badge-tl { top: 2%; left: 0; }
    .engine-badge-br { bottom: 2%; right: 0; }
    .engine-badge { padding: 10px 14px; }
    .engine-badge-num { font-size: 1.25rem; }
    .hero-hex-tr, .hero-hex-bl, .hero-dots-tl { display: none; }
    .hero-engine { padding: 60px 0 40px; min-height: auto; }
    .hero-cta-row { gap: 16px; }
    .hotline-block { width: 100%; margin-top: 8px; }
}
