/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --green: #66B170;
    --green-dark: #215B2E;
    --green-darker: #0C2212;
    --green-light: #BAE0BC;
    --green-50: #F0F9F0;

    --blue: #00608A;
    --blue-dark: #04334d;
    --blue-deep: #021e2f;
    --blue-light: #76DBFF;

    --dark: #333333;
    --dark-deep: #1A1A1A;
    --dark-bg: #141414;

    --red: #D83729;
    --red-soft: rgba(216, 55, 41, 0.08);
    --red-bg: #FEF3F2;

    --white: #ffffff;
    --off-white: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E6E6E6;
    --gray-300: #D6D6D6;
    --gray-500: #767676;
    --gray-700: #434343;

    --whatsapp: #25D366;

    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.1);

    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter Tight', system-ui, sans-serif;

    --max-w: 1140px;
    --max-w-narrow: 800px;
    --gap: 24px;
    --section-py: 100px;
    --header-h: 72px;
    --radius: 10px;
    --radius-lg: 16px;

    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --header-h: 60px;
    }
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: -0.03em;
}
h1 { font-weight: 700; font-size: clamp(38px, 5.5vw, 68px); }
h2 { font-weight: 700; font-size: clamp(30px, 4vw, 48px); }
h3 { font-weight: 600; font-size: clamp(17px, 1.8vw, 21px); }
em { font-style: italic; color: var(--red); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gap);
}
.container--narrow { max-width: var(--max-w-narrow); }
.section { padding: var(--section-py) 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--dark-bg); color: #f5f5f5; }
.section--blue { background: var(--blue-deep); color: #f5f5f5; }
.section--green-light { background: var(--green-50); }

/* ============================================
   SECTION HEAD (Matias Title component)
   ============================================ */
.section-head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-head__sub {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
    padding: 5px 16px;
    border: 1px solid rgba(102, 177, 112, 0.3);
    border-radius: 100px;
    background: rgba(102, 177, 112, 0.06);
}

.section-head__sub--light {
    color: var(--green-light);
    border-color: rgba(186, 224, 188, 0.25);
    background: rgba(186, 224, 188, 0.06);
}

.section-head__sub--red {
    color: var(--red);
    border-color: rgba(216, 55, 41, 0.3);
    background: rgba(216, 55, 41, 0.06);
}

.section-head__sub--red-light {
    color: #f08478;
    border-color: rgba(216, 55, 41, 0.25);
    background: rgba(216, 55, 41, 0.06);
}

.section-head__title { margin-bottom: 0; }
.section-head__title--light { color: #f5f5f5; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.anim-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.anim-reveal[data-delay="1"] { transition-delay: 0.12s; }
.anim-reveal[data-delay="2"] { transition-delay: 0.24s; }
.anim-reveal[data-delay="3"] { transition-delay: 0.36s; }
.anim-reveal[data-delay="4"] { transition-delay: 0.48s; }
.anim-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.skip-link {
    position: absolute; top: -100%; left: 16px;
    padding: 8px 16px; background: var(--green); color: var(--white);
    border-radius: var(--radius); font-weight: 600; z-index: 1000;
}
.skip-link:focus { top: 8px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 30px; font-family: var(--font-body); font-weight: 600; font-size: 15px;
    border-radius: var(--radius); border: 2px solid transparent;
    cursor: pointer; transition: all 0.4s var(--ease); text-align: center;
    position: relative; overflow: hidden;
}
.btn:active { transform: scale(0.97); }

/* Matias-style ::before hover fill */
.btn--primary {
    background: var(--green); color: var(--white); border-color: var(--green);
}
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }

.btn--dark {
    background: var(--dark-bg); color: var(--white); border-color: var(--dark-bg);
}
.btn--dark:hover { background: var(--dark); transform: translateY(-2px); }

.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); transform: translateY(-2px); }

.btn--outline-light {
    background: transparent; color: #fff; border-color: rgba(255,255,255,0.25);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

.btn--outline-dark {
    background: transparent; color: var(--dark); border-color: var(--gray-200);
}
.btn--outline-dark:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-50); }

