/* Fonts loaded via Google Fonts in index.html */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Avenir Next', Avenir, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Headings use Poppins */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Avenir Next', Avenir, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    overflow-wrap: anywhere;
    max-width: 100%;
}

/* Layout variables */
:root {
    --nav-height: 72px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #a0c939;
}

.nav-cta .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #a0c939, #88b52f);
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 25px rgba(160, 201, 57, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(160, 201, 57, 0.35);
    background: linear-gradient(135deg, #88b52f, #6f9926);
}

.btn-primary.large {
    padding: 1.1rem 1.6rem;
    font-size: 1.1rem;
}

/* Button inner layout */
.btn-label {
    line-height: 1;
}

.btn-sublabel {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25);
}

.btn-primary:hover .btn-arrow {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: calc(100svh - var(--nav-height));
    padding: calc(var(--nav-height) + 16px) 0 56px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

/* Outcomes Journey Section */
.outcomes-section {
    background: linear-gradient(180deg, #0c3a52 0%, #0e4660 100%);
    color: #e6f0f6;
    padding: 64px 0 32px;
}

.outcomes-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.25;
    margin-bottom: 40px;
}

.outcomes-journey {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.outcomes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    position: relative;
}

.outcome-item {
    text-align: center;
    padding: 0 12px;
}

.outcome-item p {
    color: #d3e2ea;
    line-height: 1.6;
    font-size: 1rem;
}

.outcome-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 12px;
    border-radius: 16px;
    background: #f0f6fa;
    color: #0b3450;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.outcome-icon .check {
    position: absolute;
    right: -6px;
    top: -6px;
    background: #10b981;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 6px 14px rgba(16,185,129,0.45);
}

@media (max-width: 992px) {
    .outcomes-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .outcomes-section h2 {
        font-size: 1.75rem;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    grid-template-areas: "left right";
}

.hero-content { grid-area: left; }
.hero-image { grid-area: right; }

/* utility from previous attempt removed */
.mobile-only { display: none; }
.desktop-only { display: block; }

.trust-badge {
    background: linear-gradient(135deg, #a0c939, #88b52f);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(160, 201, 57, 0.2);
    max-width: 200px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.trust-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    color: #1a202c;
}

.hero-title .highlight {
    color: #a0c939;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero button: keep arrow, reduce roundness (no pill) */
.hero-cta .btn-primary {
    border-radius: 999px;
    padding: 1.1rem 2.2rem;
    justify-content: center;
    position: relative;
    padding-right: 3.2rem; /* room for arrow circle */
}

.hero-cta .btn-primary .btn-arrow {
    position: absolute;
    right: 8px;
}

.hero-people-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.people-images {
    display: flex;
    margin-right: 1rem;
}

.people-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.people-text {
    font-size: 0.9rem;
    color: #4a5568;
}

.hero-note {
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
    font-style: italic;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 80%;
    max-height: 56vh;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
/* Reviews Widget under hero image */
.trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0.75rem;
    width: 85%;
    margin-top: 1rem;
}

.trust-row .reviews-widget {
    justify-self: start;
    width: 100%;
    height: 120px;
    box-sizing: border-box;
}

.upfit-badge {
    justify-self: end;
    height: 56px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.18), 0 2px 8px rgba(16, 24, 40, 0.08);
}

.reviews-widget {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.18), 0 2px 8px rgba(16, 24, 40, 0.08);
}

/* Use prior sizing for UPFIT badge via its own default asset size; no overrides */

.reviews-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16,24,40,0.08), inset 0 0 0 1px #eef2f6;
}

.reviews-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviews-brand {
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
    line-height: 1;
}

