* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #050A30;
    /* Deep dark blue */
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, #0033cc, #000066);
    opacity: 0.6;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 60%;
    height: 40%;
    transform: skewY(-10deg);
    border-bottom-right-radius: 50px;
}

.shape-2 {
    top: 20%;
    right: -20%;
    width: 70%;
    height: 50%;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #0044ff, #001144);
    opacity: 0.4;
}

.shape-3 {
    bottom: -10%;
    left: -10%;
    width: 120%;
    height: 40%;
    background: #002288;
    transform: skewY(5deg);
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    margin-top: 30px;
    margin-bottom: 20px;
}

.header-content {
    background: linear-gradient(135deg, #4488ff, #2244aa);
    padding: 30px 20px;
    border-radius: 30px 0 30px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.header h1 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.sub-text {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #0055ff;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 85, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    width: 100%;
}

.top-btn {
    background: linear-gradient(90deg, #0044cc, #0066ff);
}

.bottom-btn {
    background: linear-gradient(90deg, #0055ff, #0033aa);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    background: white;
    color: #0055ff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 14px;
}

/* Chart Placeholder CSS */
.chart-container {
    border: 2px dashed #4466aa;
    border-radius: 20px;
    padding: 20px 10px;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.bar-row {
    display: flex;
    align-items: center;
    font-size: 10px;
}

.label {
    width: 80px;
    text-align: right;
    margin-right: 10px;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bar {
    height: 12px;
    border-radius: 6px;
}

.val {
    margin-left: 5px;
    font-size: 9px;
    color: #fff;
}

.orange {
    background: #ff9900;
}

.cyan {
    background: #00ccff;
}

.blue {
    background: #0066ff;
}

.purple {
    background: #9933ff;
}

.yellow {
    background: #ffcc00;
}

.light-blue {
    background: #6699ff;
}

.orange-red {
    background: #ff6600;
}

.chart-axis {
    display: flex;
    justify-content: space-between;
    padding-left: 90px;
    /* Offset for labels */
    font-size: 9px;
    color: #666;
    border-top: 1px solid #444;
    padding-top: 5px;
}

/* White Card */
.white-card {
    background: white;
    color: #333;
    border-radius: 30px;
    padding: 30px 20px;
    margin-bottom: 40px;
    position: relative;
}

.white-card::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: white;
    border-radius: 20px 20px 0 0;
    opacity: 0.5;
    z-index: -1;
}

.white-card h2 {
    font-size: 22px;
    font-weight: 800;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-desc {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.get-title {
    font-size: 20px;
    color: #003399;
    margin-bottom: 20px;
    font-weight: 800;
}

.checklist {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    display: inline-block;
}

.checklist li {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding-left: 30px;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    background: #7cb342;
    /* Green */
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.card-footer-text {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    color: #000;
}

/* Footer */
.footer {
    padding-bottom: 20px;
    font-size: 10px;
    color: #aaa;
    line-height: 1.4;
}

.disclaimer {
    opacity: 0.7;
}