/* ============================================================
   PROMINENCE INFOTECH — Professional B2B website
   Color: deep navy + electric blue + warm coral accent
   ============================================================ */

:root {
    --navy-900: #0a1733;
    --navy-800: #0e1f43;
    --navy-700: #142a5c;
    --navy-600: #1e40af;
    --blue-500: #2563eb;
    --blue-400: #3b82f6;
    --cyan-400: #0ea5e9;
    --coral: #ff6b4a;
    --coral-dark: #e8552f;

    --ink-900: #0b1220;
    --ink-700: #1f2937;
    --ink-500: #4b5563;
    --ink-400: #6b7280;
    --ink-300: #9ca3af;
    --line: #e5e7eb;
    --line-soft: #f1f5f9;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-softer: #f1f5f9;

    --grad-blue: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    --grad-coral: linear-gradient(135deg, #ff6b4a 0%, #ff9472 100%);
    --grad-text: linear-gradient(135deg, #1e40af 0%, #0ea5e9 60%, #06b6d4 100%);

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
    --shadow: 0 4px 12px rgba(15, 23, 42, .08);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, .10);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, .14);
    --shadow-blue: 0 16px 40px rgba(30, 64, 175, .25);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;

    --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

    --transition: 220ms cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    color: var(--ink-700);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HELPERS ============ */
.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(30, 64, 175, .08);
    color: var(--navy-600);
    border: 1px solid rgba(30, 64, 175, .15);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    margin-bottom: 24px;
}
.eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 74, .2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 107, 74, .2); }
    50% { box-shadow: 0 0 0 8px rgba(255, 107, 74, 0); }
}

.section-eyebrow {
    display: inline-block;
    color: var(--navy-600);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}
.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 22px; height: 2px;
    background: var(--grad-blue);
    border-radius: 2px;
}
.section-eyebrow.light {
    color: rgba(255, 255, 255, .85);
}
.section-eyebrow.light::before {
    background: var(--coral);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-title.light { color: white; }

.section-lead {
    font-size: 17px;
    color: var(--ink-500);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 620px;
}

.section-head.center {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 56px;
}
.section-head.center .section-eyebrow { padding-left: 0; }
.section-head.center .section-eyebrow::before { display: none; }
.section-head.center .section-lead { margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--grad-blue);
    color: white;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(30, 64, 175, .35);
}
.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
    background: white;
    color: var(--navy-800);
    border-color: var(--line);
}
.btn-ghost:hover {
    border-color: var(--navy-600);
    color: var(--navy-600);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--navy-800);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost-light {
    background: rgba(255, 255, 255, .1);
    color: white;
    border-color: rgba(255, 255, 255, .25);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4);
}

/* ============ TOPBAR ============ */
.topbar {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    padding: 9px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.topbar-item svg { color: var(--coral); }

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 100;
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark { display: flex; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}
.logo-sub {
    font-size: 10px;
    color: var(--ink-400);
    letter-spacing: .24em;
    font-weight: 700;
    margin-top: 3px;
}
.logo-light .logo-name { color: white; }
.logo-light .logo-sub { color: rgba(255, 255, 255, .6); }

.nav-links {
    display: flex;
    gap: 6px;
}
.nav-link {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ink-500);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover { color: var(--navy-700); background: var(--bg-soft); }
.nav-link.active { color: var(--navy-700); font-weight: 600; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 2px;
    background: var(--grad-blue);
    border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #3b82f6, transparent);
    top: -100px; right: -100px;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #ff6b4a, transparent);
    bottom: -100px; left: -50px;
    opacity: .2;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 64, 175, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, .04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}
.hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-500);
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}
.trust-avatars { display: flex; }
.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    border: 3px solid white;
    margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.a1 { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.a2 { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.a3 { background: linear-gradient(135deg, #ff6b4a, #ff9472); }
.a4 { background: var(--ink-700); font-size: 14px; }

.trust-text { display: flex; flex-direction: column; line-height: 1.3; }
.trust-text strong { color: var(--ink-900); font-size: 15px; }
.trust-text span { color: var(--ink-500); font-size: 13px; }

/* ----- Hero visual ----- */
.hero-visual { position: relative; height: 480px; }

.visual-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    overflow: hidden;
}
.card-main {
    position: absolute;
    top: 30px; right: 0;
    width: 100%;
    max-width: 460px;
}

.card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}
.card-dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28ca42; }
.card-title {
    margin-left: 12px;
    font-size: 12px;
    color: var(--ink-400);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.card-body { padding: 28px 24px 24px; }
.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}
.metric {
    padding: 18px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.metric-label {
    display: block;
    font-size: 12px;
    color: var(--ink-400);
    font-weight: 500;
    margin-bottom: 6px;
}
.metric-value {
    font-family: var(--font-display);
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1;
    margin-bottom: 6px;
}
.metric-plus { color: var(--coral); font-size: 22px; }
.metric-trend {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    display: inline-block;
}
.metric-trend.up {
    color: #047857;
    background: #d1fae5;
}

.chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    padding-bottom: 4px;
}
.bar {
    flex: 1;
    background: var(--grad-blue);
    border-radius: 4px 4px 0 0;
    height: var(--h, 50%);
    animation: barRise 1.2s cubic-bezier(.2, .8, .2, 1) forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}
.bar:nth-child(odd) { background: linear-gradient(180deg, #0ea5e9 0%, #3b82f6 100%); }
.bar:nth-child(1) { animation-delay: .1s; }
.bar:nth-child(2) { animation-delay: .15s; }
.bar:nth-child(3) { animation-delay: .2s; }
.bar:nth-child(4) { animation-delay: .25s; }
.bar:nth-child(5) { animation-delay: .3s; }
.bar:nth-child(6) { animation-delay: .35s; }
.bar:nth-child(7) { animation-delay: .4s; }
.bar:nth-child(8) { animation-delay: .45s; }
@keyframes barRise { to { transform: scaleY(1); } }

.chart-labels {
    display: flex;
    justify-content: space-around;
    margin-top: 12px;
    font-size: 11px;
    color: var(--ink-400);
    font-weight: 500;
}

.float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    animation: float 4s ease-in-out infinite;
}
.float-card-1 {
    bottom: 100px;
    left: -10px;
    animation-delay: 0s;
}
.float-card-2 {
    top: 0;
    left: 60px;
    animation-delay: 2s;
}
.float-card strong {
    display: block;
    font-size: 13px;
    color: var(--ink-900);
}
.float-card span {
    font-size: 11px;
    color: var(--ink-400);
}
.fc-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: #d1fae5;
    color: #047857;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-icon-blue {
    background: #dbeafe;
    color: var(--navy-600);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============ STATS ============ */
.stats {
    padding: 0;
    margin-top: -1px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--navy-900);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0a1733 0%, #142a5c 100%);
}
.stat {
    text-align: center;
    color: white;
    position: relative;
}
.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .12);
}
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--coral);
}
.stat-label {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}

