/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #1d1d1f;
    --white: #fbfbfd;
    --gray-50: #f5f5f7;
    --gray-100: #e8e8ed;
    --gray-400: #86868b;
    --gray-600: #6e6e73;
    --accent: #F5C518;
    --green: #30d158;
    --whatsapp: #25D366;
    --red: #ff453a;
    --blue: #0a84ff;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 100;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    text-decoration: none;
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
}

.nav-cta:hover { text-decoration: underline; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--blue);
}

.btn-secondary:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 680px;
    margin-bottom: 3rem;
}

.hero-eyebrow {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.3125rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 480px;
}

.phone-3d {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.phone-screen {
    width: 320px;
    background: #0b141a;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 
        0 50px 100px -20px rgba(0,0,0,0.25),
        0 30px 60px -30px rgba(0,0,0,0.3);
}

.wa-header-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #1f2c34;
    border-radius: 20px 20px 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.wa-avatar-mini {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--black);
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--whatsapp);
    border-radius: 50%;
    margin-left: auto;
}

.wa-preview {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.msg-preview {
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
    color: white;
    max-width: 90%;
}

.msg-preview.bot {
    background: #1f2c34;
    align-self: flex-start;
}

.msg-preview.user {
    background: #005c4b;
    align-self: flex-end;
}

.msg-video {
    align-self: flex-end;
    max-width: 65%;
    border-radius: 10px;
    overflow: hidden;
    background: #005c4b;
    padding: 3px;
}

.video-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    padding-left: 2px;
}

.video-duration {
    position: absolute;
    bottom: 6px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.hero-context {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
}

.context-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Statement Section */
.statement-section {
    padding: 5rem 3rem;
    text-align: center;
}

.statement-container {
    max-width: 900px;
    margin: 0 auto;
}

.statement {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.text-accent {
    background: linear-gradient(90deg, var(--accent), #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statement-sub {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 280px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: left;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    scroll-snap-align: start;
}

.testimonial-card:hover {
    border-color: var(--accent);
}

.testimonial-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff9500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--black);
}

.author-info strong {
    display: block;
    font-size: 0.8rem;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.author-handle {
    color: var(--accent) !important;
    font-weight: 500;
}

/* Day Section - Sequential Animation Carousel */
.day-section {
    padding: 5rem 3rem;
    background: var(--gray-50);
}

.day-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-label.light {
    color: var(--accent);
}

.section-headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

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

.section-sub {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
}

.section-sub.light {
    color: rgba(255,255,255,0.6);
}

/* Carousel Container */
.day-carousel {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.day-cards-track {
    position: relative;
    min-height: 580px;
    padding-top: 60px;
}

.day-card {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    min-height: 480px;
    background: var(--white);
    border-radius: 0 0 20px 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    opacity: 0;
    pointer-events: none;
    overflow: visible;
}

.day-card.active {
    opacity: 1;
    pointer-events: auto;
}

.card-time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.card-preview {
    margin-bottom: 1.25rem;
}

/* WhatsApp Chat Styling */
.whatsapp-chat {
    background: #0b141a;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    min-height: 280px;
}

.chat-msg {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(8px);
}

.chat-msg:last-child {
    margin-bottom: 0;
}

/* Animate when JS adds animate-in class */
.chat-msg.animate-in {
    animation: msgAppear 0.3s ease forwards;
    animation-delay: 0.15s;
}

.chat-msg.delayed.animate-in {
    animation-delay: 0.8s;
}

.chat-msg.delayed-2.animate-in {
    animation-delay: 1.3s;
}

.chat-msg.delayed-3.animate-in {
    animation-delay: 2.2s;
}

@keyframes msgAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg-sender {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.chat-msg.bot .msg-sender {
    color: var(--accent);
}

.chat-msg.user .msg-sender {
    color: #25D366;
}

.chat-msg.bot .msg-text {
    display: inline-block;
    background: #1f2c34;
    color: white;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    border-top-left-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.45;
    max-width: 92%;
}

.chat-msg.user {
    text-align: right;
}

.chat-msg.user .msg-text {
    display: inline-block;
    background: #005c4b;
    color: white;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    border-top-right-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.45;
}

/* Photo message */
.chat-msg.photo-msg .photo-icon {
    display: inline-block;
    font-size: 2.5rem;
    background: #005c4b;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    border-top-right-radius: 4px;
}

.chat-photo {
    display: block;
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #005c4b;
    margin-left: auto;
}

/* Voice message */
.chat-msg.voice-msg {
    text-align: right;
}

.voice-waveform {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #005c4b;
    padding: 0.65rem 1rem;
    border-radius: 20px;
    vertical-align: middle;
}

.voice-waveform span {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: waveform 0.6s ease-in-out infinite alternate;
}

.voice-waveform span:nth-child(1) { height: 6px; animation-delay: 0s; }
.voice-waveform span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.voice-waveform span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.voice-waveform span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.voice-waveform span:nth-child(5) { height: 10px; animation-delay: 0.4s; }
.voice-waveform span:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.voice-waveform span:nth-child(7) { height: 6px; animation-delay: 0.6s; }
.voice-waveform span:nth-child(8) { height: 12px; animation-delay: 0.7s; }
.voice-waveform span:nth-child(9) { height: 8px; animation-delay: 0.8s; }
.voice-waveform span:nth-child(10) { height: 5px; animation-delay: 0.9s; }

/* Only animate waveform when card is active */
.day-card:not(.active) .voice-waveform span {
    animation: none;
}

@keyframes waveform {
    to { height: 4px; }
}

.voice-duration {
    display: inline-block;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.card-outcome {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-100);
}

/* Timeline Navigation - inside cards */
.carousel-timeline-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    z-index: 15;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.time-pill {
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.time-pill:hover {
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.time-pill.active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Capabilities Section */
.capabilities-section {
    padding: 6rem 3rem;
    background: var(--black);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.caps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.cap {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.25s ease;
}

.cap:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.cap-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

.cap h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.cap p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.4;
}

/* Results Section */
.results-section {
    padding: 6rem 3rem;
}

.results-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.result-card {
    text-align: center;
    padding: 2.5rem 1rem;
    flex: 1 1 0;
    min-width: 0;
}

.result-card.primary {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.result-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.result-label {
    font-size: 0.9375rem;
    color: var(--green);
    font-weight: 500;
}

.testimonial-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    padding: 4rem 3rem;
    background: var(--gray-50);
}

.cta-chat-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cta-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black);
}

.cta-chat-info {
    text-align: left;
}

.cta-chat-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
}

.cta-chat-status {
    font-size: 0.875rem;
    color: var(--green);
    font-weight: 500;
}

.btn-hero-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 2.5rem;
    line-height: 1.3;
}

.btn-with-avatar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
}

.btn-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent), #ff9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-main {
    font-size: 1rem;
    font-weight: 500;
}

