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

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

/* NAVBAR */
.navbar {
    background-color: #ffffff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: #1a73e8;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.hamburger {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover {
    background-color: #f0f2f5;
}

.nav-quote-btn {
    background-color: #1a73e8;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.2s;
}

.nav-quote-btn:hover {
    background-color: #0d47a1;
}

/* LEFT DRAWER */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 200;
}

.drawer-overlay.open {
    display: block;
}

.drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #050f1f;
    z-index: 300;
    padding: 48px 32px;
    transition: left 0.35s ease;
    box-shadow: 8px 0 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.drawer.open {
    left: 0;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 8px;
}

.drawer-close:hover {
    color: white;
}

.drawer-logo {
    font-size: 20px;
    font-weight: 800;
    color: #1a73e8;
    margin-bottom: 48px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.drawer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
}

.drawer-nav a:hover {
    color: white;
}

.drawer-contact {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.drawer-contact p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-bottom: 6px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0a2f6b 0%, #1a73e8 100%);
    color: white;
    text-align: center;
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero h1 {
    font-size: 76px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 20px;
    line-height: 1;
}

.tagline {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto 44px auto;
    line-height: 1.7;
}

.btn {
    background-color: white;
    color: #1a73e8;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* PILLARS */
.pillars {
    background-color: #0a2f6b;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 28px 40px;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 600;
}

.pillar i {
    color: #1a73e8;
    font-size: 18px;
}

/* SECTIONS */
.section {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0a2f6b;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.section-sub {
    color: #888;
    font-size: 17px;
    margin-bottom: 48px;
}

/* GREY SECTION */
.grey {
    background-color: #e8edf2;
    padding: 80px 40px;
    text-align: center;
}

.grey h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0a2f6b;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.grey .section-sub {
    color: #888;
    font-size: 17px;
    margin-bottom: 48px;
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background-color: white;
    border-radius: 16px;
    padding: 36px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.step-number {
    background: linear-gradient(135deg, #1a73e8, #0a2f6b);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.step h3 {
    color: #0a2f6b;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}

/* ABOUT */
.about-section {
    background-color: #050f1f;
    padding: 100px 40px;
    text-align: center;
}

.about-inner {
    max-width: 720px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.about-tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.7;
}

.about-section p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 32px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.card h3 {
    color: #0a2f6b;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card p {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

/* CONTACT */
.contact-section {
    background: linear-gradient(135deg, #0a2f6b 0%, #1a73e8 100%);
    padding: 100px 60px;
    text-align: center;
    color: white;
}

.contact-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.contact-sub {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    margin-bottom: 44px;
    line-height: 1.7;
}

/* FOOTER */
.footer {
    background-color: #050f1f;
    color: white;
    text-align: center;
    padding: 32px;
}

.footer p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* PANEL OVERLAY */
.panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 200;
}

.panel-overlay.open {
    display: block;
}

/* SLIDE-OUT PANEL */
.panel {
    position: fixed;
    top: 0;
    right: -480px;
    width: 440px;
    height: 100%;
    background: white;
    z-index: 300;
    padding: 48px 40px;
    overflow-y: auto;
    transition: right 0.35s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.panel.open {
    right: 0;
}

.panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: #888;
    cursor: pointer;
    padding: 8px;
}

.panel-close:hover {
    color: #333;
}

.panel h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0a2f6b;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.panel p {
    color: #888;
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* FORM */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e4ea;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a73e8;
}

.form-group textarea {
    resize: vertical;
}

.form-btn {
    width: 100%;
    background: linear-gradient(135deg, #0a2f6b, #1a73e8);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Inter', Arial, sans-serif;
}

.form-btn:hover {
    opacity: 0.9;
}

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, #0a2f6b 0%, #1a73e8 100%);
    color: white;
    text-align: center;
    padding: 80px 40px;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
}

/* STORY SECTION */
.story-section {
    background-color: #ffffff;
    padding: 100px 40px;
}

.story-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0a2f6b;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 28px;
}

.story-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background-color: #f7f9fc;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e8edf2;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.stat-card i {
    font-size: 24px;
    color: #1a73e8;
    margin-bottom: 14px;
    display: block;
}

.stat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2f6b;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* VALUES SECTION */
.values-section {
    background-color: #f0f2f5;
    padding: 100px 40px;
}

.values-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.values-inner h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0a2f6b;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.value-item {
    background-color: white;
    border-radius: 16px;
    padding: 36px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.value-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1a73e8, #0a2f6b);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.value-icon i {
    font-size: 22px;
    color: white;
}

.value-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2f6b;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}
/* SERVICES PAGE */
.services-section {
    background-color: #ffffff;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.service-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
    padding: 60px 0;
    border-bottom: 1px solid #eef0f4;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row.reverse {
    grid-template-columns: 1fr 200px;
}

.service-row.reverse .service-row-icon {
    order: 2;
}

.service-row.reverse .service-row-content {
    order: 1;
}

.service-row-icon {
    background: linear-gradient(135deg, #0a2f6b, #1a73e8);
    border-radius: 24px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin-top: 8px;
}

.service-row-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a2f6b;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.service-row-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 600px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.feature i {
    color: #1a73e8;
    font-size: 13px;
}

.service-btn {
    background: linear-gradient(135deg, #0a2f6b, #1a73e8);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: opacity 0.2s, transform 0.2s;
}

.service-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* INCLUDED SECTION */
.included-section {
    background-color: #f0f2f5;
    padding: 100px 40px;
}

.included-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.included-inner h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0a2f6b;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.included-item {
    background-color: white;
    border-radius: 16px;
    padding: 36px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.included-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2f6b;
    margin-bottom: 10px;
    margin-top: 16px;
}

.included-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* RESPONSIVE SERVICES */
@media (max-width: 900px) {
    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-row.reverse .service-row-icon {
        order: 1;
    }
    .service-row.reverse .service-row-content {
        order: 2;
    }
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* HERO UPDATES */
.hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.hero-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px !important;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-outline {
    background-color: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.4);
    transition: border-color 0.2s, background-color 0.2s;
}

.btn-outline:hover {
    border-color: white;
    background-color: rgba(255,255,255,0.08);
}

/* STATEMENT SECTION */
.statement-section {
    background-color: #050f1f;
    padding: 100px 40px;
}

.statement-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.statement-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a73e8;
    margin-bottom: 20px;
}

.statement-left h2 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.statement-left p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.statement-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.statement-link:hover {
    gap: 12px;
}

.statement-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.statement-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.statement-point-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(26, 115, 232, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-size: 18px;
}

.statement-point h3 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.statement-point p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* SERVICES PREVIEW */
.preview-section {
    background-color: #ffffff;
    padding: 100px 40px;
}

.preview-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.preview-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0a2f6b;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.preview-all {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: gap 0.2s;
}

.preview-all:hover {
    gap: 12px;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.preview-card {
    background-color: #f7f9fc;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid #e8edf2;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    background-color: white;
}

.preview-card-icon {
    font-size: 28px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.preview-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2f6b;
    margin-bottom: 10px;
}

.preview-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(135deg, #0a2f6b 0%, #1a73e8 100%);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* RESPONSIVE HOMEPAGE */
@media (max-width: 900px) {
    .statement-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .statement-left h2 {
        font-size: 36px;
    }
    .preview-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .final-cta h2 {
        font-size: 32px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 48px;
    }
    .pillars {
        gap: 32px;
    }
    .panel {
        width: 100%;
        right: -100%;
    }
    .story-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-text h2 {
        font-size: 32px;
    }
}
/* NO PAY BANNER */
.no-pay-banner {
    background: linear-gradient(135deg, #0a2f6b, #1a73e8);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 0;
    text-align: left;
}

.no-pay-banner i {
    font-size: 40px;
    color: rgba(255,255,255,0.9);
    min-width: 40px;
}

.no-pay-banner h3 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.no-pay-banner p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}
/* PHOTO SECTION */
.story-photo-side {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.story-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.story-photo-wrap img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.story-photo-tag {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 14px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    text-align: center;
    white-space: nowrap;
}

.story-photo-tag strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #0a2f6b;
}

.story-photo-tag span {
    font-size: 13px;
    color: #888;
}

/* STATS SECTION */
.stats-section {
    background-color: #f0f2f5;
    padding: 80px 40px;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-photo-wrap {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    /* Fix white gap between navbar and hero */
    .hero {
        margin-top: 0;
    }

    /* Nav drawer full width on mobile */
    .drawer {
        width: 100%vw !important;
    }

    /* Reduce gap after page hero on services/about */
    .page-hero {
        padding: 60px 20px 50px;
    }

    /* CTA heading too big on mobile */
    .cta h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    /* No-pay banner stack vertically on mobile */
    .no-pay-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 16px;
    }

    .no-pay-banner .banner-icon {
        font-size: 2rem;
    }

    /* "Built different" heading — tighten on mobile */
    .statement h2 {
        font-size: 2rem;
    }

    /* Stat cards — reduce font so text doesn't wrap as much */
    .stat-card p {
        font-size: 0.85rem;
    }
}

.work-section {
    background-color: #050f1f;
    padding: 100px 40px;
}
 
.work-inner {
    max-width: 1060px;
    margin: 0 auto;
}
 
.work-header {
    text-align: center;
    margin-bottom: 60px;
}
 
.work-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a73e8;
    margin-bottom: 14px;
    display: block;
}
 
.work-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 16px;
}
 
.work-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}
 
/* Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
 
/* Card */
.work-card {
    background-color: #0d1f38;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
 
.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
    border-color: rgba(26,115,232,0.35);
}
 
/* Colored preview area */
.work-card-preview {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}
 
/* Ice cream: warm/playful */
.wc-icecream {
    background: linear-gradient(135deg, #3B1A0C 0%, #C65D3A 60%, #F5C842 100%);
}
 
/* Barbershop: dark/electric */
.wc-barber {
    background: linear-gradient(135deg, #0C0C0C 0%, #1C1C1C 50%, #2A2A2A 100%);
    border-bottom: 2px solid #C8FF00;
}
 
/* Landscaping: forest/earth */
.wc-landscape {
    background: linear-gradient(135deg, #0F1A10 0%, #18281A 50%, #3D5C3A 100%);
}
 
/* Sprinkle dots on ice cream card */
.wc-dots {
    display: flex;
    gap: 6px;
    position: absolute;
    top: 14px;
    right: 16px;
}
 
.wc-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}
 
.wc-dots span:nth-child(1) { background: #F26D8B; }
.wc-dots span:nth-child(2) { background: #F5C842; }
.wc-dots span:nth-child(3) { background: #3ABFA3; }
.wc-dots span:nth-child(4) { background: #9B87E8; }
.wc-dots span:nth-child(5) { background: #F0623A; }
 
/* Pill label */
.wc-label-wrap {
    position: absolute;
    top: 18px;
    left: 18px;
}
 
.wc-pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
}
 
/* Mini mockup lines */
.wc-mockup {
    position: absolute;
    bottom: 16px;
    left: 18px;
    right: 18px;
    opacity: 0.25;
}
 
.wc-bar {
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 3px;
    margin-bottom: 10px;
    width: 55%;
}
 
.wc-blocks {
    display: flex;
    gap: 8px;
}
 
.wc-block {
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
    flex: 1;
    height: 28px;
}
 
.wc-block.tall {
    height: 44px;
    flex: 1.4;
}
 
.wc-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
 
.wc-col .wc-block { height: 19px; }
 
/* Barber accent line glow */
.wc-barber .wc-mockup { opacity: 0.18; }
.wc-barber .wc-bar,
.wc-barber .wc-block { background: #C8FF00; }
 
/* Landscape accent */
.wc-landscape .wc-bar,
.wc-landscape .wc-block { background: #C4893A; }
 
/* Hover: preview brightens */
.work-card:hover .work-card-preview { filter: brightness(1.1); }
 
/* Card body */
.work-card-body {
    padding: 24px 26px 28px;
}
 
.work-card-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
 
.work-card-body p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 18px;
}
 
.work-link {
    font-size: 13px;
    font-weight: 700;
    color: #1a73e8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
 
.work-card:hover .work-link { gap: 10px; }
 
/* Responsive */
@media (max-width: 900px) {
    .work-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
    .work-header h2 { font-size: 36px; }
}