:root {
    --green: #5BBD3E;
    --green-dark: #3d8a28;
    --green-light: #e8f5e3;
    --charcoal: #1a1a1a;
    --mid: #4a4a4a;
    --soft: #f7f9f5;
    --white: #ffffff;
    --accent: #2d6e1a;
    --border: #d4e8cc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
}

.nav-logo-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--charcoal);
    letter-spacing: -0.3px;
}

.nav-logo-text span {
    color: var(--green);
}

.nav-cta {
    background: var(--green);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover { background: var(--green-dark); }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 74px;
    background: var(--soft);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(91,189,62,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    border: 1px solid var(--border);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    width: fit-content;
}

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

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 22px;
}

.hero-title em {
    font-style: normal;
    color: var(--green);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: var(--mid);
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding: 16px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 460px;
}

.trust-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 2px solid var(--green);
    overflow: hidden;
}

.trust-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--mid);
}

.trust-text strong {
    color: var(--charcoal);
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.trust-text em {
    font-style: normal;
    color: var(--green);
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--green);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(91,189,62,0.35);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(91,189,62,0.45);
}

.hero-note {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-note::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

.hero-right {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-img-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #c8e6c0 0%, #e8f5e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 40px;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Decorative green cross shape matching the logo */
.hero-decoration {
    position: absolute;
    bottom: -80px; right: -80px;
    width: 300px; height: 300px;
    opacity: 0.08;
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    white-space: nowrap;
}

.stat-item {
    padding: 16px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    display: block;
}

.stat-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ─── EMILIANO & SILVANA SECTION ─── */
.trust-section {
    background: var(--charcoal);
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235bbd3e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.trust-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.trust-faces {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.faces-stack {
    position: relative;
    width: 120px;
    height: 140px;
}

.face-circle {
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 3px solid var(--green);
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: absolute;
    overflow: hidden;
}

.face-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.face-circle:first-child {
    top: 0; left: 0;
    z-index: 2;
}

.face-circle:last-child {
    bottom: 0; right: 0;
    z-index: 1;
    border-color: rgba(91,189,62,0.5);
}

.trust-faces-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    font-weight: 500;
}

.trust-content {
    padding: 0;
}

.trust-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 16px;
}

.trust-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
}

.trust-headline em {
    font-style: italic;
    color: var(--green);
}

.trust-body {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
}

.trust-quote {
    border-left: 3px solid var(--green);
    padding-left: 20px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.trust-quote cite {
    display: block;
    font-style: normal;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--green);
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ─── COME FUNZIONA ─── */
.process-section {
    padding: 100px 80px;
    background: white;
}

.section-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    text-align: center;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    text-align: center;
    font-size: 16px;
    color: var(--mid);
    max-width: 520px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 24px;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.step:hover .step-num {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: scale(1.1);
}

.step-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.6;
}

/* ─── SPECIALITÀ ─── */
.specialties-section {
    background: var(--soft);
    padding: 100px 80px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.specialty-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.specialty-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--green);
    transition: width 0.3s;
}

.specialty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(91,189,62,0.15);
    border-color: var(--green);
}

.specialty-card:hover::after { width: 100%; }

.specialty-icon {
    width: 52px; height: 52px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.specialty-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.specialty-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.6;
}

/* ─── TESTIMONIANZE ─── */
.testimonials-section {
    padding: 100px 80px;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.testimonial-stars {
    color: #f4b400;
    font-size: 15px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mid);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--green-light);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--green);
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.author-info span {
    font-size: 12px;
    color: #999;
}

/* ─── FORM SECTION ─── */
.form-section {
    background: linear-gradient(135deg, #1a3d0e 0%, var(--accent) 100%);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(91,189,62,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.form-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    color: white;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 12px;
}

.form-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    background: var(--soft);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a4a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(91,189,62,0.12);
    background: white;
}

.form-group input::placeholder { color: #bbb; }

.form-submit-row {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.btn-submit {
    width: 100%;
    background: var(--green);
    color: white;
    border: none;
    padding: 17px 32px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(91,189,62,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(91,189,62,0.5);
}

.form-note {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-note::before {
    content: '🔒';
    font-size: 11px;
}

.btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-error-msg {
    color: #ff6b6b;
    font-size: 13px;
    text-align: center;
    margin-top: 12px;
    display: none;
}

.form-error-msg.visible { display: block; }

.form-success {
    text-align: center;
    padding: 48px 20px;
    color: var(--charcoal);
}

.form-success .success-icon {
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 10px;
}

.form-success p { font-size: 15px; opacity: 0.85; line-height: 1.6; }

/* ─── FAQ ─── */
.faq-section {
    padding: 100px 80px;
    background: var(--soft);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--green); }

.faq-icon {
    width: 28px; height: 28px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mid);
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ─── FOOTER ─── */
footer {
    background: var(--charcoal);
    padding: 48px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 16px;
}

.footer-logo-text span { color: var(--green); }

.footer-note {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-align: center;
}

.footer-note a {
    color: var(--green);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav { padding: 16px 24px; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 24px 40px;
    }

    .hero-right { display: none; }

    .hero-stats {
        position: static;
        transform: none;
        margin: 32px 24px 0;
        justify-content: center;
    }

    .trust-section { padding: 60px 24px; }

    .trust-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-faces { flex-direction: row; justify-content: flex-start; }

    .process-section,
    .specialties-section,
    .testimonials-section,
    .form-section,
    .faq-section { padding: 70px 24px; }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .process-steps::before { display: none; }

    .specialties-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-card { padding: 32px 24px; }

    .form-row { grid-template-columns: 1fr; }

    footer {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .specialties-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-stats { display: none; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: fadeUp 0.5s ease both; }
.hero-title { animation: fadeUp 0.6s 0.1s ease both; }
.hero-subtitle { animation: fadeUp 0.6s 0.2s ease both; }
.hero-trust { animation: fadeUp 0.6s 0.3s ease both; }
.hero-cta-group { animation: fadeUp 0.6s 0.4s ease both; }

/* ─── COOKIE CONSENT ─── */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 720px;
    background: var(--charcoal);
    color: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    flex-wrap: wrap;
}
#cookie-banner.visible {
    opacity: 1;
    pointer-events: auto;
}
.cookie-text {
    flex: 1;
    font-size: 13.5px;
    line-height: 1.55;
    color: #ccc;
    min-width: 200px;
}
.cookie-text strong { color: #fff; }
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn-accept {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--green-dark); }
.cookie-btn-reject {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.cookie-btn-reject:hover { border-color: #aaa; color: #fff; }
@media (max-width: 600px) {
    #cookie-banner { bottom: 12px; padding: 16px 18px; gap: 14px; }
    .cookie-actions { width: 100%; }
    .cookie-btn-accept, .cookie-btn-reject { flex: 1; text-align: center; }
}