@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS Custom Properties ──────────────────────────────── */
:root {
    --font: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;

    /* ── Logo exact colors ── */
    --red: #be2128;
    /* H letter + arc  */
    --blue: #1f8ac2;
    /* R letter + head */
    --navy: #1b4680;
    /* outer circle    */

    /* ── Navy scale (based on logo navy) ── */
    --navy-950: #0a1a33;
    --navy-900: #0f2444;
    --navy-800: #1b4680;
    /* = --navy */
    --navy-700: #224f8e;
    --navy-600: #2d60a8;

    /* ── Blue scale ── */
    --blue-600: #1672a8;
    --blue-500: #1f8ac2;
    /* = --blue */
    --blue-400: #38a0d4;
    --blue-300: #70bfe6;
    --blue-100: #e5f4fb;

    /* ── Red scale ── */
    --red-800: #8c181e;
    --red-700: #a81c22;
    --red-600: #be2128;
    /* = --red */
    --red-500: #cf3a40;
    --red-100: #faeaea;
    --red-soft: rgba(190, 33, 40, 0.08);

    /* ── Neutrals ── */
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-50: #f3f4f6;
    --gray-100: #e9ebee;
    --gray-200: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* ── Semantic ── */
    --bg: var(--off-white);
    --bg-alt: var(--white);
    --text: var(--gray-900);
    --muted: var(--gray-600);
    --border: rgba(27, 70, 128, 0.10);

    /* ── Shadows ── */
    --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.14);
    --shadow-red: 0 8px 24px rgba(190, 33, 40, 0.28);
    --shadow-blue: 0 8px 24px rgba(31, 138, 194, 0.25);

    /* ── Radii ── */
    --r-sm: 10px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-xl: 48px;
    --r-full: 9999px;

    /* ── Transitions ── */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 180ms ease;
    --t-slow: 400ms var(--ease);

    --container: 1200px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--muted);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
    line-height: 1.25;
    font-weight: 800;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--t-fast);
}

img,
svg {
    display: block;
    max-width: 100%;
}

p {
    margin: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

/* ─── Utilities ──────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .75rem 1.5rem;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--r-full);
    transform: translateY(-200%);
    transition: transform var(--t-slow);
    z-index: 9999;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ─── Kicker ─────────────────────────────────────────────── */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.1rem;
}

.kicker::before {
    content: '';
    display: block;
    width: 26px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ─── Divider ────────────────────────────────────────────── */
.section-divider {
    width: 50px;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.section-head--center .section-divider {
    margin-inline: auto;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .9rem 2.2rem;
    border-radius: var(--r-full);
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--t-slow);
    white-space: nowrap;
}

.btn-red {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
    direction: ltr;
}

.btn-red:hover {
    background: var(--red-700);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(190, 33, 40, .38);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .4);
}

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

.btn-navy {
    background: var(--navy-800);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    transition: background var(--t-slow), box-shadow var(--t-slow);
}

.site-header[data-scrolled="true"] {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    margin: 1rem auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 800;
    font-size: .88rem;
    line-height: 1.2;
    color: var(--white);
    transition: color var(--t-fast);
}

.site-header[data-scrolled="true"] .brand-name {
    color: var(--navy-800);
}

.brand-sub {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    transition: color var(--t-fast);
}

.site-header[data-scrolled="true"] .brand-sub {
    color: var(--blue-500);
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-link {
    padding: .4rem .7rem;
    font-weight: 600;
    font-size: .88rem;
    border-radius: var(--r-full);
    color: rgba(255, 255, 255, .85);
    transition: all var(--t-fast);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .12);
}

.site-header[data-scrolled="true"] .nav-link {
    color: var(--gray-800);
}

.site-header[data-scrolled="true"] .nav-link:hover {
    color: var(--navy-800);
    background: var(--blue-100);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    font-size: .88rem;
    font-weight: 800;
    direction: ltr;
    color: var(--white);
    padding: .4rem .75rem;
    border-radius: var(--r-full);
    border: 1.5px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .1);
    transition: all var(--t-fast);
}

.nav-phone:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4);
    color: var(--white);
}

.site-header[data-scrolled="true"] .nav-phone {
    color: var(--navy-800);
    background: var(--blue-50);
    border-color: var(--blue-200);
}

.site-header[data-scrolled="true"] .nav-phone:hover {
    background: var(--blue-100);
    border-color: var(--blue-400);
}

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    font-weight: 700;
    margin-right: .4rem;
    box-shadow: var(--shadow-red);
}

.nav-cta:hover {
    background: var(--red-700) !important;
    transform: translateY(-1px);
}