/* ============ ABOUT ============ */
.about { padding: 120px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 540px;
}
.ab-img {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.ab-img-1 {
    width: 75%; height: 70%;
    top: 0; left: 0;
    background:
        linear-gradient(135deg, rgba(10, 23, 51, .55), rgba(14, 165, 233, .35)),
        url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=900&q=80') center/cover;
}
.ab-img-2 {
    width: 60%; height: 55%;
    bottom: 0; right: 0;
    background:
        linear-gradient(135deg, rgba(255, 107, 74, .35), rgba(30, 64, 175, .35)),
        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=700&q=80') center/cover;
    border: 6px solid white;
}
.ab-badge {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.ab-badge-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.ab-badge-label {
    font-size: 13px;
    color: var(--ink-500);
    line-height: 1.3;
    font-weight: 500;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 32px 0;
}
.check-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.check-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--grad-blue);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.check-item strong {
    display: block;
    color: var(--ink-900);
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 700;
}
.check-item p {
    font-size: 13px;
    color: var(--ink-500);
    line-height: 1.5;
    margin: 0;
}

/* ============ SERVICES ============ */
.services {
    padding: 100px 0;
    background: var(--bg-soft);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 30%, rgba(30, 64, 175, .04), transparent 50%),
                      radial-gradient(circle at 75% 70%, rgba(255, 107, 74, .04), transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.service-card {
    background: white;
    padding: 36px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-wide { grid-column: span 1; }

.svc-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 22px;
    transition: var(--transition);
}
.service-card:hover .svc-icon { transform: scale(1.08) rotate(-3deg); }

.svc-icon-1 { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.svc-icon-2 { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.svc-icon-3 { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.svc-icon-4 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.svc-icon-5 { background: linear-gradient(135deg, #10b981, #059669); }
.svc-icon-6 { background: linear-gradient(135deg, #f59e0b, #f97316); }
.svc-icon-7 { background: linear-gradient(135deg, #ff6b4a, #ef4444); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--ink-500);
    line-height: 1.65;
    margin-bottom: 18px;
}
.svc-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.svc-link span { transition: transform var(--transition); }
.svc-link:hover span { transform: translateX(4px); }

/* ============ WHY ============ */
.why { padding: 120px 0; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: start;
}
.why-text { position: sticky; top: 120px; }

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.why-card {
    background: var(--bg-soft);
    padding: 30px 26px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: var(--transition);
}
.why-card:hover {
    background: white;
    border-color: var(--navy-600);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.why-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}
.why-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--ink-900);
    margin-bottom: 8px;
    font-weight: 700;
}
.why-card p {
    font-size: 14px;
    color: var(--ink-500);
    line-height: 1.6;
}

/* ============ PROCESS ============ */
.process {
    padding: 100px 0;
    background: var(--bg-soft);
}
.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-line::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--navy-600), var(--navy-600) 6px, transparent 6px, transparent 12px);
    opacity: .3;
    z-index: 0;
}
.proc-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.proc-circle {
    width: 64px; height: 64px;
    background: white;
    border: 3px solid var(--navy-600);
    color: var(--navy-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
    transition: var(--transition);
    box-shadow: 0 0 0 6px var(--bg-soft);
}
.proc-step:hover .proc-circle {
    background: var(--grad-blue);
    color: white;
    border-color: transparent;
    transform: scale(1.08);
}
.proc-step h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 8px;
}
.proc-step p {
    font-size: 14px;
    color: var(--ink-500);
    line-height: 1.6;
}

/* ============ CAREERS ============ */
.careers { padding: 100px 0; }
.careers-card {
    background: linear-gradient(135deg, #0a1733 0%, #1e40af 50%, #142a5c 100%);
    border-radius: var(--radius-lg);
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}
.careers-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 107, 74, .25), transparent 40%),
                      radial-gradient(circle at 20% 90%, rgba(14, 165, 233, .25), transparent 40%);
}
.careers-text { position: relative; }
.careers-text p {
    color: rgba(255, 255, 255, .8);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 540px;
}
.careers-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.careers-visual {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.cv-pill {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: white;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    backdrop-filter: blur(10px);
    animation: pillFloat 6s ease-in-out infinite;
}
.cv-pill-1 { animation-delay: 0s; }
.cv-pill-2 { animation-delay: .5s; background: rgba(255, 107, 74, .2); border-color: rgba(255, 107, 74, .4); }
.cv-pill-3 { animation-delay: 1s; }
.cv-pill-4 { animation-delay: 1.5s; }
.cv-pill-5 { animation-delay: 2s; background: rgba(14, 165, 233, .25); border-color: rgba(14, 165, 233, .4); }
.cv-pill-6 { animation-delay: 2.5s; }
@keyframes pillFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============ CONTACT ============ */
.contact {
    padding: 100px 0;
    background: var(--bg-soft);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.info-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy-600);
}
.info-icon {
    width: 48px; height: 48px;
    background: var(--grad-blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-card h4 {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--ink-900);
    margin-bottom: 6px;
    font-weight: 700;
}
.info-card p {
    font-size: 14px;
    color: var(--ink-500);
    line-height: 1.55;
}
.info-card a:hover { color: var(--navy-600); }

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink-900);
    background: var(--bg-soft);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-600);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, .08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--ink-400);
    margin-top: 16px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 18px;
}
.form-success.show { display: flex; }

