:root {
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', sans-serif;
    --bg-color: #FFFCF8;
    --text-stone-900: #1c1917;
    --text-stone-800: #292524;
    --text-stone-700: #44403c;
    --text-stone-600: #57534e;
    --text-stone-500: #78716c;
    --text-stone-400: #a8a29e;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --rose-700: #be123c;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-stone-800);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    tracking: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--amber-700), var(--amber-600), var(--amber-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-warm-gradient {
    background: radial-gradient(circle at top right, #fffbeb 0%, #fff7ed 50%, #fffcf8 100%);
}

/* LOGO STYLES */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.pricing-logo {
    margin-bottom: 1rem;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .logo-img { height: 80px; }
    .pricing-logo { justify-content: flex-start; }
}

/* URGENCY BAR */
.urgency-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(to right, var(--red-600), var(--rose-700));
    color: white;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.urgency-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.urgency-text {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 700;
}

.zap-icon {
    width: 0.75rem;
    height: 0.75rem;
    fill: var(--amber-400);
    color: var(--amber-400);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.urgency-btn {
    background: white;
    color: var(--red-600);
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.56rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.urgency-btn:hover {
    background-color: var(--amber-100);
}

@media (min-width: 768px) {
    .urgency-bar { padding: 0.75rem 1rem; }
    .urgency-content { flex-direction: row; gap: 0.75rem; }
    .urgency-text { font-size: 1rem; text-transform: none; }
    .zap-icon { width: 1rem; height: 1rem; }
    .urgency-btn { font-size: 0.75rem; padding: 0.25rem 0.75rem; }
}

/* HERO SECTION */
.hero {
    padding: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating {
    position: absolute;
    opacity: 0.1;
    animation: floating 4s ease-in-out infinite;
}

.egg-1 { top: 2.5rem; left: 1.25rem; width: 3rem; height: 3rem; color: var(--amber-900); }
.rabbit-1 { bottom: 2.5rem; right: 1.25rem; width: 4rem; height: 4rem; color: var(--amber-600); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background-color: rgba(254, 243, 199, 0.5);
    color: var(--amber-800);
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(253, 230, 138, 0.5);
    backdrop-filter: blur(4px);
    margin-bottom: 1.5rem;
}

.hero-badge svg { width: 0.75rem; height: 0.75rem; fill: var(--amber-600); }

.headline {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--text-stone-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
}

.headline-sub {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--amber-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.headline-extra {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-stone-600);
    margin: 1rem 0 1.5rem;
}

.headline-main {
    display: block;
    font-size: 1.5rem;
    color: var(--text-stone-800);
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-stone-600);
    max-width: 32rem;
    margin: 0 auto 2rem;
    font-weight: 500;
    line-height: 1.625;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 3rem;
}

.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--amber-500), var(--amber-600), var(--amber-700));
    color: white;
    font-weight: 900;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.875rem;
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
    border-bottom: 3px solid rgba(146, 64, 14, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 320px;
}

.cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: scale(1.03) translateY(-0.25rem);
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) skewX(12deg);
    transition: transform 1s ease-in-out;
}

.cta-button:hover::after {
    transform: translateX(100%) skewX(12deg);
}

.cta-subtext {
    font-size: 0.625rem;
    color: var(--text-stone-500);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.cta-subtext svg { width: 0.625rem; height: 0.625rem; color: rgba(217, 119, 6, 0.7); }

@media (min-width: 768px) {
    .hero { padding: 6rem 0 8rem; }
    .hero-badge { font-size: 0.875rem; letter-spacing: 0.2em; padding: 0.5rem 1.5rem; }
    .headline { font-size: 4rem; line-height: 1.05; }
    .headline-sub { font-size: 1.25rem; }
    .headline-extra { font-size: 2rem; }
    .headline-main { font-size: 2.75rem; }
    .hero-desc { font-size: 1.25rem; }
    .cta-button { font-size: 1rem; max-width: 380px; padding: 1.125rem 2rem; }
    .cta-subtext { font-size: 0.75rem; }
    .floating { opacity: 0.3; }
    .egg-1 { top: 5rem; left: 2.5rem; width: 6rem; height: 6rem; }
    .rabbit-1 { bottom: 5rem; right: 2.5rem; width: 8rem; height: 8rem; }
}

/* VSL */
.vsl-container-new {
    margin-top: 3rem;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .vsl-container-new { margin-top: 6rem; }
}

/* PAIN SECTION */
.pain-section {
    background-color: var(--text-stone-900);
    color: white;
    padding: 3rem 0;
    border-radius: 2.5rem 2.5rem 0 0;
    margin-top: -1.5rem;
}

.grid-2 {
    display: grid;
    gap: 2.5rem;
}

.pain-text h2 { font-size: 1.875rem; font-weight: 900; line-height: 1.2; margin-bottom: 1.5rem; text-align: center; }
.text-amber { color: var(--amber-500); }
.pain-text p { color: var(--text-stone-400); font-size: 1rem; line-height: 1.625; text-align: center; }

.pain-list { display: grid; gap: 0.75rem; }
.pain-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
}