.site-header[data-scrolled="true"] .nav-cta {
    color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: auto;
    position: relative;
    transition: background var(--t-fast);
}

.site-header[data-scrolled="true"] .nav-toggle-icon {
    background: var(--navy-800);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: inherit;
    right: 0;
    transition: all var(--t-fast);
}

.nav-toggle-icon::before {
    top: -7px;
}

.nav-toggle-icon::after {
    bottom: -7px;
}

/* Hamburger → X */
.nav-toggle.is-active .nav-toggle-icon {
    background: transparent;
}

.nav-toggle.is-active .nav-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.is-active .nav-toggle-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy-950);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 85% 15%, rgba(31, 138, 194, .15) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 10% 85%, rgba(27, 70, 128, .55) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-block: 6rem 5rem;
}

.hero-copy {
    max-width: 580px;
}

.hero .kicker {
    color: rgba(255, 255, 255, .8);
}

.hero .kicker::before {
    background: var(--blue-400);
}

.hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

.hero-title em {
    font-style: normal;
    color: var(--blue-300);
}

.hero-subtitle {
    font-size: clamp(1rem, 4.2vw, 1.4rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.hero-lead strong {
    color: rgba(255, 255, 255, .95);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}

.hero-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.hero-list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    color: rgba(255, 255, 255, .78);
    font-size: .98rem;
    font-weight: 500;
}

.hero-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background: var(--blue-500);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

/* Hero visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-full);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-weight: 600;
    font-size: .92rem;
    width: fit-content;
}

.hero-badge .badge-icon {
    width: 34px;
    height: 34px;
    background: var(--blue-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-badge .badge-icon svg {
    color: var(--white);
    width: 16px;
    height: 16px;
}

.hero-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-lg);
    padding: 2rem;
    backdrop-filter: blur(12px);
}

.hero-card-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-300);
    margin-bottom: 1.25rem;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hstat {
    padding: 1rem;
    background: rgba(255, 255, 255, .05);
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, .07);
}

.hstat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue-300);
    line-height: 1;
    margin-bottom: .2rem;
}

.hstat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
}

/* ─── Stats Strip ────────────────────────────────────────── */
.stats-strip {
    background: var(--navy-800);
    padding-block: 2.75rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    padding: .75rem 1rem;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.stat-item:last-child {
    border-left: none;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-300);
    line-height: 1;
}

.stat-label {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
}

/* ─── Section Base ───────────────────────────────────────── */
.section {
    padding-block: 6.5rem;
}

.section--alt {
    background: var(--bg-alt);
}

.section--dark {
    background: var(--navy-900);
    color: var(--white);
}

.section-head {
    max-width: 660px;
    margin-bottom: 4rem;
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.section-title {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.section-lead {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ─── About ──────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-prose {
    font-size: 1.05rem;
}

.about-prose p+p {
    margin-top: 1.25rem;
}

.about-prose strong {
    color: var(--navy-800);
    font-weight: 700;
}

.about-highlight {
    margin-top: 1.75rem;
    padding: 1.4rem 1.75rem;
    background: var(--blue-100);
    border-radius: var(--r-md);
    border-right: 4px solid var(--blue-500);
}

.about-highlight p {
    font-size: .98rem;
    color: var(--navy-800);
    font-weight: 600;
    line-height: 1.7;
}

.about-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-badge {
    background: var(--navy-800);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.about-badge::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(31, 138, 194, .18) 0%, transparent 70%);
}

.abadge {
    text-align: center;
    position: relative;
    padding: 1.75rem 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.abadge:nth-child(2n) {
    border-left: none;
}

.abadge:nth-child(n+3) {
    border-bottom: none;
}

.abadge-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--blue-300);
    line-height: 1;
}

.abadge-label {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    margin-top: .4rem;
    line-height: 1.5;
}

/* ─── Services ───────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    transition: all var(--t-slow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t-slow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red-100);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-sm);
    background: var(--blue-100);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all var(--t-slow);
}

.service-card:hover .service-icon {
    background: var(--blue-500);
    color: var(--white);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: .6rem;
}

.service-text {
    font-size: .93rem;
    line-height: 1.75;
}

/* ─── Why Us (Distinctions) ──────────────────────────────── */
.distinctions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.distinction-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    transition: all var(--t-slow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.distinction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-300);
}

.distinction-num {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gray-100);
    transition: color var(--t-slow);
}

.distinction-card:hover .distinction-num {
    color: var(--blue-500);
}

.distinction-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--navy-800);
}

.distinction-text {
    font-size: .93rem;
    line-height: 1.75;
}

.distinction-text strong {
    color: var(--navy-800);
}

