/*
Theme Name: Summit Farol & Forja
Theme URI: https://summitfaroleforja.com.br
Author: Summit Team
Author URI: https://summitfaroleforja.com.br
Description: Tema exclusivo para o Summit Farol & Forja com Juliano Cazarré
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: summit
*/

/* ═══════════════════════════════════════════════════════
   SUMMIT CAZARRÉ — Landing Page Styles
   Design: Cinematográfico, Clean, Awwwards-quality
   ═══════════════════════════════════════════════════════ */

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

:root {
    --green: #1B3E2A;
    --green-dark: #142E1F;
    --green-light: #245636;
    --red: #CB091F;
    --red-hover: #A80719;
    --gold: #FBB900;
    --white: #FFFFFF;
    --off-white: #F8F6F2;
    --gray-100: #F0EDE8;
    --gray-200: #E0DCD6;
    --gray-500: #8A8680;
    --gray-800: #3A3A3A;
    --dark: #1A1A1A;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --header-height: 80px;
    --container-max: 1280px;
    --container-narrow: 860px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ─── UTILITIES ─── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.text-highlight {
    color: var(--gold);
    font-style: italic;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════ HEADER ═══════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.header--scrolled {
    background-color: rgba(27, 62, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    z-index: 1001;
}

.header__logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: var(--white);
}

.header__logo-accent {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__nav-list {
    display: flex;
    gap: 32px;
}

.header__nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-expo);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--white);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header__cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--red);
    padding: 10px 24px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.header__cta:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, var(--green-light) 100%);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(27, 62, 42, 0.3) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(251, 185, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px clamp(20px, 4vw, 60px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__title-highlight {
    color: var(--gold);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.hero__stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero__image {
    display: flex;
    justify-content: center;
}

.hero__image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero__image-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.hero__image-placeholder svg {
    width: 100%;
    height: auto;
}

.hero__image-border {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(251, 185, 0, 0.15);
    border-radius: 16px;
    pointer-events: none;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border-radius: 8px;
    padding: 14px 32px;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(203, 9, 31, 0.3);
}

.btn--primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(203, 9, 31, 0.4);
}

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

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

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

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

.btn--large {
    padding: 16px 40px;
    font-size: 0.95rem;
}

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

/* ═══════════════════ SECTIONS ═══════════════════ */
.section {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
}

.section--light {
    background: var(--off-white);
}

.section--dark {
    background: var(--green);
}

.section--cta {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    text-align: center;
    padding: clamp(100px, 12vw, 180px) 0;
}

.section__header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.section__eyebrow--light {
    color: var(--gold);
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.section__title--light {
    color: var(--white);
}

.section__description {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section__description--light {
    color: rgba(255, 255, 255, 0.65);
}

/* ═══════════════════ FEATURES (O MOVIMENTO) ═══════════════════ */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.feature__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 14px;
    color: var(--white);
    margin-bottom: 24px;
}

.feature__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature__text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--gray-500);
}

/* ═══════════════════ SUMMIT GRID ═══════════════════ */
.summit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.summit-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.4s var(--ease-out-expo), background 0.4s ease;
}

.summit-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.summit-card__icon {
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.summit-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.summit-card__text {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.summit-card__sub {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.summit-cta {
    text-align: center;
}

/* ═══════════════════ CAZARRÉ PROFILE ═══════════════════ */
.cazarre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.cazarre__image-wrapper {
    position: relative;
}

.cazarre__image-placeholder {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.cazarre__image-placeholder svg {
    width: 100%;
    height: auto;
}

.cazarre__image-accent {
    position: absolute;
    top: 20px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.cazarre__bio {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.cazarre__quote {
    position: relative;
    padding: 24px 0 24px 24px;
    margin: 32px 0;
    border-left: 3px solid var(--green);
}

.cazarre__quote-icon {
    color: var(--green);
    opacity: 0.2;
    margin-bottom: 12px;
}

.cazarre__quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--dark);
}

.cazarre__roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.cazarre__role {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(27, 62, 42, 0.08);
    padding: 8px 18px;
    border-radius: 100px;
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.4s var(--ease-out-expo);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card--featured {
    background: var(--white);
    border: 2px solid var(--gold);
    transform: scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.pricing-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: 24px;
}

.pricing-card__name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.pricing-card--featured .pricing-card__name {
    color: var(--dark);
}

.pricing-card__tagline {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card--featured .pricing-card__tagline {
    color: var(--gray-500);
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.pricing-card__currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card--featured .pricing-card__currency {
    color: var(--gray-500);
}

.pricing-card__amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.pricing-card--featured .pricing-card__amount {
    color: var(--dark);
}

.pricing-card__features {
    margin-bottom: 32px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-card--featured .pricing-card__features li {
    color: var(--gray-800);
    border-bottom-color: var(--gray-100);
}

.pricing-card__features li svg {
    flex-shrink: 0;
    color: var(--gold);
}

.pricing-card .btn--outline {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.pricing-card .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq__item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
    transition: color 0.3s ease;
}

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

.faq__chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out-expo);
    color: var(--gray-500);
}

.faq__item.active .faq__chevron {
    transform: rotate(180deg);
    color: var(--green);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 28px 22px;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ═══════════════════ FINAL CTA ═══════════════════ */
.final-cta {
    max-width: 650px;
    margin: 0 auto;
}

.final-cta__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.final-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.final-cta__text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    background: var(--green-dark);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

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

.footer__social-links {
    display: flex;
    gap: 14px;
}

.footer__social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    transition: background 0.3s ease, color 0.3s ease;
}

.footer__social-links a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image {
        order: -1;
    }

    .hero__image-frame {
        max-width: 300px;
    }

    .cazarre {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cazarre__image {
        order: -1;
    }

    .cazarre__image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .cazarre__quote {
        text-align: left;
    }

    .cazarre__roles {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .header__nav {
        position: fixed;
        inset: 0;
        background: rgba(20, 46, 31, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .header__nav.open {
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .header__nav-link {
        font-size: 1.2rem;
    }

    .header__cta {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 60px;
    }

    .hero__container {
        gap: 40px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero__scroll-indicator {
        display: none;
    }

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

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

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

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }

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

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .feature {
        padding: 28px 24px;
    }

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

    .faq__question {
        padding: 18px 20px;
        font-size: 0.92rem;
    }

    .faq__answer p {
        padding: 0 20px 18px;
    }
}

/* ─── PRINT ─── */
@media print {
    .header, .hero__scroll-indicator, .btn {
        display: none;
    }

    .section {
        padding: 40px 0;
    }
}