.pain-item:hover { background-color: rgba(255, 255, 255, 0.1); }
.icon-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle.red { background-color: rgba(239, 68, 68, 0.2); color: var(--red-500); }
.icon-circle svg { width: 1.25rem; height: 1.25rem; }
.pain-item p { color: #e7e5e4; font-size: 0.875rem; font-weight: 500; }

@media (min-width: 768px) {
    .pain-section { padding: 8rem 0; border-radius: 4rem 4rem 0 0; margin-top: -2.5rem; }
    .grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .pain-text h2 { font-size: 3.75rem; text-align: left; }
    .pain-text p { font-size: 1.25rem; text-align: left; }
    .pain-list { gap: 1rem; }
    .pain-item { padding: 1.5rem; border-radius: 1.25rem; gap: 1rem; }
    .icon-circle { width: 2.5rem; height: 2.5rem; }
    .icon-circle svg { width: 1.5rem; height: 1.5rem; }
    .pain-item p { font-size: 1rem; }
}

/* FEATURES SECTION */
.features-section { padding: 3rem 0; background-color: white; position: relative; }
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.egg-icons { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.egg-icon { width: 2rem; height: 2rem; color: var(--amber-600); }
.egg-icon.rose { color: #f43f5e; }

.features-section h2 { font-size: 2.25rem; font-weight: 900; color: var(--text-stone-900); line-height: 1.1; margin-bottom: 1.5rem; }
.features-section p { font-size: 1.125rem; color: var(--text-stone-500); font-weight: 500; }

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.bento-card {
    padding: 2rem;
    border-radius: 2.5rem;
    border: 2px solid transparent;
    transition: transform 0.5s, box-shadow 0.5s;
}

.bento-card:hover { transform: translateY(-0.5rem) scale(1.02); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1); }

.icon-box {
    width: 4rem;
    height: 4rem;
    background-color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    transition: transform 0.5s;
}

.bento-card:hover .icon-box { transform: scale(1.1); }
.icon-box svg { width: 2rem; height: 2rem; }

.bento-card h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }
.bento-card p { color: var(--text-stone-600); font-weight: 500; line-height: 1.625; }

.bento-card.blue { background-color: #eff6ff; color: #2563eb; border-color: #dbeafe; }
.bento-card.amber { background-color: #fffbeb; color: #d97706; border-color: #fef3c7; }
.bento-card.emerald { background-color: #ecfdf5; color: #059669; border-color: #d1fae5; }
.bento-card.rose { background-color: #fff1f2; color: #e11d48; border-color: #ffe4e6; }
.bento-card.purple { background-color: #faf5ff; color: #9333ea; border-color: #f3e8ff; }
.bento-card.orange { background-color: #fff7ed; color: #ea580c; border-color: #ffedd5; }

@media (min-width: 768px) {
    .features-section { padding: 8rem 0; }
    .features-section h2 { font-size: 4.5rem; }
    .features-section p { font-size: 1.5rem; }
    .bento-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

/* PRICING SECTION NEW */
.pricing-section {
    padding: 4rem 0;
    background-color: #fffcf8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--amber-100);
    color: var(--amber-800);
    font-weight: 900;
    font-size: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--text-stone-900);
}

.stack-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stack-item-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 1.25rem;
    border: 1px solid #f5f5f4;
    transition: transform 0.3s;
}

.stack-item-new:hover {
    transform: translateX(0.5rem);
    border-color: var(--amber-200);
}

.stack-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stack-icon.blue { background-color: #eff6ff; color: #2563eb; }
.stack-icon.amber { background-color: #fffbeb; color: #d97706; }
.stack-icon.emerald { background-color: #ecfdf5; color: #059669; }
.stack-icon.rose { background-color: #fff1f2; color: #e11d48; }

.stack-icon svg { width: 1.5rem; height: 1.5rem; }

.stack-details h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-stone-900);
    margin-bottom: 0.25rem;
}

.stack-details p {
    font-size: 0.875rem;
    color: var(--text-stone-500);
}

.stack-value {
    margin-left: auto;
    font-weight: 900;
    color: var(--text-stone-400);
    font-size: 0.875rem;
}

.stack-item-new.bonus {
    background-color: #fffcf0;
    border: 2px dashed var(--amber-400);
}

.stack-item-new.bonus .stack-value {
    color: var(--amber-600);
}

.total-value-box {
    padding: 1rem;
    border-top: 1px solid #f5f5f4;
    color: var(--text-stone-500);
    font-size: 1.125rem;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--red-500);
}

/* PRICING CARD NEW */
.pricing-card-wrapper {
    position: relative;
    perspective: 1000px;
}

.pricing-card-new {
    position: relative;
    background-color: var(--text-stone-900);
    color: white;
    padding: 2.5rem 1.5rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--amber-500), var(--amber-700), var(--red-500));
    border-radius: 2.6rem;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.card-header-new p {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--amber-500);
    margin-bottom: 0.5rem;
}

.card-header-new h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.card-price-new {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-stone-400);
    margin-bottom: 0.5rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-row .currency { font-size: 1.5rem; font-weight: 700; color: var(--amber-500); }
.price-row .amount { font-size: 5rem; font-weight: 900; line-height: 1; }
.price-row .cents { font-size: 1.5rem; font-weight: 700; color: var(--text-stone-400); }

.price-sub {
    font-size: 1rem;
    font-weight: 700;
    color: var(--amber-500);
    margin-top: 0.5rem;
}

.card-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.feat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e7e5e4;
}

.feat svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--amber-500);
}

.cta-button-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(to right, var(--amber-500), var(--amber-600));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
    border-bottom: 4px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-new svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.cta-button-new:hover {
    transform: translateY(-0.25rem) scale(1.02);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.4);
}

.secure-footer {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-stone-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.secure-footer svg { width: 0.875rem; height: 0.875rem; }

/* GUARANTEE SECTION NEW */
.guarantee-section-new {
    padding: 6rem 0;
    background-color: white;
}

.guarantee-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-seal {
    position: relative;
    width: 14rem;
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seal-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--amber-50);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--amber-200);
    z-index: 2;
}