/* ─── Sectors (dark) ─────────────────────────────────────── */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.sector-card {
    padding: 2.25rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
    transition: all var(--t-slow);
}

.sector-card:hover {
    background: rgba(255, 255, 255, .09);
    border-color: var(--blue-400);
    transform: translateY(-5px);
}

.sector-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--r-sm);
    background: rgba(31, 138, 194, .18);
    color: var(--blue-300);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.sector-icon svg {
    width: 22px;
    height: 22px;
}

.sector-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .55rem;
}

.sector-desc {
    font-size: .87rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
}

/* ─── Process ────────────────────────────────────────────── */
.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 1rem;
    counter-reset: step;
}

.process-track::before {
    content: '';
    position: absolute;
    top: 46px;
    right: 7rem;
    left: 7rem;
    height: 2px;
    background: repeating-linear-gradient(to left,
            var(--blue-200, #b3d8ef) 0, var(--blue-200, #b3d8ef) 8px,
            transparent 8px, transparent 18px);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    counter-increment: step;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    border: 3px solid var(--blue-300);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-slow);
}

.step-num::after {
    content: counter(step);
}

.process-step:hover .step-num {
    background: var(--blue-500);
    color: var(--white);
    border-color: var(--blue-500);
    box-shadow: var(--shadow-blue);
    transform: scale(1.1);
}

.step-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .45rem;
}

.step-text {
    font-size: .88rem;
    line-height: 1.7;
}

/* ─── Strategic Goals ────────────────────────────────────── */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.goal-card {
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: .85rem;
    transition: all var(--t-slow);
}

.goal-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-300);
    transform: translateY(-4px);
}

.goal-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r-sm);
    background: var(--navy-800);
    color: var(--blue-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-icon svg {
    width: 20px;
    height: 20px;
}

.goal-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-800);
}

.goal-text {
    font-size: .9rem;
    line-height: 1.7;
}

.goal-text strong {
    color: var(--navy-700);
}

/* ─── Values ─────────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
}

.value-card {
    background: var(--bg-alt);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    padding: 3rem 2.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--t-slow);
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--navy-800), var(--blue-500));
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
}

.value-icon svg {
    width: 30px;
    height: 30px;
}

.value-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 1.1rem;
}

.value-text {
    font-size: .98rem;
    line-height: 1.8;
}

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
    background: var(--navy-900);
    padding-block: 1.6rem;
    padding-inline: 1.6rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 80% at 15% 50%, rgba(31, 138, 194, .12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 85% 50%, rgba(190, 33, 40, .08) 0%, transparent 55%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.cta-title {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.cta-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .62);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── CTA Phone Numbers ──────────────────────────────────── */
.cta-phones {
    margin-top: 2.75rem;
}

.cta-phones-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.phone-chip--primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    padding: 1rem 1.5rem;
    border-radius: var(--r-md);
    font-weight: 700;
    direction: ltr;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-700) 100%);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(190, 33, 40, .35);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.phone-chip--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(190, 33, 40, .45);
    color: var(--white);
}

.phone-chip--primary svg {
    color: rgba(255, 255, 255, .9);
    flex-shrink: 0;
}

.phone-chip-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
}

.phone-chip-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    direction: rtl;
}

.phone-chip-num {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .5px;
}

.phones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.phone-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 600;
    direction: ltr;
    transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast);
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .88);
}

.phone-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .22);
    color: var(--white);
}

.phone-chip svg {
    flex-shrink: 0;
}

.phone-chip--landline svg {
    color: var(--blue-400);
}

.phone-chip--wa svg {
    color: #25d366;
}

.phone-chip--wa:hover {
    border-color: rgba(37, 211, 102, .35);
    background: rgba(37, 211, 102, .08);
}

/* ─── CTA Contact Details ────────────────────────────────── */
.cta-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-top: 2.5rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
}

.cta-contact-item svg {
    flex-shrink: 0;
    color: var(--blue-400);
}

.cta-contact-item a {
    color: rgba(255, 255, 255, .7);
    transition: color var(--t-fast);
}

.cta-contact-item a:hover {
    color: var(--white);
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, .6);
    padding-block: 3rem 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .6rem;
}

.footer-brand {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
}

.footer-tagline {
    font-size: .88rem;
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem 1rem;
    margin-top: .5rem;
    max-width: 640px;
}

.footer-phones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .45rem .75rem;
    margin-top: .75rem;
    max-width: 560px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    font-weight: 600;
    direction: ltr;
    color: rgba(255, 255, 255, .65);
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
    transition: color var(--t-fast), border-color var(--t-fast);
}

a.footer-phone:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, .25);
}