/* ============ FOOTER ============ */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .65);
    padding: 70px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
}
.socials { display: flex; gap: 10px; }
.socials a {
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}
.socials a:hover {
    background: var(--coral);
    border-color: var(--coral);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    transition: var(--transition);
}
.footer-col a:hover { color: var(--coral); padding-left: 4px; }

.footer-contact li { font-size: 14px; line-height: 1.6; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255, 255, 255, .55); }
.footer-legal a:hover { color: var(--coral); }

/* ============ BACK TO TOP ============ */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px; height: 46px;
    background: var(--grad-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 90;
}
.back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-top:hover { transform: translateY(-4px); }

/* ============ ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { height: 420px; max-width: 520px; margin: 0 auto; width: 100%; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { max-width: 560px; margin: 0 auto; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-text { position: static; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .careers-card { grid-template-columns: 1fr; padding: 50px 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .process-line { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
    .process-line::before { display: none; }
}

@media (max-width: 768px) {
    .topbar { font-size: 12px; }
    .topbar-left { gap: 16px; }
    .topbar-right { display: none; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: var(--shadow-md);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-top: 1px solid var(--line);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 12px 16px;
    }
    .nav-link.active::after { display: none; }
    .hamburger { display: flex; }
    .nav-cta .btn { display: none; }
    .nav-cta .hamburger { display: flex; }

    .hero { padding: 60px 0 80px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 30px 20px; }
    .stat:nth-child(2)::after { display: none; }

    .about { padding: 80px 0; }
    .about-visual { height: 460px; }
    .check-grid { grid-template-columns: 1fr; gap: 18px; }

    .services { padding: 70px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 18px; }
    .service-card { padding: 28px 24px; }

    .why { padding: 70px 0; }
    .why-cards { grid-template-columns: 1fr; }

    .process { padding: 70px 0; }
    .process-line { grid-template-columns: 1fr; gap: 32px; }

    .careers { padding: 70px 0; }
    .careers-card { padding: 40px 26px; }
    .careers-actions .btn { width: 100%; }

    .contact { padding: 70px 0; }
    .contact-form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .hero-visual { height: 380px; }
    .float-card-1 { bottom: 60px; left: 0; }
    .float-card-2 { top: -10px; left: 20px; }
    .card-main { max-width: 100%; }

    .back-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-title { font-size: 36px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .ab-badge { padding: 14px 18px; left: 8px; }
    .ab-badge-num { font-size: 30px; }
}