.seal-inner svg {
    width: 4rem;
    height: 4rem;
    color: var(--amber-600);
    margin-bottom: 0.5rem;
}

.seal-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.seal-text .number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-stone-900);
}

.seal-text .unit {
    font-size: 0.875rem;
    font-weight: 900;
    color: var(--amber-700);
    letter-spacing: 0.1em;
}

.seal-ring {
    position: absolute;
    inset: -1rem;
    border: 1px dashed var(--amber-300);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.guarantee-content {
    text-align: center;
}

.guarantee-badge-new {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: var(--red-500);
    color: white;
    font-weight: 900;
    font-size: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-stone-900);
}

.guarantee-content p {
    font-size: 1.125rem;
    color: var(--text-stone-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.guarantee-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sig-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--amber-400), transparent);
}

.guarantee-signature p {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: var(--amber-800);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .pricing-section { padding: 8rem 0; }
    .pricing-grid { grid-template-columns: 1.2fr 0.8fr; gap: 5rem; }
    .pricing-title { font-size: 4rem; }
    .guarantee-section-new { padding: 10rem 0; }
    .guarantee-box { flex-direction: row; gap: 6rem; text-align: left; }
    .guarantee-content { text-align: left; }
    .guarantee-signature { align-items: flex-start; }
    .sig-line { margin-left: 0; }
}

/* SOCIAL PROOF */
.social-proof { padding: 3rem 0; }
.section-title { font-size: 1.875rem; font-weight: 900; color: var(--text-stone-900); text-align: center; margin-bottom: 3rem; }
.testimonials-grid { display: grid; gap: 1.5rem; }
.testimonial-card {
    padding: 1.5rem;
    background-color: white;
    border-radius: 1.5rem;
    border: 1px solid #f5f5f4;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.2s;
}

