:root {
    --bg-deep: #0a0604;
    --bg-mid: #140906;
    --bg-glow: #2a0d08;
    --ember: #ffb347;
    --ember-bright: #ffd56b;
    --flame: #ff5a1f;
    --blood: #c8102e;
    --blood-dark: #8a0a1d;
    --rose: #e8748a;
    --bone: #f3e8d4;
    --ash: #8a7a6e;
    --line: rgba(243, 232, 212, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-deep);
    color: var(--bone);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 800px 600px at 85% 50%, rgba(200, 16, 46, 0.18), transparent 60%),
                radial-gradient(ellipse 1200px 800px at 20% 100%, rgba(255, 90, 31, 0.08), transparent 70%),
                radial-gradient(ellipse 600px 400px at 50% 0%, rgba(255, 179, 71, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.embers {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ember {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--ember-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--ember), 0 0 16px var(--flame);
    opacity: 0;
    animation: float-ember linear infinite;
}

@keyframes float-ember {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.8; }
    50% { opacity: 1; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

main, header, footer {
    position: relative;
    z-index: 2;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 3rem;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
    background: rgba(10, 6, 4, 0.6);
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand-mini {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: var(--bone);
}

.brand-mini .flame-icon {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 50% 60%, var(--blood) 0%, var(--blood-dark) 70%);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 C 10 7, 6 8, 7 13 C 7.5 15.5, 9 17, 9 19 C 10 17, 10.5 16, 12 15 C 13.5 16, 14 17, 15 19 C 15 17, 16.5 15.5, 17 13 C 18 8, 14 7, 12 2 Z'/></svg>") center/contain no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 C 10 7, 6 8, 7 13 C 7.5 15.5, 9 17, 9 19 C 10 17, 10.5 16, 12 15 C 13.5 16, 14 17, 15 19 C 15 17, 16.5 15.5, 17 13 C 18 8, 14 7, 12 2 Z'/></svg>") center/contain no-repeat;
}

/* BOTÃO */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 2rem;
    background: linear-gradient(180deg, #d61a3a 0%, var(--blood) 50%, var(--blood-dark) 100%);
    color: var(--bone);
    border: none;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(255, 200, 150, 0.15) inset, 0 0 30px rgba(200, 16, 46, 0.5), 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent 50%);
    opacity: 0.4;
    pointer-events: none;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(255, 200, 150, 0.25) inset, 0 0 50px rgba(255, 90, 31, 0.6), 0 12px 30px rgba(0, 0, 0, 0.5);
}

.cta .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta:hover .arrow {
    transform: translateX(4px);
}

.cta-ghost {
    background: transparent;
    color: var(--ash);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    transition: color 0.3s, border-color 0.3s;
}

.cta-ghost:hover {
    color: var(--bone);
    border-color: var(--ember);
}

/* CTA grande (para seções de venda) */
.cta-large {
    padding: 1.3rem 3rem;
    font-size: 1rem;
    letter-spacing: 0.16em;
}

/* HERO */
.hero {
    min-height: calc(100vh - 80px);
    padding: 4rem 3rem 6rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fade-up 0.9s 0.2s forwards;
}

.eyebrow::before {
    content: '';
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ember));
}

h1.title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 12vw, 11rem);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #fff4d0 0%, var(--ember-bright) 18%, var(--ember) 38%, var(--flame) 65%, var(--blood) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(255, 90, 31, 0.3);
    opacity: 0;
    animation: fade-up 1.2s 0.4s forwards;
}

h2.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--rose);
    margin-top: 0.4rem;
    letter-spacing: -0.01em;
    line-height: 1;
    opacity: 0;
    animation: fade-up 1s 0.7s forwards;
}

.ornament {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 3rem 0 1.6rem;
    opacity: 0;
    animation: fade-up 0.8s 0.9s forwards;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: var(--line);
}

.ornament-dot {
    width: 6px;
    height: 6px;
    background: var(--ember);
    transform: rotate(45deg);
    box-shadow: 0 0 12px var(--ember);
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--bone);
    max-width: 480px;
    line-height: 1.5;
    opacity: 0;
    animation: fade-up 0.9s 1.05s forwards;
}

