:root {
    --soft-bg: #f9fafb;
    --soft-surface: #ffffff;
    --soft-text: #1f2937;
    --soft-muted: #6b7280;
    --soft-primary: #4f46e5;
    --soft-secondary: #f43f5e;
    --soft-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
    --soft-radius: 30px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--soft-bg); color: var(--soft-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }

/* Navigation Container */
.soft-nav-wrap { padding: 30px 40px; }
.soft-nav {
    max-width: 1200px; margin: 0 auto; background: var(--soft-surface);
    padding: 15px 40px; border-radius: 100px; box-shadow: var(--soft-shadow);
    display: flex; justify-content: space-between; align-items: center;
}
.s-brand { font-size: 22px; font-weight: 800; color: var(--soft-primary); letter-spacing: -0.5px;}
.s-links { display: flex; gap: 30px; }
.s-links a { font-weight: 600; color: var(--soft-muted); transition: color 0.2s;}
.s-links a:hover, .s-links a.active { color: var(--soft-text); }
.btn-solid { background: var(--soft-primary); color: white; padding: 10px 24px; border-radius: 50px; font-weight: bold; box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4); transition: transform 0.2s;}
.btn-solid:hover { transform: translateY(-2px); }

/* Main Hero Card */
.soft-main { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hero-card {
    background: var(--soft-surface); border-radius: var(--soft-radius);
    box-shadow: var(--soft-shadow); padding: 80px 60px; text-align: center;
    margin-bottom: 40px; position: relative; overflow: hidden;
}
.hero-card::before {
    content: ''; position: absolute; top: -50%; left: -10%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%); border-radius: 50%;
}
.hero-card h1 { font-size: 56px; line-height: 1.2; margin-bottom: 24px; letter-spacing: -1px;}
.hero-card p { font-size: 20px; color: var(--soft-muted); max-width: 700px; margin: 0 auto 40px auto;}
.hero-actions { display: flex; justify-content: center; gap: 20px; }
.btn-outline { border: 2px solid var(--soft-primary); color: var(--soft-primary); padding: 16px 36px; border-radius: 50px; font-weight: bold; font-size: 16px; transition: all 0.2s;}
.btn-outline:hover { background: var(--soft-primary); color: white; }

/* Mini Info Cards */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px;}
.i-card {
    background: var(--soft-surface); padding: 40px; border-radius: var(--soft-radius);
    box-shadow: var(--soft-shadow); text-align: center;
}
.i-icon { font-size: 48px; margin-bottom: 20px; color: var(--soft-secondary);}
.i-card h3 { font-size: 20px; margin-bottom: 15px;}
.i-card p { font-size: 15px; color: var(--soft-muted);}

/* Stats Strip */
.stats-strip {
    display: flex; justify-content: space-around; align-items: center;
    background: var(--soft-surface); padding: 50px; border-radius: var(--soft-radius);
    box-shadow: var(--soft-shadow); margin-bottom: 60px;
}
.st-box { text-align: center; }
.st-num { font-size: 40px; font-weight: 900; color: var(--soft-primary); margin-bottom: 5px;}
.st-label { font-size: 14px; color: var(--soft-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: bold;}

/* Split Section */
.split-sec { display: flex; gap: 40px; margin-bottom: 60px; }
.split-card { background: var(--soft-surface); border-radius: var(--soft-radius); box-shadow: var(--soft-shadow); padding: 50px; flex: 1;}
.split-card h2 { font-size: 28px; margin-bottom: 30px;}

.route-item { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #f3f4f6;}
.route-item:last-child { border-bottom: none; }
.r-name { font-weight: bold; }
.r-tag { background: #e0e7ff; color: var(--soft-primary); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: bold;}

.trust-item { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px;}
.t-chk { color: #10b981; font-size: 20px;}
.trust-item p { color: var(--soft-muted); font-size: 15px;}

/* Review */
.review-card { background: var(--soft-surface); border-radius: var(--soft-radius); box-shadow: var(--soft-shadow); padding: 40px; text-align: center; margin-bottom: 60px;}
.stars { color: #f59e0b; font-size: 24px; margin-bottom: 15px;}
.rev-text { font-size: 18px; font-style: italic; color: var(--soft-text); margin-bottom: 20px;}
.rev-author { font-weight: bold; color: var(--soft-muted);}

@media (max-width: 900px) {
    .soft-nav { flex-direction: column; gap: 20px; border-radius: 20px; padding: 20px;}
    .s-links { flex-wrap: wrap; justify-content: center; }
    .hero-card h1 { font-size: 40px; }
    .hero-actions { flex-direction: column; }
    .info-cards { grid-template-columns: 1fr; }
    .stats-strip { flex-direction: column; gap: 40px; }
    .split-sec { flex-direction: column; }
}