/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #3d6b1e;
    --green: #5a8c2a;
    --green-light: #7ab532;
    --green-pale: #e8f5d8;
    --green-bg: #f4faea;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-green: 0 10px 40px rgba(90, 140, 42, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Custom Cursor ===== */
body {
    cursor: none;
}

a, button, input, textarea, .btn, .program-tag, .nav__toggle {
    cursor: none;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: var(--white);
}

.cursor-follower {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(90, 140, 42, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: var(--green);
    background: rgba(90, 140, 42, 0.08);
}

.cursor-follower.click {
    width: 30px;
    height: 30px;
    border-color: var(--green-light);
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(122, 181, 50, 0.5);
}

/* ===== Cursor Glow ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 181, 50, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* ===== Grain Overlay ===== */
.grain-overlay {
    display: none;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.nav--scrolled {
    box-shadow: 0 1px 30px rgba(0,0,0,0.08);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo img {
    height: 48px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
}

.nav__links li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__links li:not(:last-child) a:hover::after {
    width: 100%;
}

.nav__links a:hover {
    color: var(--green);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white);
    border: none;
    isolation: isolate;
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary span,
.btn--primary:hover {
    position: relative;
    z-index: 1;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(90, 140, 42, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn--outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(90, 140, 42, 0.25);
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white) !important;
    border-radius: 50px;
    border: none;
}

.btn--small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(90, 140, 42, 0.3);
}

.btn--full {
    width: 100%;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(122, 181, 50, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(90, 140, 42, 0.07) 0%, transparent 60%),
        linear-gradient(180deg, var(--white) 0%, var(--green-bg) 100%);
    z-index: -2;
    will-change: transform;
}

/* Interactive physics shapes */
.hero__shapes {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    cursor: none;
    pointer-events: auto;
    transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.hero__shape:hover {
    filter: brightness(1.3);
}

.hero__shape.hit {
    filter: brightness(0.6) saturate(2);
    box-shadow: 0 0 25px rgba(90, 140, 42, 0.5);
    background-color: rgba(90, 140, 42, 0.25) !important;
    border-color: rgba(90, 140, 42, 0.4) !important;
}

.hero__shape--1 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(122, 181, 50, 0.18) 0%, rgba(122, 181, 50, 0.06) 70%);
}

.hero__shape--2 {
    width: 110px;
    height: 110px;
    border: 3px solid rgba(122, 181, 50, 0.16);
    border-radius: 28px !important;
}

.hero__shape--3 {
    width: 55px;
    height: 55px;
    background: rgba(122, 181, 50, 0.1);
    border-radius: 14px !important;
}

.hero__shape--4 {
    width: 75px;
    height: 75px;
    border: 2px dashed rgba(122, 181, 50, 0.2);
}

.hero__shape--5 {
    width: 45px;
    height: 45px;
    background: rgba(122, 181, 50, 0.08);
    border: 2px solid rgba(122, 181, 50, 0.14);
    border-radius: 12px !important;
}

.hero__shape--6 {
    width: 95px;
    height: 95px;
    border: 2px solid rgba(122, 181, 50, 0.14);
}

.hero__inner {
    width: 100%;
}

.hero__content {
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--green-pale);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 24px;
    border: 1px solid rgba(122, 181, 50, 0.2);
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 50%, var(--green) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Stats ===== */
.stats {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stats__item {
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.stats__item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stats__number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stats__plus {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.stats__label {
    margin-top: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

body.cursor-on-dark .cursor-dot {
    background: var(--white);
}

body.cursor-on-dark .cursor-follower {
    border-color: rgba(255, 255, 255, 0.6);
}

/* ===== Section Titles ===== */
.section__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.section__title--left {
    text-align: left;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

/* ===== Process / Ako to funguje ===== */
.process {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.process__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.process__line {
    position: absolute;
    top: 48px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--green-pale), var(--green), var(--green-light), var(--green-pale));
    z-index: 0;
}

.process__step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(90, 140, 42, 0.3);
    position: relative;
}

.process__number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(122, 181, 50, 0.2);
}

.process__card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    transition: var(--transition);
}

.process__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--green-pale);
}

