/* Professional & Conversion-Optimised Styles */
:root {
    --navy: #1a2b48;
    --blue-accent: #3498db;
    --success-green: #27ae60;
    --text-main: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-main);
    background: var(--white);
}

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

/* Nav */
header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}

.logo span { color: var(--blue-accent); }

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary { background: var(--success-green); color: white; }
.btn-primary:hover { background: #219150; transform: translateY(-2px); }

.btn-secondary { background: #25d366; color: white; margin-right: 10px; }

.btn-large { padding: 16px 32px; font-size: 1.1rem; }

.btn-outline { border: 2px solid var(--navy); color: var(--navy); }

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(to right, #ffffff, #f0f4f8);
}

h1 {
    font-size: 3rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
}

.trust-bullets {
    list-style: none;
    margin-bottom: 35px;
}

.trust-bullets li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Steps Section */
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .nav-links { display: none; } /* Simplified for mobile */
}

/* Custom CSS for that extra 'pop' */
:root {
    --navy: #0F172A;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Custom Scrollbar for modern feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}