.btn-status {
    font-size: 0.7rem;
    color: var(--green);
    font-weight: 500;
}

.cta-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.mobile-break { display: none; }

/* Compact results section */
.results-compact {
    padding: 2.5rem 3rem;
}
.results-compact .results-grid {
    margin-bottom: 0;
}

.cta-container h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-container > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-row {
    display: flex;
    gap: 0.75rem;
}

.form-row input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s;
}

.form-row input:focus {
    outline: none;
    border-color: var(--accent);
}

.form-row input::placeholder {
    color: var(--gray-400);
}

.signup-form .btn {
    margin-top: 0.5rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Footer */
.footer {
    padding: 2rem 3rem;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-trust span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.footer-content > p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-content strong {
    color: var(--gray-600);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-visual { height: auto; flex-direction: column; }
    .hero-context { display: none; }
    .phone-3d { position: static; margin: 0 auto; transform: none; left: auto; top: auto; padding: 0 1.5rem; max-width: 100%; box-sizing: border-box; }
    .phone-screen { width: 100%; max-width: 320px; box-sizing: border-box; }
    .caps-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .hero { padding: 6rem 1.5rem 3rem; }
    .statement-section, .day-section, .capabilities-section, .results-section, .cta-section { padding: 4rem 1.5rem; }
    .results-grid { flex-wrap: wrap; gap: 1rem; }
    .results-grid .result-card { flex: 1 1 40%; }
    .result-value { font-size: 2rem; }
    .caps-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .cap { padding: 1rem; }
    .cap-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .cap h3 { font-size: 0.875rem; margin-bottom: 0.25rem; }
    .cap p { font-size: 0.75rem; line-height: 1.35; }
    .hero-title { font-size: 2.5rem; }
    .day-carousel { padding: 0 0.5rem; }
    .card-title { font-size: 1.15rem; }
    
    /* Mobile: fixed height cards to prevent jumping */
    .day-cards-track {
        position: relative !important;
        min-height: 720px !important;
        height: 720px !important;
        overflow: visible !important;
        padding-top: 100px !important;
    }
    .carousel-timeline-inner {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 0.75rem 1rem;
        border-radius: 16px 16px 0 0;
        z-index: 15;
    }
    .day-card {
        position: absolute !important;
        top: 95px !important;
        left: 0;
        right: 0;
        display: block !important;
        min-height: 600px !important;
        height: 600px !important;
        padding: 1.25rem;
        padding-top: 1rem;
        overflow: hidden !important;
        border-radius: 0 0 16px 16px !important;
        opacity: 0;
        pointer-events: none;
    }
    .day-card.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    .whatsapp-chat {
        max-height: 420px !important;
        overflow: hidden !important;
    }
    .chat-msg .msg-text {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    .card-outcome {
        position: absolute;
        bottom: 1.25rem;
        left: 1.25rem;
        right: 1.25rem;
        font-size: 0.9rem;
    }
    .card-preview {
        margin-bottom: 1rem;
    }
    
    /* Mobile timeline - wrap to rows */
    .carousel-timeline-inner {
        flex-wrap: wrap;
        gap: 0.4rem;
        padding: 0.75rem 1rem;
        border-radius: 16px 16px 0 0;
    }
    .time-pill {
        padding: 0.35rem 0.5rem;
        font-size: 0.65rem;
    }
    
    /* CTA section mobile */
    /* cta h2 uses clamp, no override needed */
    .cta-container > p { font-size: 0.875rem; }
    .mobile-break { display: block; }
    
    /* Statement section mobile */
    .statement { font-size: 1.75rem; }
    .statement-sub { font-size: 0.9rem; }
}