.btn--sm { padding: 8px 20px; font-size: 14px; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
    background: var(--whatsapp); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 90; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float::after {
    content: ''; position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.3); animation: wa-ring 2s ease-in-out infinite;
}
@keyframes wa-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
    background: transparent; z-index: 100;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 1px solid transparent;
}
.header--scrolled {
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border-dark);
}
.header__inner {
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.header__logo img {
    height: 32px; width: auto;
    filter: brightness(0) invert(1); opacity: 0.9; transition: opacity 0.2s;
}
.header__logo:hover img { opacity: 1; }
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__link {
    color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 500;
    transition: color 0.2s; letter-spacing: 0.01em;
}
.header__link:hover { color: var(--white); }

/* Hamburger */
.header__burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.header__burger span {
    display: block; width: 24px; height: 2px; background: var(--white);
    transition: all 0.3s ease; border-radius: 2px;
}
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .header__nav {
        position: fixed; top: var(--header-h); left: 0; right: 0;
        background: rgba(20,20,20,0.98); backdrop-filter: blur(16px);
        flex-direction: column; gap: 0; padding: 0;
        transform: translateY(-120%); transition: transform 0.4s var(--ease);
        border-bottom: 1px solid var(--border-dark);
    }
    .header__nav.open { transform: translateY(0); }
    .header__link, .header__nav .btn {
        display: block; width: 100%; padding: 16px var(--gap);
        text-align: left; border-radius: 0; font-size: 16px;
    }
    .header__link { color: rgba(255,255,255,0.7); border-bottom: 1px solid var(--border-dark); }
    .header__burger { display: flex; }
}

/* ============================================
   HERO (Matias Banner-inspired)
   ============================================ */
.hero {
    background: var(--blue-deep);
    padding: calc(var(--header-h) + 60px) 0 0;
    text-align: center; position: relative; overflow: hidden;
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
}

/* Decorative shapes (Matias floating elements) */
.hero__deco {
    position: absolute; border-radius: 50%; pointer-events: none;
}
.hero__deco--1 {
    width: 500px; height: 500px; top: -15%; right: -8%;
    background: radial-gradient(circle, rgba(216,55,41,0.1) 0%, transparent 70%);
    animation: deco-float 14s ease-in-out infinite;
}
.hero__deco--2 {
    width: 400px; height: 400px; bottom: -10%; left: -5%;
    background: radial-gradient(circle, rgba(0,96,138,0.1) 0%, transparent 70%);
    animation: deco-float 18s ease-in-out infinite reverse;
}
.hero__deco--3 {
    width: 200px; height: 200px; top: 40%; left: 15%;
    background: radial-gradient(circle, rgba(216,55,41,0.06) 0%, transparent 70%);
    animation: deco-float 10s ease-in-out infinite 2s;
}
@keyframes deco-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -25px) scale(1.03); }
    66% { transform: translate(-10px, 15px) scale(0.97); }
}

.hero__content {
    position: relative; z-index: 1; padding-bottom: 40px;
}

.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 20px; font-size: 12px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--green-light); border: 1px solid rgba(102,177,112,0.3);
    border-radius: 100px; margin-bottom: 36px;
    background: rgba(102,177,112,0.06);
}
.hero__badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green); animation: dot-pulse 2s ease infinite;
}
@keyframes dot-pulse {
    0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero__title {
    color: #f5f5f5; margin-bottom: 24px;
    max-width: 850px; margin-left: auto; margin-right: auto;
}

/* Typewriter effect — text starts hidden (visible for crawlers via noscript/no-JS fallback) */
.hero__typewriter {
    display: block;
    color: var(--red);
    min-height: 1.2em;
    font-size: 0;
}
.hero__typewriter.tw-active {
    font-size: inherit;
}
/* No-JS fallback: show text normally */
noscript .hero__typewriter-fallback {
    display: block;
    color: var(--red);
}
.hero__typewriter::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: rgba(255,255,255,0.8);
    margin-left: 2px;
    vertical-align: baseline;
    animation: tw-blink 0.6s step-end infinite;
}
.hero__typewriter--done::after {
    animation: tw-blink-out 0.6s step-end 3 forwards;
}
@keyframes tw-blink {
    50% { background: transparent; }
}
@keyframes tw-blink-out {
    50% { background: transparent; }
    100% { background: transparent; }
}