.process__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--green);
}

.process__icon svg {
    width: 100%;
    height: 100%;
}

.process__card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.process__card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(122, 181, 50, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card__icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--green-pale), rgba(122, 181, 50, 0.15));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--green);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(90, 140, 42, 0.3);
}

.service-card__icon svg {
    width: 34px;
    height: 34px;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-card__list {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card__list li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    border: 2px solid var(--green);
}

.service-card:hover .service-card__list li::before {
    background: linear-gradient(135deg, var(--green), var(--green-light));
}

/* ===== Programs ===== */
.programs {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
}

.programs__statement {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.programs__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.programs__text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== Clients ===== */
.clients {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

/* ===== Marquee Strips ===== */
.clients__marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee__track {
    overflow: hidden;
    margin-bottom: 24px;
}

.marquee__track:last-child {
    margin-bottom: 0;
}

.marquee__inner {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-left 180s linear infinite;
}

.marquee__inner--right {
    animation: marquee-right 180s linear infinite;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (hover: hover) {
    .marquee__track:hover .marquee__inner {
        animation-play-state: paused;
    }
}

.erb-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.erb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.erb-item span {
    display: none;
}

/* Erb tooltip (appended to body via JS) */
.erb-tooltip {
    position: fixed;
    background: none;
    color: var(--gray-900);
    padding: 2px 0;
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: none;
    z-index: 99999;
    white-space: nowrap;
    opacity: 0;
}

.erb-tooltip.visible {
    opacity: 1;
}


/* ===== CTA Banner ===== */
.cta {
    padding: 80px 0;
    background: var(--gray-50);
}

.cta__inner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta__inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.cta__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

.btn--cta {
    background: var(--white);
    color: var(--green-dark);
    border: none;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn--cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 181, 50, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact__detail:hover {
    background: var(--green-bg);
}

.contact__detail svg {
    width: 24px;
    height: 24px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact__detail a,
.contact__detail span {
    display: block;
    font-size: 1rem;
    color: var(--gray-800);
    font-weight: 500;
}

.contact__detail a:hover {
    color: var(--green);
}

/* Contact form */
.contact__form {
    background: linear-gradient(145deg, var(--gray-50), var(--white));
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light), var(--green));
}

.form__group {
    margin-bottom: 16px;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(90, 140, 42, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--gray-400);
}

.form__group textarea {
    resize: vertical;
    min-height: 110px;
}

/* ===== Footer ===== */
.footer {
    padding: 48px 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light), var(--green));
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo img {
    height: 70px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer__logo img:hover {
    opacity: 1;
}

.footer__copy {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    flex: 1;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn--cookie {
    padding: 10px 24px;
    font-size: 0.85rem;
    border: none;
    border-radius: 50px;
}

.btn--cookie-outline {
    padding: 10px 24px;
    font-size: 0.85rem;
    background: transparent;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    color: var(--gray-600);
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn--cookie-outline:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay for grid items */
.services__grid .service-card:nth-child(1) { transition-delay: 0s; }
.services__grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services__grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services__grid .service-card:nth-child(4) { transition-delay: 0.3s; }

.process__step:nth-child(2) { transition-delay: 0s; }
.process__step:nth-child(3) { transition-delay: 0.15s; }
.process__step:nth-child(4) { transition-delay: 0.3s; }
.process__step:nth-child(5) { transition-delay: 0.45s; }


/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        visibility: hidden;
        transition: var(--transition);
    }

    .nav__links.active {
        transform: translateY(0);
        visibility: visible;
    }

    /* Nav */
    .nav__inner {
        height: 68px;
    }

    .nav__logo img {
        height: 40px;
    }

    .nav__links {
        top: 68px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 90px 0 40px;
    }

    .hero__shapes {
        display: none !important;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero__badge {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 18px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        text-align: center;
    }

    /* Reduce all section paddings */
    .services,
    .programs,
    .clients,
    .contact {
        padding: 60px 0;
    }

    .stats {
        padding: 40px 0;
    }

    /* Stats - horizontal rows */
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stats__item {
        padding: 16px 8px;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 10px;
    }

    .stats__number {
        font-size: 2rem;
    }

    .stats__plus {
        font-size: 1.2rem;
    }

    .stats__label {
        font-size: 0.9rem;
        margin-top: 0;
    }

    /* Section titles */
    .section__title {
        font-size: 1.6rem;
    }

    .section__subtitle {
        font-size: 0.95rem;
        margin: 0 auto 32px;
    }

    /* Process */
    .process {
        padding: 60px 0;
    }

    .process__timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process__line {
        display: none;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px;
    }

    .service-card__icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .service-card__icon svg {
        width: 26px;
        height: 26px;
    }

    .service-card__title {
        font-size: 1.1rem;
    }

    .service-card__text {
        font-size: 0.88rem;
    }

    .service-card__list {
        margin-top: 14px;
        padding-top: 14px;
        gap: 8px;
    }

    .service-card__list li {
        font-size: 0.83rem;
    }

    /* Programs */
    .programs__title {
        font-size: 1.35rem;
    }

    .programs__text {
        font-size: 0.92rem;
    }

    /* Marquee / Clients */
    .clients__marquee {
        padding-top: 28px;
    }

    .erb-item {
        width: 60px;
        height: 60px;
    }

    .marquee__inner {
        gap: 16px;
    }

    .marquee__track {
        margin-bottom: 16px;
    }

    /* CTA */
    .cta {
        padding: 60px 0;
    }

    .cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .cta__text {
        max-width: 100%;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section__title--left {
        text-align: center;
    }

    .contact__text {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .contact__detail {
        padding: 12px;
    }

    .contact__detail a,
    .contact__detail span {
        font-size: 0.88rem;
        word-break: break-all;
    }

    .contact__form {
        padding: 24px;
    }

    .form__group input,
    .form__group textarea {
        padding: 13px 14px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 32px 0;
    }

    .footer__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer__logo img {
        height: 48px;
        margin: 0 auto;
    }

    .footer__copy {
        font-size: 0.78rem;
    }

    .footer__copy-line {
        display: block;
    }

    /* Cookie Banner */
    .cookie-banner {
        padding: 16px 0;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .cookie-banner__text {
        font-size: 0.82rem;
    }

    .btn--cookie,
    .btn--cookie-outline {
        padding: 9px 20px;
        font-size: 0.82rem;
    }

    /* Cursor */
    .cursor-glow,
    .cursor-dot,
    .cursor-follower {
        display: none;
    }

    body, a, button, input, textarea, .btn, .program-tag, .nav__toggle {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero__title {
        font-size: 1.85rem;
    }

    .hero__subtitle {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .hero__actions .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .stats__grid {
        gap: 4px;
    }

    .stats__number {
        font-size: 1.5rem;
    }

    .stats__label {
        font-size: 0.7rem;
    }

    .section__title {
        font-size: 1.4rem;
    }

    .section__subtitle {
        font-size: 0.88rem;
        margin: 0 auto 24px;
    }

    .services,
    .programs,
    .clients,
    .contact {
        padding: 48px 0;
    }

    .service-card {
        padding: 20px;
    }

    .programs__title {
        font-size: 1.2rem;
    }

    .erb-item {
        width: 48px;
        height: 48px;
    }

    .marquee__inner {
        gap: 12px;
    }

    .contact__form {
        padding: 20px;
    }

    .contact__detail a,
    .contact__detail span {
        font-size: 0.82rem;
    }

    .programs__grid {
        gap: 8px;
    }

    .program-tag {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .stats__item {
        padding: 14px 4px;
    }

    .footer__logo img {
        height: 40px;
    }
}
