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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.secondary-background {
    background-image: url("https://savrx.com/wp-content/uploads/2026/08/pathway.png");
    background-position: center;
    background-size: cover;
}

/* Logo Section */
.logo-section {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    font-weight: 700;
    color: #003366;
    font-size: 16px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h2 {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    color: #003366;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h3 {
    color: #003366;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content p {
    color: #333;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.key-points {
    list-style-type: none;
    margin-bottom: 30px;
}

.key-points li {
    color: #003366;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.hero-image > img {
    border-radius: 10%;
    width: 410px;
    height: 410px;
}

/* Stats Section */
.stats {
    background: #113157;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    padding: 1rem 0;
    gap:16px;
    align-items:stretch;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.stat-left{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.stat-left img{
    width:64px;
    height:64px;
    display:block;
}

.group-image img {
    width:80px;
    height:80px;
    display:block;
}

.stat-right{
    display:flex;
    flex-direction:column;
    gap:6px;
    min-width:0;
}

.stat-number{
    font-size:18px;
    font-weight:700;
    line-height:1.1;
    color:#fff; /* remove if you don't want forced color */
}

.stat-text{
    font-size:12px;
    line-height:1.3;
    color:rgba(255,255,255,.9); /* remove if you don't want forced color */
}

/* What is MyPath Section */
.what-is-mypath {
    /* padding: 60px 0; */
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.what-is-mypath-content h3 {
    color: #003366;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.what-is-mypath-content h4 {
    color: #003366;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.what-is-mypath-content p {
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-grid {
    display: flex;
}

.feature-box {
    text-align: center;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-box h5 {
    color: #003366;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-box p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.what-is-mypath-image {
    border-radius: 10px;
    overflow: hidden;
    border-radius: 10%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
}

/* How MyPath Works Section */
.how-works {
    background: #f9f9f9;
    padding: 60px 0;
    /* margin: 40px 0; */
}

.how-works-header {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.shield-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.how-works-header h2 {
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.participation-model {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.participation-content h3 {
    color: #003366;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.participation-content p {
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.participation-image{
    border-radius:18px;
    overflow:hidden;
    height:500px;
    position:relative;
}

.participation-image img{
    position:absolute;
    top:0;
    height:100%;
    object-fit:cover;
    border-radius: 10%;
}

.participation-image img:first-of-type{ /* left */
    left:0;
    width:60%;
    z-index:1;
}

.participation-image img:last-of-type{ /* right */
    right:0;
    width:45%;
    height: 85%;
    top: 10%;
    z-index:2;
}

.quote-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    position: absolute;
    bottom: 2%;
    left: 35%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    font-size: 13px;
    color: #333;
    z-index: 999;
    /* right: 2%; */
}

.quote-text {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.quote-author {
    font-size: 12px;
    color: #666;
}

/* MyPath at A Glance */
.at-glance {
    padding: 60px 0;
}

.at-glance-header {
    text-align: center;
    margin-bottom: 50px;
}

.at-glance-header h2 {
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.at-glance-header p {
    color: #333;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.at-glance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-feature {
    display: flex;
    gap: 15px;
}

.feature-icon-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #ff9f43, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-icon-circle.purple {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.feature-icon-circle.green {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

.feature-icon-circle.blue {
    background: linear-gradient(135deg, #0984e3, #6c5ce7);
}

.feature-icon-circle.red {
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.app-feature-text h4 {
    color: #003366;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

.app-feature-text p {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.phone-mockup {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
    border: 10px solid #333;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #333;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 5%;
}

.support-item {
    display: flex;
    align-items: flex-start;
}

.support-item::after {
content: "";
display: block;
border-top: 1px solid currentColor;
margin-top: 0.5rem;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 1rem;
}

.support-item p {
    color: #333;
    font-size: 13px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-content {
    padding: 1rem;
    border-radius: 20px;
}

.cta-content h2 {
    color: #113157;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #113157;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #ff8c2c;
}

.cta-button::after {
    content: "→";
    font-weight: bold;
}

.cta-image {
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero,
    .what-is-mypath,
    .participation-model,
    .at-glance-content,
    .cta-section {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        padding: 1rem 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .at-glance-header h2 {
        font-size: 26px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}
