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

:root {
    --navy:       #1b3a6b;
    --navy-dark:  #0e2247;
    --navy-mid:   #2a5298;
    --blue:       #2d7dd2;
    --blue-light: #5ba4e6;
    --sky:        #e8f2fc;
    --sky-mid:    #d0e6f8;
    --accent:     #f0a500;
    --gray-50:    #f7f9fc;
    --gray-100:   #eef2f7;
    --gray-200:   #dde4ee;
    --gray-400:   #8896ab;
    --gray-600:   #4a5568;
    --gray-800:   #1a202c;
    --white:      #ffffff;
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-sm:  0 2px 8px rgba(27,58,107,0.07);
    --shadow-md:  0 6px 24px rgba(27,58,107,0.11);
    --shadow-lg:  0 16px 48px rgba(27,58,107,0.15);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    overflow-x: hidden;
    padding-top: 76px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 4px; }

/* ===== TYPE ===== */
h1, h2, h3 { font-family: 'DM Serif Display', serif; letter-spacing: -0.01em; }
h4, h5, label { font-family: 'DM Sans', sans-serif; font-weight: 600; }

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.08; margin-bottom: 1.1rem; color: var(--navy-dark); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--navy-dark); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--navy); }

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--sky);
    padding: 0.3rem 0.9rem;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 0.65rem;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 3px;
    background: var(--blue);
    border-radius: 3px;
}
.section-sub {
    color: var(--gray-400);
    font-size: 1rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--sky-mid);
}
.navbar .container { padding: 0.85rem 1rem; display: flex; align-items: center; }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.navbar-brand img { height: 100px; width: auto; border-radius: 14px; }
@media (max-width: 768px) {
    .navbar-brand img { height: 85px; }
}
@media (max-width: 576px) {
    .navbar-brand img { height: 75px; }
}
.brand-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    color: var(--navy-dark);
    line-height: 1;
}
.brand-text small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 1px;
}

.navbar-nav { gap: 0.25rem; }
.nav-link {
    color: var(--gray-600) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.45rem 0.9rem !important;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--navy) !important; background: var(--sky); }
.nav-link.active { color: var(--navy) !important; background: var(--sky); }
.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 0.45rem 1.1rem !important;
    border-radius: 8px;
    margin-left: 0.4rem;
}
.nav-cta:hover { background: var(--navy-mid) !important; color: var(--white) !important; }

.navbar-toggler { border: 1px solid var(--gray-200); background: transparent; padding: 0.4rem 0.6rem; border-radius: 8px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler i { color: var(--navy); font-size: 1.1rem; }

@media (max-width: 991px) {
    body { padding-top: 68px; }
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 16px;
        margin-top: 0.75rem;
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }
}

/* ===== BUTTONS ===== */
.btn-navy {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-navy {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--navy);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition);
    border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-link-navy {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 6px 0;
    border-bottom: 1.5px solid transparent;
}
.btn-link-navy:hover { color: var(--navy); border-bottom-color: var(--navy); gap: 10px; }
.btn-link-navy i { font-size: 0.75rem; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
    min-height: calc(100vh - 76px);
    background: linear-gradient(160deg, var(--gray-50) 0%, var(--white) 55%, var(--sky) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3rem;
}
.hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--sky-mid) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(45,125,210,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--sky);
    border: 1px solid var(--sky-mid);
    padding: 0.35rem 1rem;
    border-radius: 40px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1.4rem;
}
.hero-eyebrow i { color: var(--blue); }
.hero p {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.hero-stats {
    display: flex; gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.hs-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--navy);
    line-height: 1;
}
.hs-label { font-size: 0.75rem; color: var(--gray-400); margin-top: 3px; font-weight: 500; }

.hero-visual {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    min-height: 360px;
    display: flex; flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 12px);
}
.hero-logo-wrap { position: relative; z-index: 2; text-align: center; }
.hero-logo-wrap img { width: 280px; border-radius: 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.hero-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    position: relative; z-index: 2;
}
.hero-chips {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-top: 2rem;
    position: relative; z-index: 2;
}
.hero-chip {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
    border-radius: 40px;
    font-weight: 500;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: linear-gradient(145deg, var(--navy-dark), var(--navy-mid)); }

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex; flex-direction: column;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.svc-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    color: var(--sky-mid);
    line-height: 1;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.service-card:hover .svc-num { color: var(--blue-light); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.65rem; color: var(--navy-dark); }
