/* Base Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f4f9fd;
    color: #1e293b;
    line-height: 1.6;
}

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

/* Modern Dark Gradient Text Utility */
h1, h2, h3, .step-num {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    padding: 120px 0 70px;
    text-align: center;
    position: relative;
}

/* Bright glowing background blend */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 178, 255, 0.15) 0%, rgba(244, 249, 253, 0) 70%);
    z-index: -1;
}

.badge {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.06) 0%, rgba(0, 240, 255, 0.06) 100%);
    color: #0072ff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 114, 255, 0.15);
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    color: #475569;
    max-width: 650px;
    margin: 0 auto 45px;
    font-size: 19px;
}

/* Dark Contrast Buttons */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(15, 23, 42, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
    border-color: #0072ff;
    background-color: #f8fafc;
    transform: translateY(-3px);
}

/* Light Ice-Blue Services Cards Grid */
.services {
    padding: 70px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.card {
    background: linear-gradient(145deg, #ffffff 0%, #e0f2fe 100%);
    border: 1px solid rgba(0, 114, 255, 0.08);
    border-radius: 16px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 114, 255, 0.03);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 114, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.1);
}

.card .icon {
    font-size: 44px;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 22px;
    -webkit-text-fill-color: initial;
    background: none;
    color: #0f172a;
}

.card ul {
    list-style: none;
    color: #475569;
    margin-bottom: 35px;
}

.card ul li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
    font-size: 15.5px;
}

.card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0072ff;
    font-weight: bold;
}

.card .price {
    font-size: 14px;
    color: #64748b;
    border-top: 1px solid rgba(0, 114, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card .price span {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Process Section */
.process {
    padding: 90px 0;
    text-align: center;
    background-color: #eef6fc;
}

.process h2 {
    font-size: 36px;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 260px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 114, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.step-num {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #0072ff;
    -webkit-text-fill-color: #0072ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 24px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
}

.step p {
    color: #475569;
    font-size: 15px;
}

/* Footer Conversion Block */
.footer-cta {
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 114, 255, 0.1);
}

.footer-cta h2 {
    font-size: 42px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.footer-cta p {
    color: #475569;
    max-width: 650px;
    margin: 0 auto 45px;
    font-size: 18px;
}

.contact-info {
    font-size: 14px;
    color: #64748b;
    border-top: 1px solid rgba(0, 114, 255, 0.1);
    padding-top: 40px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 38px; }
    .footer-cta h2 { font-size: 32px; }
    .steps { flex-direction: column; gap: 25px; }
    .cta-group { flex-direction: column; gap: 12px; }
}