.hero__subtitle {
    font-size: clamp(16px, 1.8vw, 18px); font-weight: 300;
    color: rgba(245,245,245,0.55); margin-bottom: 40px;
    max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.8;
}

.hero__ctas {
    display: flex; flex-direction: column; gap: 12px; align-items: center;
}
@media (min-width: 640px) {
    .hero__ctas { flex-direction: row; justify-content: center; gap: 16px; }
}

/* Stats */
.hero__stats {
    display: flex; justify-content: center; align-items: center;
    gap: 32px; flex-wrap: wrap; margin-top: 56px;
    padding-top: 36px; border-top: 1px solid var(--border-dark);
}
.hero__stat { text-align: center; }
.hero__stat-value {
    display: block; font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 4vw, 44px); color: var(--green); line-height: 1;
    margin-bottom: 4px;
}
.hero__stat-label {
    font-size: 13px; color: rgba(245,245,245,0.45); letter-spacing: 0.02em;
}
.hero__stat-sep {
    width: 1px; height: 36px; background: var(--border-dark);
}
@media (max-width: 480px) {
    .hero__stats { gap: 20px; }
    .hero__stat-sep { height: 28px; }
}
@media (min-width: 768px) {
    .hero__stats { gap: 64px; }
}
@media (min-width: 1024px) {
    .hero { padding-top: calc(var(--header-h) + 80px); }
}

/* ============================================
   MARQUEE (Matias Marquee component)
   ============================================ */
.marquee {
    background: var(--green); color: var(--white);
    padding: 16px 0; overflow: hidden; position: relative;
}
.marquee--red {
    background: var(--red); color: var(--white);
}
.marquee__track {
    display: flex; align-items: center; gap: 28px;
    white-space: nowrap; animation: marquee-go 30s linear infinite;
    width: max-content;
    font-family: var(--font-display); font-weight: 600; font-size: 14px;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.marquee__dot {
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0;
}
@keyframes marquee-go {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   PROBLEMA (Matias Service-item pattern)
   ============================================ */
.problema__list {
    max-width: 900px; margin: 0 auto 48px;
}

.problema__item {
    display: flex; align-items: flex-start; gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: border-color 0.4s ease;
}
.problema__item:first-child { border-top: 1px solid var(--gray-200); }
.problema__item:hover { border-color: var(--red); }

.problema__num {
    font-family: var(--font-display); font-size: 28px; font-weight: 700;
    color: var(--red); flex-shrink: 0;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--red);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    line-height: 1;
}
.problema__item:hover .problema__num {
    background: var(--red); color: var(--white);
}

.problema__body { flex: 1; }
.problema__title {
    font-size: 20px; font-weight: 600; color: var(--dark);
    margin-bottom: 6px; transition: color 0.3s;
}
.problema__item:hover .problema__title { color: var(--red); }
.problema__body p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}

.problema__icon-wrap {
    flex-shrink: 0; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--red-soft); color: var(--red); border-radius: 12px;
    transition: background 0.3s, color 0.3s;
}
.problema__item:hover .problema__icon-wrap {
    background: var(--red); color: var(--white);
}

@media (max-width: 640px) {
    .problema__item { flex-wrap: wrap; gap: 12px; }
    .problema__num { min-width: auto; }
    .problema__icon-wrap { display: none; }
}

/* ============================================
   CE SPUNE LEGEA
   ============================================ */
.lege__intro {
    text-align: center; max-width: 680px; margin: -20px auto 48px;
    font-size: 17px; color: rgba(245,245,245,0.55); line-height: 1.8;
}

