/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Outfit";
    src: url("./outfit-variable.ttf") format("truetype");
}

:root {
    --navy-primary: #3d4966;
    --navy-dark: #2d3752;
    --navy-light: #4e5a7a;
    --teal-primary: #6b9b9e;
    --teal-light: #8db4b6;
    --teal-dark: #5a8a8d;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e8ecf1;
    --text-dark: #2d3752;
    --text-gray: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    border-radius: 0.4rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--navy-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-nav {
    background-color: var(--teal-primary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-nav:hover {
    background-color: var(--teal-dark) !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--teal-primary) 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(107, 155, 158, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--white);
    color: var(--navy-primary);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

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

.btn-light:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

/* ==========================================
   CHALLENGES SECTION
   ========================================== */
.challenges {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.challenge-card {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 155, 158, 0.15);
    border-color: var(--teal-primary);
}

.challenge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(107, 155, 158, 0.1) 0%, rgba(107, 155, 158, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-primary);
    transition: all 0.3s ease;
}

.challenge-card:hover .challenge-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(107, 155, 158, 0.2) 0%, rgba(107, 155, 158, 0.3) 100%);
}

.challenge-card h3 {
    font-size: 1.5rem;
    color: var(--navy-primary);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.challenge-card p {
    color: var(--text-gray);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Stats Section */
.stats-section {
    margin-top: 4rem;
}

.stats-title {
    font-size: 1.8rem;
    color: var(--navy-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.stat-card {
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.stat-primary {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    color: var(--white);
}

.stat-secondary {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 1rem;
    opacity: 0.9;
}

/* ==========================================
   MISSION & VISION SECTION
   ========================================== */
.mission-vision {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.mv-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.mv-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mv-image:hover img {
    transform: scale(1.05);
}

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

.mv-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--teal-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border-left-width: 8px;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Focus Section */
.focus-section {
    margin: 3rem 0;
}

.focus-section h3 {
    font-size: 1.8rem;
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.focus-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.focus-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.arrow {
    color: var(--teal-primary);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 8px 32px rgba(61, 73, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 155, 158, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.quote-box p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.quote-source {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================
   VALUE PROPOSITION SECTION
   ========================================== */
.value-prop {
    padding: 6rem 0;
    background-color: var(--white);
}

.value-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.value-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.value-image:hover img {
    transform: scale(1.05);
}

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

.value-card {
    background: linear-gradient(145deg, #ffffff 0%, var(--light-gray) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(107, 155, 158, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 155, 158, 0.2);
    border-color: var(--teal-primary);
}

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

.value-card h3 {
    font-size: 1.5rem;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.quote-featured {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    padding: 3rem;
}

.quote-featured p {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quote-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==========================================
   APPROACH SECTION
   ========================================== */
.approach {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.scan-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.scan-intro-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.scan-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.scan-intro-image:hover img {
    transform: scale(1.05);
}

.approach-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.approach-step {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--medium-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.approach-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 155, 158, 0.15);
    border-color: var(--teal-primary);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--teal-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(107, 155, 158, 0.3);
    transition: all 0.3s ease;
}

.approach-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 155, 158, 0.4);
}

.approach-step h3 {
    font-size: 1.3rem;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.approach-step p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.timeline-info {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.timeline-badge {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 6px 24px rgba(61, 73, 102, 0.2);
}

.timeline-badge svg {
    flex-shrink: 0;
}

.timeline-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.timeline-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ==========================================
   SUBSCRIPTIONS SECTION
   ========================================== */
.subscriptions {
    padding: 6rem 0;
    background-color: var(--white);
}

.subscriptions-image-banner {
    margin-bottom: 4rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-height: 280px;
}

.subscriptions-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.subscription-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(61, 73, 102, 0.2);
    border-color: var(--teal-primary);
}

.sub-header {
    padding: 2rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sub-primary {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
}

.sub-secondary {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
}

.sub-icon {
    font-size: 2.5rem;
}

.sub-title-group h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sub-price {
    font-size: 1.1rem;
    opacity: 0.95;
}

.sub-body {
    padding: 2rem;
}

.sub-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.sub-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.sub-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.sub-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal-primary);
    font-weight: 700;
}

.sub-result,
.sub-benefit,
.sub-optional {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.sub-result {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-icon {
    font-size: 2rem;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal-primary);
}

.sub-benefit strong,
.sub-optional strong {
    display: block;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.sub-benefit p {
    color: var(--text-gray);
}

.optional-tag {
    display: inline-block;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--navy-primary);
}

/* ==========================================
   RESULTS & KPIs SECTION
   ========================================== */
.results {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.results-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.results-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.results-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.results-image:hover img {
    transform: scale(1.05);
}

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

.result-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--medium-gray);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 155, 158, 0.15);
    border-color: var(--teal-primary);
}

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

.result-content h3 {
    font-size: 1.3rem;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.result-metric {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-primary);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 1rem;
    color: var(--navy-primary);
    margin-bottom: 0.75rem;
}

.result-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 3.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(61, 73, 102, 0.2);
}

.guarantee-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guarantee-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(107, 155, 158, 0.3);
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 155, 158, 0.4);
}

/* ==========================================
   TARGET AUDIENCE SECTION
   ========================================== */
.target-audience {
    padding: 6rem 0;
    background-color: var(--white);
}

.target-content {
    max-width: 900px;
    margin: 0 auto;
}

.target-box {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 3.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(61, 73, 102, 0.2);
}

.target-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.target-item-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.target-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.target-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Testimonial Section */
.testimonial-section {
    text-align: center;
}

.testimonial-quote {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.stat-highlight {
    background-color: var(--teal-primary);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--teal-primary) 100%);
    color: var(--white);
}

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

.cta-text-content {
    text-align: left;
}

.cta-text-content .section-title-white {
    text-align: left;
}

.cta-text-content .cta-subtitle {
    text-align: left;
}

.cta-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-benefit {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cta-benefit-icon {
    font-size: 1.5rem;
    color: var(--teal-light);
    margin-top: 0.25rem;
    max-width: 16px;
}

.cta-benefit > div {
    flex: 1;
}

.cta-benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cta-benefit p {
    opacity: 0.95;
    font-size: 0.95rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.8;
}

.subsidy-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 1.1rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 80px;
    width: auto;
    display: block;
    border-radius: 0.4rem;
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-credit {
    opacity: 0.85;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-credit a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--teal-light);
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

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

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

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

    .approach-timeline {
        grid-template-columns: 1fr;
    }

    .subscription-grid,
    .results-grid,
    .target-grid {
        grid-template-columns: 1fr;
    }

    .mv-content-wrapper,
    .value-content-wrapper,
    .scan-intro-wrapper,
    .results-content-wrapper,
    .cta-content-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-text-content .section-title-white,
    .cta-text-content .cta-subtitle {
        text-align: center;
    }

    .results-image,
    .scan-intro-image {
        position: static;
        max-height: 400px;
    }

    .results-image img,
    .scan-intro-image img {
        object-fit: cover;
    }

    .contact-info {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title,
    .section-title-white {
        font-size: 1.75rem;
    }

    .challenges-grid,
    .mv-grid,
    .value-grid,
    .subscription-grid,
    .results-grid,
    .mv-content-wrapper,
    .value-content-wrapper,
    .scan-intro-wrapper,
    .results-content-wrapper,
    .cta-content-grid {
        grid-template-columns: 1fr;
    }

    .subscriptions-image-banner {
        max-height: 200px;
    }

    .results-image,
    .scan-intro-image,
    .mv-image,
    .value-image {
        max-height: 300px;
    }

    .results-image img,
    .scan-intro-image img,
    .mv-image img,
    .value-image img {
        object-fit: cover;
    }

    .approach-timeline {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}
