/* ═══════════════════════════════════════════════════════════════
   HADA CONSULTING — DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════ */

/* ──── Custom Properties ──── */
:root {
    /* Palette */
    --clr-bg: #0a0a0f;
    --clr-bg-alt: #111118;
    --clr-surface: #16161f;
    --clr-surface-2: #1e1e2a;
    --clr-border: rgba(255, 255, 255, 0.06);
    --clr-border-h: rgba(255, 255, 255, 0.12);
    --clr-text: #e8e8ed;
    --clr-text-dim: #8a8a9a;
    --clr-text-muted: #5a5a6e;
    --clr-accent: #6c63ff;
    --clr-accent-2: #a78bfa;
    --clr-accent-3: #38bdf8;
    --clr-glow: rgba(108, 99, 255, 0.15);
    --clr-glow-2: rgba(167, 139, 250, 0.1);

    /* Gradients */
    --grad-accent: linear-gradient(135deg, #6c63ff 0%, #a78bfa 50%, #38bdf8 100%);
    --grad-surface: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(167, 139, 250, 0.03) 100%);
    --grad-card: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* Typography */
    --ff-heading: 'Outfit', sans-serif;
    --ff-body: 'Inter', sans-serif;

    /* Sizing */
    --container: 1200px;
    --section-py: 120px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ──── Reset ──── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ──── Utility ──── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ──── Buttons ──── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 60px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: 0 4px 24px rgba(108, 99, 255, 0.3), 0 0 0 0 rgba(108, 99, 255, 0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(108, 99, 255, 0.45), 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease-out);
}

.btn-ghost {
    background: transparent;
    color: var(--clr-text);
    border: 1px solid var(--clr-border-h);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent-2);
    background: rgba(108, 99, 255, 0.06);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-accent-2);
    border: 1px solid var(--clr-accent);
    padding: 12px 28px;
}

.btn-outline:hover {
    background: var(--clr-accent);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline svg {
    transition: transform 0.3s var(--ease-out);
}

.btn-outline:hover svg {
    transform: translateX(4px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--clr-border);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.8) contrast(1.1);
    transition: filter 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.nav-logo:hover .logo-img,
.footer-logo:hover .logo-img {
    filter: brightness(2.2) contrast(1.15);
    transform: scale(1.03);
}

.footer-logo .logo-img {
    height: 56px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-dim);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--clr-text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--grad-accent);
    color: #fff;
    border-radius: 60px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(108, 99, 255, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.3) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: orbFloat 15s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    top: 40%;
    right: 25%;
    animation: orbFloat 10s ease-in-out infinite alternate;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.15);
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--clr-accent-2);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--ff-heading);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.title-accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--clr-text-dim);
    margin-bottom: 12px;
    animation: fadeInUp 0.8s var(--ease-out) 0.55s both;
}

.hero-tagline em {
    color: var(--clr-accent-2);
    font-style: normal;
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--clr-text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s var(--ease-out) 0.65s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.75s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 64px;
    animation: fadeInUp 0.8s var(--ease-out) 0.9s both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--clr-border-h);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--clr-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s var(--ease-out) 1.1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--clr-accent), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.4;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS — SHARED
   ═══════════════════════════════════════════════════════════════ */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-accent-2);
    margin-bottom: 16px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '—';
    margin: 0 12px;
    color: var(--clr-text-muted);
}

.section-title {
    font-family: var(--ff-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.title-bar {
    width: 60px;
    height: 3px;
    background: var(--grad-accent);
    border-radius: 3px;
    margin: 20px auto 0;
}

/* Reveal animation */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   WHAT WE DO
   ═══════════════════════════════════════════════════════════════ */
.what-we-do {
    background: var(--clr-bg-alt);
}

.what-we-do-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wwd-lead {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--clr-text);
}

.wwd-lead strong {
    color: var(--clr-accent-2);
}

.wwd-body {
    font-size: 1rem;
    color: var(--clr-text-dim);
    margin-bottom: 32px;
    line-height: 1.8;
}

.wwd-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 340px;
}

