/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0d1b3e;
    --navy-mid: #1a3a6b;
    --navy-light: #1e4d8c;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-glow: rgba(37, 99, 235, 0.25);
    --gold: #f59e0b;
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #e2e8f0;
    --gray: #64748b;
    --dark-gray: #334155;
    --dark: #0f172a;
    --text: #1e293b;

    --gradient-navy: linear-gradient(160deg, #0d1b3e 0%, #1a3a6b 60%, #1e4d8c 100%);
    --gradient-accent: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);

    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-navy: 0 8px 32px rgba(13,27,62,0.25);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img { max-width: 100%; height: auto; display: block; }

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 27, 62, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-navy);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.logo-text .llc {
    font-size: 0.6rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    margin-left: 3px;
    vertical-align: super;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-menu a.active {
    background: var(--accent);
    color: var(--white);
}

.nav-cta {
    background: var(--white) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
}

.nav-cta:hover {
    background: var(--off-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   HERO
   =================================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-bg-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.2);
    top: -100px;
    right: -100px;
}

.hero-bg-orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(245, 158, 11, 0.1);
    bottom: 0;
    left: -80px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #93c5fd;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .line-accent {
    color: #93c5fd;
    display: block;
}

.hero-title .line-gold {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-proof-item {
    text-align: center;
}

.hero-proof-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
}

.hero-proof-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    display: block;
}

.hero-proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero-visual {
    position: relative;
}

.hero-card-stack {
    position: relative;
    height: 420px;
}

.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-slow);
}

.hero-card-main {
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.hero-card-float-1 {
    width: 200px;
    bottom: 60px;
    left: -20px;
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
    animation: float-card 4s ease-in-out infinite;
}

.hero-card-float-2 {
    width: 180px;
    bottom: 20px;
    right: -10px;
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.25);
    animation: float-card 4s ease-in-out infinite 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.hero-card-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}