.lege__blocks {
    display: flex; flex-direction: column; gap: 20px;
    max-width: 800px; margin: 0 auto 64px;
}
.lege__block {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dark); border-radius: 14px; overflow: hidden;
}
.lege__block-header {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-dark);
    background: rgba(255,255,255,0.02);
}
.lege__block-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--red); color: var(--white);
    font-family: var(--font-display); font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.lege__block-header h3 {
    font-size: 18px; font-weight: 600; color: #f5f5f5; line-height: 1.3;
}
.lege__block-body { padding: 24px; }
.lege__block-body p {
    color: rgba(245,245,245,0.55); line-height: 1.8; margin-bottom: 14px; font-size: 15px;
}
.lege__block-body p:last-child { margin-bottom: 0; }
.lege__block-body strong { color: #f5f5f5; }

.lege__list { margin: 10px 0 14px; }
.lege__list li {
    position: relative; padding: 6px 0 6px 22px;
    color: rgba(245,245,245,0.55); line-height: 1.6; font-size: 15px;
}
.lege__list li::before {
    content: '\2022'; position: absolute; left: 6px;
    color: var(--red); font-weight: 700;
}
.lege__list li strong { color: #f5f5f5; }
.lege__list--numbered { counter-reset: ll; }
.lege__list--numbered li { counter-increment: ll; }
.lege__list--numbered li::before {
    content: counter(ll) '.'; color: var(--green); font-weight: 600; left: 0;
}

.lege__ref {
    font-size: 13px; color: rgba(245,245,245,0.3); font-style: italic;
    margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-dark);
}

/* Timeline floating reveal on scroll — each step slides in from left */
.anim-timeline {
    opacity: 0;
    transform: translateX(-50px) translateY(10px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.anim-timeline.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Timeline */
.lege__timeline {
    position: relative; padding-left: 24px;
}
.lege__timeline::before {
    content: ''; position: absolute; left: 6px; top: 12px; bottom: 12px;
    width: 2px; background: var(--border-dark);
}
.lege__timeline-step {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 14px 0; position: relative;
}
.lege__timeline-marker {
    position: absolute; left: -24px; top: 20px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--dark-bg); border: 2px solid var(--red); z-index: 1;
}
.lege__timeline-step--danger .lege__timeline-marker {
    border-color: var(--red); background: var(--red);
    box-shadow: 0 0 12px rgba(216,55,41,0.4);
}
.lege__timeline-step strong {
    display: block; color: #f5f5f5; font-size: 15px; margin-bottom: 4px;
}
.lege__timeline-step--danger strong { color: var(--red); }
.lege__timeline-step p {
    color: rgba(245,245,245,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 6px;
}

@media (min-width: 768px) {
    .lege__block-header h3 { font-size: 20px; }
}

/* ============================================
   COMPARATIE
   ============================================ */
.comparatie__grid {
    display: grid; gap: 24px; align-items: stretch; position: relative;
    max-width: 900px; margin: 0 auto;
}
.comparatie__col {
    padding: 36px 28px; border-radius: var(--radius-lg); position: relative;
}
.comparatie__col--bad {
    background: var(--red-bg); border: 1px solid rgba(216,55,41,0.12);
}
.comparatie__col--good {
    background: var(--green-50); border: 1px solid rgba(102,177,112,0.15);
}
.comparatie__col-badge {
    display: inline-block; font-size: 13px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 4px 14px; border-radius: 100px; margin-bottom: 24px;
    background: rgba(216,55,41,0.1); color: var(--red);
}
.comparatie__col-badge--green {
    background: rgba(102,177,112,0.12); color: var(--green-dark);
}
.comparatie__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.comparatie__list-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; line-height: 1.6; color: var(--dark);
}
.comparatie__x {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; font-size: 16px; font-weight: 700;
    border-radius: 50%; color: var(--red); background: rgba(216,55,41,0.1);
    line-height: 1;
}
.comparatie__check {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; font-size: 13px; font-weight: 700;
    border-radius: 50%; color: var(--green-dark); background: rgba(102,177,112,0.15);
    line-height: 1;
}
.comparatie__total {
    padding: 14px 18px; border-radius: var(--radius);
    font-size: 15px; text-align: center; font-weight: 600;
}
.comparatie__total--bad { background: rgba(216,55,41,0.08); color: var(--red); }
.comparatie__total--good { background: rgba(102,177,112,0.12); color: var(--green-dark); }

.comparatie__vs-circle { display: none; }

@media (min-width: 768px) {
    .comparatie__grid { grid-template-columns: 1fr auto 1fr; gap: 0; }
    .comparatie__vs-circle {
        display: flex; align-items: center; justify-content: center;
        width: 52px; height: 52px; border-radius: 50%;
        background: var(--white); border: 2px solid var(--gray-200);
        font-family: var(--font-display); font-weight: 700; font-size: 14px;
        color: var(--gray-500); align-self: center; margin: 0 -26px;
        position: relative; z-index: 2; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
}

/* ============================================
   SOLUTIA (Matias Services layout — numbered, border-bottom)
   ============================================ */
.solutia__list { max-width: 900px; margin: 0 auto; }

.solutia__item {
    display: flex; align-items: flex-start; gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(102,177,112,0.15);
    transition: border-color 0.3s;
}
.solutia__item:first-child { border-top: 1px solid rgba(102,177,112,0.15); }
.solutia__item:hover { border-color: var(--green); }

.solutia__num {
    font-family: var(--font-display); font-size: 28px; font-weight: 700;
    color: var(--green-dark); flex-shrink: 0;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--green);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    line-height: 1;
}
.solutia__item:hover .solutia__num {
    background: var(--green); color: var(--white);
}
.solutia__body { flex: 1; }
.solutia__body h3 {
    font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 4px;
    transition: color 0.3s;
}
.solutia__item:hover .solutia__body h3 { color: var(--green-dark); }
.solutia__body p { font-size: 15px; color: var(--gray-500); }

.solutia__icon {
    flex-shrink: 0; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(102,177,112,0.12); color: var(--green-dark); border-radius: 12px;
    transition: background 0.3s, color 0.3s;
}
.solutia__icon svg { width: 24px; height: 24px; }
.solutia__item:hover .solutia__icon {
    background: var(--green); color: var(--white);
}

@media (max-width: 640px) {
    .solutia__icon { display: none; }
    .solutia__item { gap: 16px; }
}

/* ============================================
   PASI (Matias WorkProcess cards)
   ============================================ */
.pasi__grid {
    display: grid; gap: var(--gap); max-width: 960px; margin: 0 auto;
}

.pasi__card {
    position: relative; padding: 36px 28px;
    border: 1px solid var(--border-dark); border-radius: var(--radius);
    transition: border-color 0.4s ease;
    overflow: hidden;
}
.pasi__card:hover { border-color: rgba(102,177,112,0.4); }

/* Matias-style decorative corner */
.pasi__card-corner {
    position: absolute; bottom: 0; right: 0;
    width: 50px; height: 50px;
    background: rgba(102,177,112,0.08);
    border-radius: 100px 20px 0 0;
    transition: background 0.3s;
}
.pasi__card:hover .pasi__card-corner {
    background: rgba(102,177,112,0.2);
}

.pasi__card-num {
    display: block; font-family: var(--font-display); font-weight: 700;
    font-size: 42px; color: rgba(102,177,112,0.15); margin-bottom: 16px;
    line-height: 1;
}
.pasi__card:hover .pasi__card-num { color: rgba(102,177,112,0.35); }

.pasi__card-title {
    font-size: 20px; font-weight: 600; color: #f5f5f5; margin-bottom: 10px;
}
.pasi__card p {
    font-size: 15px; color: rgba(245,245,245,0.5); margin-bottom: 16px;
}

/* Matias-style bullet dots */
.pasi__card-dots li {
    position: relative; padding-left: 18px; padding: 4px 0 4px 18px;
    font-size: 14px; color: rgba(245,245,245,0.45);
}
.pasi__card-dots li::before {
    content: ''; position: absolute; left: 0; top: 12px;
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(102,177,112,0.3);
    transition: background 0.3s;
}
.pasi__card:hover .pasi__card-dots li::before {
    background: var(--green);
}

@media (min-width: 768px) {
    .pasi__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   PRETURI (Matias Pricing cards)
   ============================================ */
.preturi__cards {
    display: grid; gap: var(--gap); max-width: 700px; margin: 0 auto;
}
.preturi__card {
    position: relative; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 40px var(--gap); text-align: center;
    background: var(--white);
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.preturi__card:hover {
    transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

/* Matias active/featured card — inverted */
.preturi__card--active {
    background: var(--green); border-color: var(--green); color: var(--white);
}
.preturi__card--active:hover {
    box-shadow: 0 16px 48px rgba(102,177,112,0.25);
}

/* Accent bar top */
.preturi__accent {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--dark); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.preturi__card--active .preturi__accent {
    background: rgba(255,255,255,0.3);
}

/* Watermark number */
.preturi__watermark {
    position: absolute; top: 12px; right: 16px;
    font-family: var(--font-display); font-weight: 800; font-size: 96px;
    line-height: 1; color: rgba(0,0,0,0.04);
    pointer-events: none; user-select: none;
}
.preturi__card--active .preturi__watermark {
    color: rgba(255,255,255,0.1);
}

.preturi__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--dark-bg); color: var(--white);
    font-size: 12px; font-weight: 600; padding: 5px 16px;
    border-radius: 100px; white-space: nowrap; letter-spacing: 0.02em;
}

.preturi__card-name {
    font-family: var(--font-display); font-weight: 600; font-size: 22px;
    margin-bottom: 12px;
}
.preturi__card--active .preturi__card-name { color: var(--white); }

.preturi__price {
    font-family: var(--font-display); font-weight: 700; font-size: 48px;
    line-height: 1; margin-bottom: 4px;
}
.preturi__price span {
    font-size: 16px; font-weight: 400; font-family: var(--font-body);
    opacity: 0.6;
}
.preturi__card--active .preturi__price { color: var(--white); }

.preturi__equiv {
    font-size: 14px; opacity: 0.5; margin-bottom: 28px;
    padding-bottom: 24px; border-bottom: 1px solid var(--gray-200);
}
.preturi__card--active .preturi__equiv { border-color: rgba(255,255,255,0.2); }

.preturi__features { text-align: left; margin-bottom: 28px; }
.preturi__features li {
    padding: 9px 0 9px 28px; position: relative; font-size: 15px;
}
.preturi__features li + li { border-top: 1px solid var(--gray-100); }
.preturi__card--active .preturi__features li + li { border-color: rgba(255,255,255,0.12); }

.preturi__features li::before {
    content: '\2713'; position: absolute; left: 0; top: 9px;
    width: 18px; height: 18px; font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    background: rgba(102,177,112,0.1); color: var(--green); border-radius: 50%;
}
.preturi__card--active .preturi__features li::before {
    background: rgba(255,255,255,0.2); color: var(--white);
}

.preturi__btn { width: 100%; }
.preturi__disclaimer {
    text-align: center; color: var(--gray-500); font-size: 14px; margin-top: 28px;
}
@media (min-width: 640px) {
    .preturi__cards { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   AVANTAJE
   ============================================ */
.avantaje__grid { display: grid; gap: var(--gap); }
.avantaje__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); padding: 32px;
    transition: border-color 0.4s, transform 0.4s var(--ease), background 0.4s;
}
.avantaje__card:hover {
    border-color: rgba(102,177,112,0.3); background: rgba(255,255,255,0.08);
    transform: translateY(-6px);
}
.avantaje__icon {
    width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
    background: rgba(102,177,112,0.12); color: var(--green-light);
    border-radius: 14px; margin-bottom: 20px;
}
.avantaje__card h3 { font-size: 18px; font-weight: 600; color: #f5f5f5; margin-bottom: 8px; }
.avantaje__card p { font-size: 15px; color: rgba(245,245,245,0.5); line-height: 1.7; }

@media (min-width: 640px) { .avantaje__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   FAQ
   ============================================ */
.faq__item {
    background: var(--white); border-radius: var(--radius-lg);
    margin-bottom: 8px; overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.faq__item[open] { box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-color: var(--green); }

.faq__q {
    padding: 20px var(--gap); font-family: var(--font-body); font-weight: 500;
    font-size: 16px; color: var(--dark); cursor: pointer;
    list-style: none; display: flex; align-items: center;
    justify-content: space-between; gap: 16px; transition: color 0.2s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
    content: '+'; font-size: 22px; font-weight: 400; color: var(--green);
    flex-shrink: 0; width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--gray-200);
    transition: all 0.3s;
}
details[open] .faq__q::after {
    content: '\2212'; background: var(--green); color: var(--white);
    border-color: var(--green); transform: rotate(180deg);
}
.faq__q:hover { color: var(--blue); }
.faq__a { padding: 0 var(--gap) 20px; color: var(--gray-500); font-size: 15px; line-height: 1.8; }

/* ============================================
   CONTACT (Matias Footer "Get In Touch" heading)
   ============================================ */
.contact__big-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(40px, 8vw, 100px); color: #f5f5f5;
    text-align: center; margin-bottom: 16px; line-height: 1;
    letter-spacing: -0.04em;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-dark);
}
.contact__subtitle {
    text-align: center; color: rgba(245,245,245,0.45);
    font-size: 16px; margin-bottom: 48px;
}
.contact__grid { display: grid; gap: 48px; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-weight: 500; font-size: 13px; margin-bottom: 6px;
    color: rgba(245,245,245,0.45); letter-spacing: 0.03em; text-transform: uppercase;
}
.form-group input,
.form-group textarea {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark);
    border-radius: var(--radius); font-family: var(--font-body);
    font-size: 16px; color: #f5f5f5; transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,245,245,0.25); }
.form-group input:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(102,177,112,0.15);
}
.form-group input.error,
.form-group textarea.error { border-color: var(--red); }
.form-group .error-msg { color: var(--red); font-size: 13px; margin-top: 6px; }
.contact__submit { width: 100%; padding: 16px; font-size: 16px; border: none; }

.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__wa-btn { width: 100%; padding: 16px; font-size: 16px; }

.contact__divider {
    text-align: center; color: rgba(245,245,245,0.35); font-size: 14px;
    position: relative;
}
.contact__divider::before, .contact__divider::after {
    content: ''; position: absolute; top: 50%; width: calc(50% - 20px);
    height: 1px; background: var(--border-dark);
}
.contact__divider::before { left: 0; }
.contact__divider::after { right: 0; }

.contact__detail {
    padding: 16px 0; border-bottom: 1px solid var(--border-dark);
}
.contact__detail-label {
    display: block; font-size: 12px; font-weight: 500;
    color: rgba(245,245,245,0.4); text-transform: uppercase;
    letter-spacing: 0.05em; margin-bottom: 4px;
}
.contact__detail a, .contact__detail span {
    font-size: 17px; font-weight: 500; color: #f5f5f5; transition: color 0.2s;
}
.contact__detail a:hover { color: var(--green); }

.contact__success { text-align: center; padding: 48px 0; }
.contact__success h3 {
    font-family: var(--font-display); font-weight: 700; font-size: 28px;
    color: var(--green); margin-bottom: 8px;
}
.contact__success p { color: rgba(245,245,245,0.5); }

@media (min-width: 768px) {
    .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0e0e0e; color: rgba(245,245,245,0.4);
    padding: 28px 0; font-size: 14px;
    border-top: 1px solid var(--border-dark);
}
.footer__inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; text-align: center;
}
.footer__brand {
    color: #f5f5f5; font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: rgba(245,245,245,0.4); font-size: 13px; transition: color 0.2s; }
.footer__links a:hover { color: var(--green); }
.footer__copy { font-size: 13px; opacity: 0.5; }

@media (min-width: 768px) {
    .footer__inner { flex-direction: row; justify-content: space-between; }
}