.info-stripe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3.5rem 0 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    animation: fade-up 0.9s 1.2s forwards;
}

.info-item .info-value {
    font-family: 'Anton', sans-serif;
    font-size: 2.4rem;
    color: var(--ember);
    line-height: 1;
    letter-spacing: 0.02em;
}

.info-item .info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ash);
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    opacity: 0;
    animation: fade-up 0.9s 1.4s forwards;
    flex-wrap: wrap;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: fade-in 1.5s 0.6s forwards;
}

.hero-logo::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.4) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero-logo svg {
    width: 260px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 90, 31, 0.4));
}

/* === ALERTA DE ESCASSEZ === */
.scarcity-bar {
    background: linear-gradient(90deg, rgba(200, 16, 46, 0.15), rgba(255, 90, 31, 0.15), rgba(200, 16, 46, 0.15));
    border-top: 1px solid rgba(255, 179, 71, 0.2);
    border-bottom: 1px solid rgba(255, 179, 71, 0.2);
    padding: 0.9rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--ember-bright);
    font-weight: 500;
}

.scarcity-bar .pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--flame);
    border-radius: 50%;
    margin-right: 0.6rem;
    vertical-align: middle;
    animation: pulse-dot 1.6s ease-in-out infinite;
    box-shadow: 0 0 12px var(--flame);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.scarcity-bar strong {
    color: var(--bone);
    font-weight: 600;
}

/* SOBRE */
.about {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 2rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--ember);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.about h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--bone);
}

.about h3 em {
    font-style: italic;
    color: var(--rose);
}

.about p {
    font-size: 1.05rem;
    color: rgba(243, 232, 212, 0.75);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.about p:last-child {
    margin-bottom: 0;
}

.about p strong {
    color: var(--ember);
    font-weight: 500;
}

/* PILARES */
.pillars {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    padding: 2.5rem 2rem;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(40, 12, 8, 0.4), rgba(20, 6, 4, 0.2));
    backdrop-filter: blur(4px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--flame), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.pillar:hover {
    border-color: rgba(255, 179, 71, 0.3);
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(60, 18, 12, 0.5), rgba(30, 9, 6, 0.3));
}

.pillar:hover::before {
    opacity: 1;
}

.pillar-num {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    -webkit-text-stroke: 1px var(--ember);
    color: transparent;
}

.pillar h4 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--ember-bright);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.pillar p {
    font-size: 0.95rem;
    color: rgba(243, 232, 212, 0.7);
    line-height: 1.7;
}

/* === SEÇÃO PARA QUEM É === */
.target {
    padding: 6rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.target h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--bone);
    margin-bottom: 3rem;
    max-width: 800px;
}

.target h3 em {
    font-style: italic;
    color: var(--rose);
}

.target-list {
    display: grid;
    gap: 1.2rem;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    border-left: 2px solid var(--blood);
    background: linear-gradient(90deg, rgba(40, 12, 8, 0.4), transparent);
    font-size: 1.05rem;
    color: rgba(243, 232, 212, 0.85);
    line-height: 1.6;
}

.target-item .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    color: var(--ember);
}

/* DETALHES */
.details {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
}

.detail-block h4 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.03em;
    color: var(--bone);
    margin-bottom: 1.2rem;
}

.detail-block p {
    font-size: 1rem;
    color: rgba(243, 232, 212, 0.75);
    line-height: 1.75;
    margin-bottom: 0.4rem;
}

.detail-block .location-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--rose);
    margin-bottom: 0.8rem;
}

/* === SEÇÃO DE OFERTA / VENDA === */
.offer {
    padding: 8rem 3rem;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 900px 700px at 50% 50%, rgba(200, 16, 46, 0.18), transparent 70%);
    pointer-events: none;
}

.offer-content {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.offer h2 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--bone);
    margin-bottom: 1.5rem;
}

.offer h2 .accent {
    background: linear-gradient(180deg, var(--ember-bright), var(--flame));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.02em;
}

