/* ============================================
   MaisQuente — Global Stylesheet
   ============================================ */

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

:root {
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-surface-alt: #1a1a1a;
    --color-border: #2a2a2a;
    --color-border-light: #333;
    --color-text: #f0f0f0;
    --color-text-muted: #999;
    --color-text-dim: #666;
    --color-accent: #e63946;
    --color-accent-hover: #ff4d5a;
    --color-accent-soft: rgba(230, 57, 70, 0.1);
    --color-success: #2ecc71;
    --color-warning: #f39c12;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-card: 0 2px 20px rgba(0,0,0,0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-accent-hover);
}

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

/* ===== HEADER ===== */
.header {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.header__logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header__logo span {
    color: var(--color-accent);
}

.header__nav {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center;
}

.header__nav a {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}

.header__nav a:hover {
    color: var(--color-text);
}

.header__nav a.active {
    color: var(--color-accent);
}

/* Mobile nav toggle */
.header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 4rem;
    max-width: 850px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero__title span {
    color: var(--color-accent);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero__notice {
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: var(--color-text-dim);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: var(--font-main);
    line-height: 1;
}

.btn--primary {
    background: var(--color-accent);
    color: #fff;
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.btn--secondary:hover {
    border-color: var(--color-text-muted);
    color: var(--color-text);
}

.btn--large {
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.section--alt {
    background: var(--color-surface);
    max-width: 100%;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section--alt .section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section__label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.section__subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== FEATURE CARDS ===== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.2s;
}

.feature-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-2px);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.feature-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat__number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ===== HOW IT WORKS / STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

/* Connector line between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -1rem;
    width: calc(100% - 56px);
    height: 2px;
    background: var(--color-border);
    transform: translateX(50%);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.testimonial__stars {
    color: var(--color-warning);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial__text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial__avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial__name {
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial__role {
    font-size: 0.78rem;
    color: var(--color-text-dim);
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--color-border-light);
}

.faq-item__question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
    border: none;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: background 0.2s;
}

.faq-item__question:hover {
    background: var(--color-surface-alt);
}

.faq-item__icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--color-text-muted);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
    color: var(--color-accent);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter__form {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.newsletter__input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s;
}

.newsletter__input:focus {
    border-color: var(--color-accent);
}

.newsletter__input::placeholder {
    color: var(--color-text-dim);
}

.newsletter__disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    margin-top: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.9rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
}

.form-message--success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--color-success);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info__label {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info__value {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline__item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 2px solid var(--color-bg);
    transform: translateX(-5px);
}

.timeline__year {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.timeline__desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s;
}

.team-card:hover {
    border-color: var(--color-border-light);
}

.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    transition: transform 0.3s;
}

.team-card:hover .team-card__avatar {
    transform: scale(1.08);
}

.team-card__avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.team-card__name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-size: 0.82rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-card__bio {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.value-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.value-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card__desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-2px);
    color: inherit;
}

.blog-card__image {
    height: 180px;
    background: var(--color-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.blog-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card__excerpt {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.78rem;
    color: var(--color-text-dim);
}

/* ===== BLOG ARTICLE ===== */
.article {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article__header {
    margin-bottom: 3rem;
}

.article__tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 1rem;
}

.article__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

.article__meta {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    display: flex;
    gap: 1.5rem;
}

.article__body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.article__body p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.85;
}

.article__body blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--color-surface);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--color-text-muted);
}

.article__body ul, .article__body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.article__body li {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

/* ===== CONTENT PAGES (termos, privacidade, sobre) ===== */
.content-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-page h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.content-page .updated {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.content-page h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-page h2.accent {
    color: var(--color-accent);
}

.content-page p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.content-page ul, .content-page ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-page li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* ===== AGE GATE ===== */
.gate {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.gate__logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.gate__logo span {
    color: var(--color-accent);
}

.gate__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.gate__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gate__text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.gate__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gate__disclaimer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.gate__disclaimer a {
    color: var(--color-text-muted);
    text-decoration: underline;
}

/* ===== 404 ===== */
.error-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.error-page__code {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: -3px;
}

.error-page__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0 0.75rem;
}

.error-page__text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 400px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 1.25rem 2rem;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-banner__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner__text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.cookie-banner__text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.2s;
}

.cookie-banner__btn--accept {
    background: var(--color-accent);
    color: #fff;
}

.cookie-banner__btn--accept:hover {
    background: var(--color-accent-hover);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.cookie-banner__btn--decline:hover {
    border-color: var(--color-text-muted);
}

/* ===== FOOTER ===== */
.footer {
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer__brand {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer__brand span {
    color: var(--color-accent);
}

.footer__desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer__col-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--color-text);
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    font-size: 0.78rem;
    color: var(--color-text-dim);
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.78rem;
    color: var(--color-text-dim);
    text-decoration: none;
}

.footer__legal a:hover {
    color: var(--color-text-muted);
}

/* ===== AVATAR GROUP (Hero) ===== */
.avatar-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.avatar-group__item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-bg);
    margin-left: -12px;
    transition: transform 0.3s;
}

.avatar-group__item:first-child {
    margin-left: 0;
}

.avatar-group__item:hover {
    transform: scale(1.15);
    z-index: 2;
}

.avatar-group__item svg {
    width: 100%;
    height: 100%;
    display: block;
}

.avatar-group__count {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 3px solid var(--color-bg);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__toggle {
        display: block;
    }

    .header__nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        padding: 1.5rem 2rem;
        gap: 1rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }

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

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

    .newsletter__form {
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero {
        padding: 3rem 1.5rem;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }
}