.service-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; flex-grow: 1; }

/* ===== TAG CLOUD ===== */
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; margin-top: 2rem; }
.tag {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    color: var(--navy);
    padding: 0.45rem 1rem;
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}
.tag:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: scale(1.04);
}

/* ===== SPLIT SECTION ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.split-content h3 { font-size: 1.9rem; margin-bottom: 1rem; color: var(--navy-dark); }
.split-content p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.check-list { list-style: none; padding: 0; }
.check-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
    color: var(--gray-800);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--blue); margin-top: 3px; flex-shrink: 0; }

.pub-visual {
    background: linear-gradient(145deg, var(--navy-dark), var(--navy-mid));
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.pub-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 10px);
}
.pub-visual > * { position: relative; z-index: 2; }
.pub-visual i { font-size: 3.5rem; color: rgba(255,255,255,0.9); }
.pub-stat { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-top: 1rem; }

/* ===== STATS ===== */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.stat-box {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-mid); }
.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.6rem;
    color: var(--navy);
    line-height: 1;
}
.stat-lbl { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.4rem; font-weight: 500; }

/* ===== VALUES ===== */
.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 56px; height: 56px;
    background: var(--sky);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--navy-mid);
    font-size: 1.4rem;
    transition: var(--transition);
}
.value-card:hover .value-icon { background: var(--navy); color: var(--white); }
.value-card h4 { font-size: 1rem; color: var(--navy-dark); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.8rem; color: var(--gray-400); margin: 0; }

/* ===== PROCESS ===== */
.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.process-step {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    flex: 1; min-width: 160px; max-width: 200px;
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-mid); }
.process-step .ps-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--sky-mid);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.process-step h4 { font-size: 0.92rem; color: var(--navy-dark); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.78rem; color: var(--gray-400); margin: 0; line-height: 1.5; }
.process-arrow { color: var(--gray-200); font-size: 1.2rem; padding: 0 0.4rem; margin-top: 3.5rem; }

/* ===== CTA BANNER ===== */
.cta-card {
    background: linear-gradient(145deg, var(--navy-dark), var(--navy-mid));
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 10px);
}
.cta-card > * { position: relative; z-index: 2; }
.cta-card h2 { color: var(--white); }
.cta-card p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 1rem auto 1.75rem; font-size: 1rem; }
.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    color: var(--navy-dark);
    padding: 13px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn-white:hover { background: var(--sky); color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-white-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: var(--white); }

/* ===== CONTACT ===== */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}
.contact-item { text-align: center; padding: 1rem; }
.contact-icon { font-size: 1.8rem; color: var(--navy); margin-bottom: 0.5rem; }
.contact-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.3rem; }
.contact-val { font-weight: 600; color: var(--navy-dark); font-size: 0.92rem; text-decoration: none; display: block; }
.contact-val:hover { color: var(--blue); }

/* ===== FOOTER ===== */
footer {
    background: var(--gray-800);
    padding: 3rem 0 1.5rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand img { height: 36px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.78rem; color: #6b7280; max-width: 220px; line-height: 1.6; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #9ca3af; margin-bottom: 1rem; }
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 0.55rem; }
.footer-nav a { color: #6b7280; text-decoration: none; font-size: 0.83rem; transition: var(--transition); }
.footer-nav a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.72rem;
    color: #4b5563;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    section { padding: 3.5rem 0; }
    .split-section { grid-template-columns: 1fr; gap: 2rem; }
    .stats-strip { grid-template-columns: repeat(2,1fr); }
    .process-arrow { display: none; }
    .process-grid { gap: 1rem; }
    .process-step { max-width: 100%; }
    .hero-stats { gap: 1.5rem; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .contact-card { padding: 2rem 1.5rem; }
}