.wwd-card-stack {
    position: relative;
    width: 280px;
    height: 300px;
}

.wwd-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s var(--ease-out);
    color: var(--clr-text);
    font-weight: 600;
    font-size: 1rem;
}

.wwd-float-card svg {
    color: var(--clr-accent);
    flex-shrink: 0;
}

.wwd-fc-1 {
    top: 0;
    left: 0;
    animation: floatCard1 6s ease-in-out infinite;
}

.wwd-fc-2 {
    top: 100px;
    left: 60px;
    animation: floatCard2 7s ease-in-out infinite;
}

.wwd-fc-3 {
    top: 200px;
    left: 20px;
    animation: floatCard3 8s ease-in-out infinite;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 40px 32px 36px;
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-surface);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.service-card:hover {
    border-color: rgba(108, 99, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(108, 99, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--clr-accent);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-icon {
    background: rgba(108, 99, 255, 0.15);
    transform: scale(1.05);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--ff-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
}

.service-title {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--clr-text-dim);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-sub {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 10px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.service-quote {
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(108, 99, 255, 0.05);
    border-left: 3px solid var(--clr-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: var(--clr-accent-2);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.service-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    transition: width 0.5s var(--ease-out);
}

.service-card:hover .service-line {
    width: 100%;
}

.service-card-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 24px;
    align-items: start;
}

.service-card-wide .service-icon {
    grid-row: 1 / 3;
}

.service-card-wide .service-number {
    top: 20px;
    right: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════ */
.why-us {
    background: var(--clr-bg-alt);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    position: relative;
    padding: 48px 36px 44px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.why-card:hover {
    border-color: rgba(108, 99, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(108, 99, 255, 0.06);
    border: 1px solid rgba(108, 99, 255, 0.12);
    border-radius: 50%;
    color: var(--clr-accent);
    transition: all 0.4s var(--ease-out);
}

.why-card:hover .why-icon-wrap {
    background: rgba(108, 99, 255, 0.12);
    transform: scale(1.08);
}

.why-title {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.why-desc {
    font-size: 0.95rem;
    color: var(--clr-text-dim);
    line-height: 1.75;
}

.why-number {
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-family: var(--ff-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   VISION & TEAM
   ═══════════════════════════════════════════════════════════════ */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vision-card {
    position: relative;
    padding: 56px 44px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s var(--ease-out);
}

.vision-card:hover::before {
    transform: scale(1.5);
    opacity: 1.5;
}

.vision-card:hover {
    border-color: rgba(108, 99, 255, 0.15);
    transform: translateY(-4px);
}

.vision-card-team::before {
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
}

.vision-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-accent-2);
    margin-bottom: 24px;
}

.vision-icon {
    color: var(--clr-accent);
    margin-bottom: 24px;
}

.vision-card-team .vision-icon {
    color: var(--clr-accent-3);
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--clr-text);
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════ */
.cta-band {
    padding: 100px 0;
    background: var(--clr-bg-alt);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(108, 99, 255, 0.06) 0%, transparent 80%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--clr-text-dim);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--clr-border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-tagline {
    color: var(--clr-text-dim);
    font-size: 0.95rem;
}

.footer-heading {
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--clr-text);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--clr-text-dim);
}

.footer-info svg {
    color: var(--clr-accent);
    flex-shrink: 0;
}

.footer-info a {
    color: var(--clr-text-dim);
}

.footer-info a:hover {
    color: var(--clr-accent-2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.92rem;
    color: var(--clr-text-dim);
    transition: all 0.3s var(--ease-out);
}

.footer-links a:hover {
    color: var(--clr-accent-2);
    padding-left: 6px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    /* Mobile Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 60px 40px;
        transition: right 0.4s var(--ease-out);
        border-left: 1px solid var(--clr-border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 100px 20px 60px;
        min-height: 100svh;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number,
    .stat-suffix {
        font-size: 1.6rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* What We Do */
    .what-we-do-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .wwd-visual {
        min-height: 260px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-wide {
        grid-column: span 1;
        display: block;
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Vision */
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-card {
        padding: 40px 28px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}