a.footer-phone--wa:hover {
    border-color: rgba(37, 211, 102, .3);
    color: #25d366;
}

.footer-phone svg {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
}

a.footer-phone--primary {
    background: rgba(190, 33, 40, .15);
    border-color: rgba(190, 33, 40, .35);
    color: var(--white);
    font-size: .88rem;
    padding: .45rem .9rem;
}

a.footer-phone--primary:hover {
    background: rgba(190, 33, 40, .25);
    border-color: rgba(190, 33, 40, .5);
    color: var(--white);
}

a.footer-phone--primary svg {
    color: #ff8a8f;
}

a.footer-phone--landline svg {
    color: var(--blue-400);
}

a.footer-phone--wa svg {
    color: #25d366;
}

.footer-contacts-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem 1rem;
    margin-top: .75rem;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    transition: color var(--t-fast);
}

a.footer-contact-link:hover {
    color: var(--white);
}

.footer-contact-link svg {
    flex-shrink: 0;
}

.footer-contact-sep {
    color: rgba(255, 255, 255, .2);
    font-size: .75rem;
}

.footer-divider {
    width: 56px;
    height: 1px;
    margin-block: .5rem;
    background: linear-gradient(to right, transparent, var(--blue-400), transparent);
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
}

/* ─── Animations ─────────────────────────────────────────── */

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(16px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes countLine {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* ── Hero entrance (runs immediately on load) ── */
.hero-copy .kicker {
    animation: fadeUp .6s var(--ease) both;
    animation-delay: .1s;
}

.hero-title {
    animation: fadeUp .7s var(--ease) both;
    animation-delay: .22s;
}

.hero-subtitle {
    animation: fadeUp .7s var(--ease) both;
    animation-delay: .22s;
}

.hero-lead {
    animation: fadeUp .7s var(--ease) both;
    animation-delay: .36s;
}

.hero-actions {
    animation: fadeUp .7s var(--ease) both;
    animation-delay: .48s;
}

.hero-list {
    animation: fadeUp .7s var(--ease) both;
    animation-delay: .6s;
}

.hero-visual {
    animation: fadeRight .9s var(--ease) both;
    animation-delay: .3s;
}

/* ── Scroll-triggered base state ── */
.anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.anim.anim--right {
    transform: translateX(24px);
}

.anim.anim--scale {
    transform: scale(.95) translateY(12px);
}

.anim.is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays for child groups */
.anim-group>.anim:nth-child(1) {
    transition-delay: .00s;
}

.anim-group>.anim:nth-child(2) {
    transition-delay: .08s;
}

.anim-group>.anim:nth-child(3) {
    transition-delay: .16s;
}

.anim-group>.anim:nth-child(4) {
    transition-delay: .24s;
}

.anim-group>.anim:nth-child(5) {
    transition-delay: .32s;
}

.anim-group>.anim:nth-child(6) {
    transition-delay: .40s;
}

/* Section head slide-up */
.anim-head {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.anim-head.is-visible {
    opacity: 1;
    transform: none;
}

/* Stat number count-up visual line */
.stat-number {
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--blue-400);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .8s var(--ease);
}

.stats-strip.is-visible .stat-number::after {
    transform: scaleX(1);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {

    .anim,
    .anim-head,
    .hero-copy .kicker,
    .hero-title,
    .hero-lead,
    .hero-actions,
    .hero-list,
    .hero-visual {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .stat-number::after {
        display: none;
    }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .distinctions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-track::before {
        display: none;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-left: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, .12);
    }
}

@media (max-width: 768px) {
    .section {
        padding-block: 4.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.25rem;
        gap: .2rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        transform: translateY(-6px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--t-fast);
        pointer-events: none;
    }

    .nav-menu.is-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: .85rem 1rem;
        color: var(--gray-800) !important;
    }

    .nav-link:hover {
        background: var(--blue-100) !important;
        color: var(--navy-800) !important;
    }

    .nav-cta {
        background: var(--red) !important;
        color: var(--white) !important;
        margin-right: 0;
        margin-top: .25rem;
    }

    .nav-phone {
        width: 100%;
        justify-content: center;
        text-align: center;
        color: var(--navy-800) !important;
        background: var(--blue-100) !important;
        border-color: var(--blue-200) !important;
        padding: .85rem 1rem;
    }

    .nav-cta:hover {
        background: var(--red-700) !important;
    }

    .hero-inner {
        padding-block: 4rem 3rem;
    }

    .phones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .distinctions-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .process-track {
        grid-template-columns: 1fr;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-badge {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-card-stats {
        grid-template-columns: 1fr 1fr;
    }

    .phones-grid {
        grid-template-columns: 1fr;
    }
}