.testimonial-card:hover { transform: scale(1.01); }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars svg { width: 1rem; height: 1rem; color: var(--amber-400); }
.testimonial-text { font-size: 1rem; color: var(--text-stone-700); font-style: italic; line-height: 1.625; margin-bottom: 1.5rem; }
.user-info { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, var(--amber-500), var(--amber-600));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.user-name { font-weight: 900; color: var(--text-stone-900); font-size: 1rem; }
.user-city { color: var(--amber-600); font-weight: 700; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.05em; }

@media (min-width: 768px) {
    .social-proof { padding: 8rem 0; }
    .section-title { font-size: 3.75rem; margin-bottom: 5rem; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .testimonial-card { padding: 2.5rem; border-radius: 3rem; }
    .stars svg { width: 1.25rem; height: 1.25rem; }
    .testimonial-text { font-size: 1.25rem; }
    .avatar { width: 3.5rem; height: 3.5rem; border-radius: 1rem; font-size: 1.5rem; }
    .user-name { font-size: 1.125rem; }
    .user-city { font-size: 0.875rem; }
}

/* FAQ */
.faq-section { padding: 3rem 0; }
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item {
    margin-bottom: 0.75rem;
    border-radius: 0.75rem;
    background-color: white;
    border: 1px solid #f5f5f4;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active { background-color: rgba(255, 251, 235, 0.5); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.faq-trigger {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-trigger span { font-weight: 700; font-size: 1rem; color: var(--text-stone-800); transition: color 0.3s; }
.faq-item.active .faq-trigger span { color: var(--amber-700); }

.chevron {
    width: 1rem;
    height: 1rem;
    color: var(--text-stone-400);
    transition: transform 0.3s, color 0.3s;
}

.faq-item.active .chevron { transform: rotate(180deg); color: var(--amber-600); }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-content { max-height: 200px; }
.faq-content p { padding: 0 1rem 1rem; color: var(--text-stone-600); font-size: 0.875rem; line-height: 1.625; }

@media (min-width: 768px) {
    .faq-section { padding: 8rem 0; }
    .faq-item { margin-bottom: 1rem; border-radius: 1.25rem; }
    .faq-trigger { padding: 1.5rem; }
    .faq-trigger span { font-size: 1.25rem; }
    .chevron { width: 1.25rem; height: 1.25rem; }
    .faq-content p { padding: 0 1.5rem 1.5rem; font-size: 1.125rem; }
}

/* FINAL CTA */
.final-cta { padding: 5rem 0; text-align: center; }
.final-icons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.final-icons svg { width: 3rem; height: 3rem; color: var(--amber-600); }

.final-headline { font-size: 2.25rem; font-weight: 900; color: var(--text-stone-900); line-height: 1.1; margin-bottom: 2rem; letter-spacing: -0.02em; }
.final-desc { font-size: 1rem; color: var(--text-stone-600); font-weight: 500; max-width: 40rem; margin: 0 auto 2rem; }

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0.5;
    filter: grayscale(1);
    font-size: 0.625rem;
}

.badge { display: flex; align-items: center; gap: 0.375rem; font-weight: 700; }
.badge svg { width: 1rem; height: 1rem; }

@media (min-width: 768px) {
    .final-cta { padding: 10rem 0; }
    .final-headline { font-size: 5rem; line-height: 0.9; }
    .final-desc { font-size: 1.5rem; }
    .trust-badges { gap: 2rem; margin-top: 3rem; font-size: 0.875rem; }
    .badge svg { width: 1.25rem; height: 1.25rem; }
}

/* FOOTER */
.site-footer { background-color: var(--text-stone-900); color: var(--text-stone-500); padding: 3rem 0; text-align: center; font-size: 0.75rem; }
.footer-icons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.footer-icons svg { width: 1.25rem; height: 1.25rem; color: rgba(245, 158, 11, 0.2); }
.copyright { font-weight: 700; color: var(--text-stone-400); margin-bottom: 1rem; }
.disclaimer { max-width: 40rem; margin: 0 auto; line-height: 1.625; }

@media (min-width: 768px) {
    .site-footer { padding: 5rem 0; font-size: 0.875rem; }
    .footer-icons { gap: 1.5rem; margin-bottom: 2rem; }
    .footer-icons svg { width: 1.5rem; height: 1.5rem; }
}

/* ANIMATIONS */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: block; } }