.reviews-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-score {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.reviews-stars {
    color: #f59e0b;
    display: flex;
    gap: 2px;
    font-size: 0.95rem;
}

.reviews-text {
    font-size: 0.95rem;
    color: #2d3748;
}

.reviews-platform {
    color: #1a73e8;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.section-lede {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    font-weight: 400;
}

.disclaimer {
    display: block;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.problem-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Method Section */
.method-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.program-highlight {
    text-align: center;
    margin-bottom: 3rem;
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
    animation: pulse 2s infinite;
}

/* Compact variant for app image badge */
.program-highlight--compact {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.program-badge--compact {
    padding: 0.6rem 1rem;
    gap: 0.6rem;
    border-radius: 12px;
    animation: none;
}

.program-badge--compact .badge-icon {
    font-size: 1rem;
}

.program-badge--compact .badge-text strong {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.program-badge--compact .badge-text span {
    font-size: 0.8rem;
}

.badge-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.badge-text {
    text-align: left;
}

.badge-text strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.badge-text span {
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-card.featured {
    background: linear-gradient(135deg, #a0c939, #88b52f);
    color: white;
    transform: scale(1.05);
}

.method-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.method-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.method-card ul {
    list-style: none;
}

.method-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.method-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a0c939;
    font-weight: bold;
}

.method-card.featured li:before {
    color: white;
}

/* Nutrition Section */
.nutrition-section {
    padding: 80px 0;
    background: white;
}

.nutrition-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.nutrition-feature {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.nutrition-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-visual {
    margin-bottom: 1.5rem;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: #a0c939;
    line-height: 1;
}

.feature-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nutrition-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.nutrition-feature p {
    color: #4a5568;
    line-height: 1.6;
}

.nutrition-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Keep app image and badge stacked together */
.app-side {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.benefit-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.benefit-text strong {
    display: block;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* App Screenshot */
.app-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screenshot {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: scale(1.02);
}

/* InBody Analysis Section */
.inbody-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.inbody-timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.inbody-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #a0c939, #48bb78);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #a0c939;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    box-shadow: 0 0 0 4px white, 0 0 0 8px #a0c939;
}

.timeline-marker.success {
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 0 0 0 4px white, 0 0 0 8px #48bb78;
}

.timeline-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.timeline-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4a5568;
}

.timeline-content li:before {
    content: "📊";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.inbody-benefits {
    max-width: 900px;
    margin: 0 auto;
}

/* Coach Section */
.coach-section {
    max-width: 1100px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.coach-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.coach-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-photo {
    width: 100%;
    height: auto;
    display: block;
}

.coach-content {
    padding: 2rem;
}

.coach-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #eef7d1;
    color: #6f9926;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.coach-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.coach-text {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .coach-card {
        grid-template-columns: 1fr;
    }
    .coach-content {
        padding: 1.25rem;
    }
}

.benefit-highlight h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.comparison-item.featured {
    border-color: #48bb78;
    background: linear-gradient(135deg, #f0fff4, #ffffff);
    transform: scale(1.02);
}

.comparison-item:hover {
    transform: translateY(-5px);
}

.comparison-item.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.comparison-item li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.comparison-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a0c939;
    font-weight: bold;
}

.comparison-item.featured li:before {
    content: "✓";
    color: #48bb78;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: white;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a202c;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #a0c939;
}

.story-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
}

.story-result {
    color: #a0c939;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #1a202c;
}

.story-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #a0c939;
}

.stat-label {
    font-size: 0.8rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #a0c939, #88b52f);
    color: white;
    text-align: center;
}

/* Make CTA button white on red background */
.cta-section .btn-primary {
    background: #ffffff;
    color: #6f9926;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary .btn-arrow {
    background: #a0c939;
    box-shadow: none;
}

.cta-section .btn-primary .btn-arrow i {
    color: #ffffff;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.cta-section .btn-primary:hover .btn-arrow {
    background: #6f9926;
}

/* Alt CTA variant: angled overlay, subtle texture, tighter spacing */
.cta-section--alt {
    position: relative;
    overflow: hidden;
}

.cta-section--alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 400px at 80% -10%, rgba(255,255,255,0.15), transparent 60%),
                radial-gradient(800px 300px at 10% 120%, rgba(255,255,255,0.08), transparent 60%);
    pointer-events: none;
}

.cta-section--alt .cta-content h2 {
    letter-spacing: 0.2px;
}

.cta-section--alt .cta-highlights {
    gap: 1.25rem;
    margin: 1.5rem 0 1.75rem;
}

.cta-section--alt .cta-highlight {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.cta-section--alt .btn-primary.large {
    transform: translateZ(0);
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section .btn-primary {
    margin-top: 1rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a202c;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #a0c939;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
}

/* Application Section */
.application-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.application-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.application-info h3 {
    font-size: 1.5rem;
    color: #a0c939;
    margin-bottom: 2rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    color: #a0c939;
    font-weight: bold;
    font-size: 1.2rem;
}

.application-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.application-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a0c939;
}

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

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #718096;
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.contact-info p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item strong {
    display: block;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #4a5568;
    margin: 0;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer brand logo sizing */
.footer-brand .logo-img {
    height: 48px;
    width: auto;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Make address and opening times match link color for visual consistency */
.footer-section li {
    color: #a0aec0;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0.5rem 0;
}

.footer-bottom .disclaimer {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer {
    font-size: 0.8rem;
    font-style: italic;
}

/* Footer Trust Badges */
.footer-trust-badges {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.footer-trust-badges svg {
    max-width: 100%;
    height: auto;
    max-height: 120px;
}

@media (max-width: 768px) {
    .footer-trust-badges svg {
        max-height: 100px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Enable dropdown menu when burger is toggled */
    .nav-container {
        position: relative;
    }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 1rem 20px 1.25rem;
        border-bottom: 1px solid #e2e8f0;
        z-index: 1001;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    /* Mobile order: h1, image, subtext, cta, trust-badges */
    .hero-title { order: 1; }
    .hero-img { order: 2; }
    .hero-features--single { order: 3; }
    .hero-cta { order: 4; }
    .trust-row { order: 5; }
    
    /* Remove grid areas on mobile since we use flexbox */
    .hero-content { display: contents; }
    .hero-image { display: contents; }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .application-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .method-card.featured {
        transform: none;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        gap: 1rem;
    }

    /* Trust row under hero image stacks on mobile */
    .trust-row {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .trust-row .reviews-widget,
    .trust-row .upfit-badge {
        justify-self: center;
    }
    
    /* Center Google reviews content on mobile */
    .reviews-widget {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }

    /* Prevent mobile overflow for long headings */
    .problem-section h2 {
        font-size: 1.5rem;
        max-width: 100%;
        padding: 0 4px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        padding: 0 10px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        padding: 0 10px;
    }
    
    .success-stories h2 {
        font-size: 1.75rem;
        padding: 0 10px;
    }
    
    .faq-section h2 {
        font-size: 1.75rem;
        padding: 0 10px;
    }
    
    .outcomes-section h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .trust-badge {
        margin: 0 auto 2rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
    
    .btn-primary.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-highlights {
        gap: 1rem;
    }
    
    .cta-highlight {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .program-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .nutrition-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .program-highlight--compact {
        margin-top: 0.5rem;
    }
    
    .app-screenshot {
        max-height: 400px;
    }
    
    .benefits-content h3 {
        font-size: 1.5rem;
    }
    
    .inbody-timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .timeline-marker {
        margin: 0 0 1rem 0;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-item.featured {
        transform: none;
    }
}