.offer-intro {
    font-size: 1.1rem;
    color: rgba(243, 232, 212, 0.8);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* CAIXA DE VALOR (ANCORAGEM) */
.value-stack {
    background: linear-gradient(180deg, rgba(40, 12, 8, 0.6), rgba(20, 6, 4, 0.4));
    border: 1px solid rgba(255, 179, 71, 0.25);
    border-radius: 6px;
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
    box-shadow: 0 0 60px rgba(200, 16, 46, 0.1) inset;
}

.value-stack-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1.8rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.value-stack-title::before,
.value-stack-title::after {
    content: '';
    flex: 0 0 40px;
    height: 1px;
    background: var(--line);
}

.value-row {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed var(--line);
    gap: 1rem;
}

.value-row::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--ember);
    transform: rotate(45deg);
    box-shadow: 0 0 8px var(--ember);
}

.value-row:last-of-type {
    border-bottom: none;
}

.value-row .item {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--bone);
    line-height: 1.4;
}

.your-price {
    text-align: center;
    margin: 0 0 2rem;
}

.your-price .label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 0.6rem;
}

.your-price .price-display {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.your-price .currency {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: var(--ember-bright);
    font-weight: 500;
}

.your-price .amount {
    font-family: 'Anton', sans-serif;
    font-size: clamp(5rem, 10vw, 7.5rem);
    color: var(--ember-bright);
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 213, 107, 0.5);
    background: linear-gradient(180deg, #fff4d0 0%, var(--ember-bright) 40%, var(--flame) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.your-price .unit {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ash);
    margin-top: 0.5rem;
}

.your-price .why {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(243, 232, 212, 0.75);
    max-width: 520px;
    margin: 0.5rem auto 0;
    line-height: 1.5;
}

.offer-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.offer-cta-wrap .secure-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: var(--ash);
    letter-spacing: 0.08em;
}

.offer-cta-wrap .secure-note svg {
    width: 14px;
    height: 14px;
}

/* === FAQ === */
.faq {
    padding: 6rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-list {
    margin-top: 2.5rem;
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(20, 9, 6, 0.3);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 179, 71, 0.2);
}

.faq-item summary {
    padding: 1.3rem 1.6rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--bone);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    color: var(--ember);
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .faq-body {
    padding: 0 1.6rem 1.4rem;
    color: rgba(243, 232, 212, 0.75);
    line-height: 1.7;
    font-size: 0.97rem;
}

/* === CTA FINAL === */
.final-cta {
    padding: 7rem 3rem;
    text-align: center;
    border-top: 1px solid var(--line);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(255, 90, 31, 0.12), transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--bone);
    margin-bottom: 1.5rem;
}

.final-cta h2 em {
    color: var(--rose);
}

.final-cta p {
    font-size: 1.05rem;
    color: rgba(243, 232, 212, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* FOOTER */
footer {
    padding: 3rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--ash);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

footer a {
    color: var(--ash);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--ember);
}

/* ANIMAÇÕES */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* RESPONSIVO */
@media (max-width: 900px) {
    header { padding: 1.2rem 1.5rem; }
    .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem 4rem; gap: 2rem; }
    .hero-logo { order: -1; margin-bottom: 1rem; }
    .hero-logo svg { width: 180px; }
    .hero-logo::before { width: 260px; height: 260px; }
    .info-stripe { grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }
    .info-item { display: flex; align-items: baseline; gap: 1.2rem; }
    .info-item .info-value { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .about, .pillars, .details, .offer, .target, .faq, .final-cta { padding-left: 1.5rem; padding-right: 1.5rem; }
    .about-grid, .details-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .value-stack { padding: 2rem 1.5rem; }
    .value-row { padding: 0.9rem 0; }
    .value-row .item { font-size: 1.05rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .scarcity-bar { font-size: 0.78rem; padding: 0.8rem 1rem; line-height: 1.5; }
}

@media (max-width: 500px) {
    .cta { padding: 0.85rem 1.5rem; font-size: 0.78rem; }
    .cta-large { padding: 1.1rem 2rem; font-size: 0.9rem; }
    h1.title { font-size: 4.5rem; }
}