/* ================================================
   Enlance Landing Page
   Modern, Clean Design
   ================================================ */

:root {
    /* Colors */
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #10b981;
    --accent-light: #34d399;
    --accent-dark: #059669;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* ================================================
   Reset
   ================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
}

/* ================================================
   Container
   ================================================ */

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

/* ================================================
   Buttons
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

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

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ================================================
   Navigation
   ================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.logo-img {
    height: 36px;
    width: auto;
    background: white;
    border-radius: 6px;
    padding: 4px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
}

/* Logo: one word "Enlance" with gradient – Enl #002D5B, a #00B5CC, nce #8CC63F */
.logo.logo-word {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    gap: 0;
    background: linear-gradient(90deg, #002D5B 0%, #002D5B 43%, #00B5CC 43%, #00B5CC 57%, #8CC63F 57%, #8CC63F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #002D5B; /* fallback if clip not supported */
}
.footer-brand .logo.logo-word {
    background: linear-gradient(90deg, #002D5B 0%, #002D5B 43%, #00B5CC 43%, #00B5CC 57%, #8CC63F 57%, #8CC63F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .btn {
    margin-left: 0.5rem;
}

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

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: all 0.2s;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ================================================
   Hero Section
   ================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-container.hero-centered {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-centered .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-centered .hero-cta {
    justify-content: center;
}

.hero-content {
    color: var(--white);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title-accent {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Phone */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-phone {
    position: relative;
    width: 280px;
    background: var(--gray-900);
    border-radius: 36px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
}

.hero-phone-img {
    width: 100%;
    border-radius: 28px;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 0;
    }

    .hero-container.hero-centered {
        max-width: 100%;
        padding: 4rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        order: -1;
    }

    .hero-phone {
        width: 220px;
    }
}
/* ================================================
   Platform Overview Section
   ================================================ */

.platform-overview {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.platform-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.platform-feature:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.platform-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.platform-feature-icon svg {
    width: 24px;
    height: 24px;
}

.platform-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.platform-feature p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .platform-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .platform-features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ================================================
   App Showcase Section
   ================================================ */

.app-showcase {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.app-showcase-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.app-showcase-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.app-features-list svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Phone Stack */
.app-showcase-visual {
    display: flex;
    justify-content: center;
}

.phone-stack {
    position: relative;
    width: 300px;
    height: 500px;
}

.phone-stack img {
    position: absolute;
    width: 240px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.phone-back {
    top: 0;
    left: 0;
    transform: rotate(-6deg);
}

.phone-front {
    bottom: 0;
    right: 0;
    transform: rotate(3deg);
}

@media (max-width: 968px) {
    .app-showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-showcase-visual {
        order: -1;
    }

    .app-features-list {
        align-items: center;
    }
}
/* ================================================
   For Gyms Section
   ================================================ */

.for-gyms {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.split-section.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.split-section.reverse .split-visual {
    order: -1;
}

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

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

.split-content > p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-bullet {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.feature-item span {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* Browser Frame */
.browser-frame {
    background: var(--gray-800);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: var(--gray-900);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:last-child { background: #28c840; }

.browser-url {
    flex: 1;
    background: var(--gray-700);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
}

.browser-content {
    width: 100%;
    display: block;
}

@media (max-width: 968px) {
    .split-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .split-section.reverse .split-visual {
        order: 0;
    }

    .split-visual {
        order: -1;
    }

    .feature-list {
        align-items: center;
    }

    .feature-item {
        text-align: left;
    }
}

/* ================================================
   For Trainers Section
   ================================================ */

.for-trainers {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.trainer-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.trainer-photo {
    width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.trainer-phone {
    position: absolute;
    bottom: -2rem;
    right: 0;
    width: 160px;
    background: var(--gray-900);
    padding: 6px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.trainer-phone img {
    width: 100%;
    border-radius: 14px;
}

/* ================================================
   Social Proof Section
   ================================================ */

.social-proof,
.why-enlance {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.proof-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.proof-img {
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.proof-img-1 {
    grid-row: span 2;
    height: 100%;
}

.proof-img-2,
.proof-img-3 {
    height: 180px;
}

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

.proof-content > p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.proof-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.proof-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.proof-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

@media (max-width: 968px) {
    .proof-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .proof-images {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .proof-list {
        align-items: center;
    }
}
/* ================================================
   Pricing Section
   ================================================ */

.pricing {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.pricing-card:hover {
    border-color: var(--gray-300);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

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

.pricing-cta .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ================================================
   CTA Section
   ================================================ */

.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 560px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

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

/* ================================================
   Footer
   ================================================ */

.footer {
    background: var(--primary);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-img {
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    max-width: 280px;
}

.footer-links-grid {
    display: flex;
    gap: 4rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 968px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links-grid {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-links-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ================================================
   Additional Mobile Responsive Styles (max-width: 480px)
   ================================================ */

@media (max-width: 480px) {
    /* Base adjustments */
    .container {
        padding: 0 1rem;
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
    }

    /* Section headers */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    /* Platform features */
    .feature-card {
        padding: 1.25rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.875rem;
    }

    /* Split sections (For Gyms / For Trainers) */
    .split-content h2 {
        font-size: 1.5rem;
    }

    .split-content > p {
        font-size: 0.9375rem;
    }

    .feature-list li {
        font-size: 0.9375rem;
    }

    /* Browser mockup */
    .browser-frame {
        border-radius: 0.5rem;
    }

    .browser-bar {
        padding: 0.5rem 0.75rem;
    }

    .browser-dots {
        gap: 4px;
    }

    .browser-dots span {
        width: 8px;
        height: 8px;
    }

    /* Phone mockup */
    .trainer-phone {
        width: 140px;
        bottom: -20px;
        right: -10px;
    }

    /* Why Enlance / Social proof section */
    .proof-images {
        gap: 0.5rem;
    }

    .proof-img-2,
    .proof-img-3 {
        height: 120px;
    }

    .proof-content h2 {
        font-size: 1.5rem;
    }

    .proof-content > p {
        font-size: 0.9375rem;
    }

    .proof-list li {
        font-size: 0.875rem;
    }

    /* Pricing */
    .pricing-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-card h3 {
        font-size: 1.125rem;
    }

    .pricing-features li {
        font-size: 0.875rem;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-brand p {
        font-size: 0.875rem;
    }

    .footer-links h4 {
        font-size: 0.9375rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }
}

/* ================================================
   Navigation improvements for mobile
   ================================================ */

@media (max-width: 968px) {
    .nav-cta {
        display: none;
    }

    .nav-links.active .nav-cta-mobile {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-100);
    }
}

/* ================================================
   Tablet-specific adjustments (641px - 968px)
   ================================================ */

@media (min-width: 641px) and (max-width: 968px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }

    .pricing-card.featured {
        grid-column: span 2;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ================================================
   Large screen optimizations (min-width: 1200px)
   ================================================ */

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.75rem;
    }
}