.hero-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-card-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.hero-card-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.badge-green {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-gold {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-card-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.hero-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-green { background: #10b981; }
.dot-blue  { background: #3b82f6; }
.dot-gold  { background: #f59e0b; }

.hero-card-row-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-navy);
}

.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(13,27,62,0.35);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-full { width: 100%; justify-content: center; }

.btn-arrow::after {
    content: '→';
    transition: var(--transition);
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
    background: var(--navy);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number span {
    color: var(--gold);
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===================================
   SECTION UTILITIES
   =================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.8;
}

/* ===================================
   FEATURES / WHY US
   =================================== */
.features {
    padding: 100px 0;
    background: var(--gradient-subtle);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.features-left {
    position: sticky;
    top: 100px;
}

.features-left .section-desc {
    margin-bottom: 2rem;
}

.founder-note {
    background: var(--white);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.founder-quote {
    font-size: 1rem;
    color: var(--dark-gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.founder-cite {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    font-style: normal;
}

.features-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--transition);
    cursor: default;
}

.feature-item:hover {
    border-color: var(--accent-light);
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateX(4px);
}

.feature-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.3rem;
}

.feature-item-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.feature-item-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   SERVICES SECTION (HOME)
   =================================== */
.services-home {
    padding: 100px 0;
    background: var(--white);
}

.services-home-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
}

.services-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::after { transform: scaleX(1); }

.service-card:hover {
    border-color: rgba(37,99,235,0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    background: var(--white);
}

.service-card-number {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: block;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-card-link:hover { gap: 10px; }

.service-card-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--navy);
    border-color: transparent;
}

.service-card-wide:hover {
    background: var(--navy-mid);
    border-color: transparent;
}

.service-card-wide .service-card-number { color: rgba(255,255,255,0.4); }
.service-card-wide h3 { color: var(--white); font-size: 1.5rem; }
.service-card-wide p { color: rgba(255,255,255,0.65); }
.service-card-wide .service-card-link { color: #93c5fd; }

.service-card-wide-visual {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.service-wide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-wide-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.service-wide-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(37,99,235,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #93c5fd;
    flex-shrink: 0;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.12), transparent);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
}

.process .section-title { color: var(--white); }
.process .section-desc  { color: rgba(255,255,255,0.6); }
.process .section-tag   { color: #93c5fd; }
.process .section-tag::before { background: #93c5fd; }

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header .section-desc {
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg, transparent, rgba(255,255,255,0.15), transparent
    );
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.process-step-number {
    width: 64px;
    height: 64px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #93c5fd;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .process-step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 24px var(--accent-glow);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.process-step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    padding: 100px 0;
    background: var(--gradient-subtle);
}

.cta-inner {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner .section-tag {
    color: #93c5fd;
    justify-content: center;
}

.cta-inner .section-tag::before { background: #93c5fd; }

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-note {
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    position: relative;
    z-index: 1;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-img {
    height: 32px;
    margin-bottom: 1rem;
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-contact-mini span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.footer-contact-mini a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-contact-mini a:hover {
    color: var(--white);
}

.footer-col h5 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    padding: 140px 0 80px;
    background: var(--gradient-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-header-inner {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-section {
    padding: 100px 0;
    background: var(--gradient-subtle);
}

.services-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-full-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
}

.service-full-item:hover {
    border-color: rgba(37,99,235,0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-full-item:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--navy);
    border-color: transparent;
    color: var(--white);
}

.service-full-item:first-child h3 { color: var(--white); }
.service-full-item:first-child p  { color: rgba(255,255,255,0.65); }

.service-number {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.service-full-item:first-child .service-number {
    color: rgba(255,255,255,0.4);
}

.service-full-item h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-full-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--dark-gray);
}

.service-list li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--accent);
    flex-shrink: 0;
}

.service-full-item:first-child .service-list li {
    color: rgba(255,255,255,0.7);
}

.service-full-item:first-child .service-list li::before {
    background: rgba(37,99,235,0.3);
    color: #93c5fd;
}

.service-visual {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}

.service-visual-title {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.service-visual-stat {
    margin-bottom: 1rem;
}

.service-visual-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.service-visual-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.service-visual-bar-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 3px;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-content {
    padding: 100px 0;
    background: var(--gradient-subtle);
}

.about-intro {
    max-width: 760px;
    margin: 0 auto 5rem;
    text-align: center;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.about-intro .lead {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.about-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: var(--transition);
}

.about-card:hover {
    border-color: rgba(37,99,235,0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.about-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.about-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.values-list li {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid var(--light-gray);
    transition: var(--transition);
}

.values-list li:hover {
    border-left-color: var(--accent);
    color: var(--dark-gray);
}

/* ===================================
   LEADERSHIP
   =================================== */
.leadership {
    padding: 80px 0;
    background: var(--white);
}

.leadership .section-title { margin-bottom: 0.5rem; }

.leadership-header {
    margin-bottom: 3.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: rgba(37,99,235,0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.team-avatar {
    width: 72px;
    height: 72px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.25rem;
}

.team-card h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-card .team-role {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===================================
   REASONS / WHY CHOOSE
   =================================== */
.reasons {
    padding: 80px 0;
    background: var(--gradient-subtle);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.reason-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    transition: var(--transition);
}

.reason-item:hover {
    border-color: rgba(37,99,235,0.2);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.reason-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.reason-body h4 {
    font-size: 0.98rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.reason-body p {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 100px 0;
    background: var(--gradient-subtle);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-form-container .form-intro {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
    background: var(--off-white);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.75rem;
    text-align: center;
    line-height: 1.5;
}

/* Contact Info Sidebar */
.contact-info-container h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-info-intro {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: var(--transition);
}

.contact-detail-item:hover {
    border-color: rgba(37,99,235,0.2);
    box-shadow: var(--shadow-sm);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-detail-body h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-detail-body p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.contact-response-note {
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-response-note strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.4rem;
}

/* Company Card */
.contact-company-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-company-logo {
    height: 52px;
    width: auto;
    margin: 0 auto 1rem;
}

.contact-company-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.contact-company-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

/* Company Info Banner */
.company-info-banner {
    background: var(--navy);
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.company-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.company-info-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(37,99,235,0.4);
}

.company-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    flex-shrink: 0;
}

.company-info-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.company-info-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.company-info-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    transition: var(--transition);
}

a.company-info-value:hover {
    color: #93c5fd;
}

/* Map */
.contact-map {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 1.5rem;
}

.contact-map-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--off-white);
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark-gray);
}

/* ===================================
   NOTIFICATION
   =================================== */
.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 360px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.25rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0);     opacity: 1; }
    to   { transform: translateX(400px); opacity: 0; }
}

/* ===================================
   RESPONSIVE — 1024px
   =================================== */
@media (max-width: 1024px) {
    .hero-inner            { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual           { display: none; }
    .hero-title            { font-size: 3rem; }
    .features-layout       { grid-template-columns: 1fr; }
    .features-left         { position: static; }
    .services-home-grid    { grid-template-columns: 1fr 1fr; }
    .service-card-wide     { grid-column: span 2; }
    .stats-grid            { grid-template-columns: repeat(2, 1fr); }
    .footer-grid           { grid-template-columns: 1fr 1fr; }
    .process-steps         { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .company-info-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================
   RESPONSIVE — 768px
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-menu.active { display: flex; }
    .hamburger       { display: flex; }

    .hero-title    { font-size: 2.4rem; }
    .section-title { font-size: 2rem; }
    .cta-title     { font-size: 2rem; }
    .cta-inner     { padding: 3rem 2rem; }

    .services-home-header  { flex-direction: column; align-items: flex-start; }
    .services-home-grid    { grid-template-columns: 1fr; }
    .service-card-wide     { grid-column: span 1; grid-template-columns: 1fr; }

    .about-grid   { grid-template-columns: 1fr; }
    .team-grid    { grid-template-columns: 1fr 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }

    .contact-wrapper { grid-template-columns: 1fr; }
    .form-row        { grid-template-columns: 1fr; }

    .services-full-grid                    { grid-template-columns: 1fr; }
    .service-full-item:first-child         { grid-column: span 1; grid-template-columns: 1fr; }

    .footer-grid   { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-bottom: none; }

    .process-steps { grid-template-columns: 1fr 1fr; }
    .page-header h1 { font-size: 2.5rem; }

    .company-info-grid { grid-template-columns: 1fr; }
}

/* ===================================
   RESPONSIVE — 480px
   =================================== */
@media (max-width: 480px) {
    .hero-title    { font-size: 2rem; }
    .hero-actions  { flex-direction: column; }
    .team-grid     { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .stats-grid    { grid-template-columns: 1fr 1fr; }
}
