/* =====================================================
   DevMonki Ltd. — Stylesheet
   Dark / Premium Theme
   ===================================================== */

/* =====================================================
   1. CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
    /* Brand colours */
    --brand-blue:       #29ABE2;
    --brand-purple:     #5E35B1;
    --brand-green:      #2E7D32;
    --brand-red:        #B71C1C;
    --brand-grey:       #333333;

    /* UI Colours */
    --bg-primary:       #0a1628;
    --bg-secondary:     #0f1e35;
    --bg-card:          #132240;
    --bg-card-hover:    #1a2d50;
    --bg-card-border:   #ffffff12;

    --accent-1:         #29ABE2;   /* primary blue */
    --accent-2:         #5E35B1;   /* brand purple */
    --accent-glow:      rgba(41, 171, 226, 0.25);

    --text-primary:     #eef4f8;
    --text-secondary:   #8fa4b0;
    --text-muted:       #4e5e68;

    --border:           #ffffff0d;
    --border-accent:    rgba(41, 171, 226, 0.4);

    /* Typography */
    --font:             'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-pad:      7rem 0;
    --container-max:    1140px;
    --container-pad:    0 1.5rem;

    /* Transitions */
    --ease:             cubic-bezier(0.4, 0, 0.2, 1);
    --transition:       0.25s var(--ease);

    /* Radius */
    --radius-sm:        0.5rem;
    --radius-md:        1rem;
    --radius-lg:        1.5rem;
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* =====================================================
   3. UTILITIES
   ===================================================== */

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-pad);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue), #1a96cb);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(41, 171, 226, 0.5);
    filter: brightness(1.08);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-accent);
}
.btn-ghost:hover {
    background: rgba(41, 171, 226, 0.1);
    border-color: var(--accent-1);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: var(--section-pad);
}

/* Section header */
.section-header {
    margin-bottom: 3.5rem;
}
.section-header.centered,
.section-title.centered {
    text-align: center;
}
.section-subtitle {
    max-width: 560px;
    margin: 1rem auto 0;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    text-align: center;
}

/* Section label */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-1);
    background: rgba(41, 171, 226, 0.12);
    border: 1px solid rgba(41, 171, 226, 0.25);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* Section title */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}



/* =====================================================
   4. NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
    padding: 0.85rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity var(--transition);
}
.nav-logo:hover {
    opacity: 0.85;
}
.logo-accent {
    color: var(--accent-1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--brand-blue), #1a96cb);
    color: #fff;
    padding: 0.5rem 1.1rem;
    font-weight: 600;
    margin-left: 0.5rem;
    box-shadow: 0 0 18px var(--accent-glow);
}
.nav-link.nav-cta:hover {
    background: linear-gradient(135deg, #1a96cb, #0d7aab);
    filter: brightness(1.1);
}
.nav-link.active {
    color: var(--text-primary);
    background: rgba(41, 171, 226, 0.1);
}

/* Logo */
.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

/* Text fallback — shown when image fails */
.nav-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.logo-dev   { color: var(--brand-blue); }
.logo-monki { color: var(--brand-grey); }

/* Footer logo */
.footer-logo {
    margin-bottom: 0.85rem;
}
.footer-logo .nav-logo-img {
    height: 32px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   5. HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 8rem 1.5rem 5rem;
}

/* Ambient orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41, 171, 226, 0.28) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatOrb 9s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 53, 177, 0.22) 0%, transparent 70%);
    bottom: 0;
    left: -100px;
    animation: floatOrb 12s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(41, 171, 226, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: floatOrb 7s ease-in-out infinite 2s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(30px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-1);
    background: rgba(41, 171, 226, 0.12);
    border: 1px solid rgba(41, 171, 226, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

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

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* =====================================================
   6. ABOUT
   ===================================================== */
.about {
    background: var(--bg-secondary);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(41, 171, 226, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

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

.about-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.about-lead {
    font-size: 1.125rem !important;
    color: var(--text-primary) !important;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.stat-number {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* About visual card stack */
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 340px;
}
.visual-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.visual-card:hover {
    transform: translateX(6px);
    border-color: var(--border-accent);
    box-shadow: 0 0 24px rgba(41, 171, 226, 0.15);
}
.visual-card strong {
    display: block;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-primary);
}
.visual-card span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.vc-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 171, 226, 0.12);
    border-radius: var(--radius-sm);
    color: var(--accent-1);
}
.vc-icon svg {
    width: 22px;
    height: 22px;
}
.vc-1 { animation: cardFloat 6s ease-in-out infinite; }
.vc-2 { animation: cardFloat 6s ease-in-out infinite 1.5s; }
.vc-3 { animation: cardFloat 6s ease-in-out infinite 3s; }
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}
.visual-card:hover { animation-play-state: paused; }

/* =====================================================
   7. SERVICES
   ===================================================== */
.services {
    background: var(--bg-primary);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 20% 60%, rgba(94, 53, 177, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(124,58,237,0.1);
}
.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 171, 226, 0.12);
    border: 1px solid rgba(41, 171, 226, 0.2);
    border-radius: var(--radius-sm);
    color: var(--accent-1);
    margin-bottom: 1.5rem;
    transition: background var(--transition), border-color var(--transition);
}
.service-icon svg {
    width: 26px;
    height: 26px;
}
/* Image icon variant — removes tinted bg/border since the image supplies the colour */
.service-icon--img {
    background: transparent;
    border-color: transparent;
    padding: 0;
}
.service-card .service-icon--img,
.service-card:hover .service-icon--img {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
.service-icon--img img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}
.service-card:hover .service-icon {
    background: rgba(41, 171, 226, 0.2);
    border-color: rgba(41, 171, 226, 0.4);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA card */
.service-card-cta {
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.15), rgba(94, 53, 177, 0.12));
    border-color: rgba(41, 171, 226, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.service-card-cta:hover {
    border-color: var(--accent-1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(124,58,237,0.2);
}
.service-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.service-card-cta h3 {
    font-size: 1.25rem;
}
.service-card-cta p {
    font-size: 0.9rem;
    max-width: 220px;
}

/* Service badge pills */
.service-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    border: 1px solid;
    margin-bottom: 0.9rem;
    background: rgba(41, 171, 226, 0.1);
    border-color: rgba(41, 171, 226, 0.3);
    color: #29ABE2;
}

/* AppMonki — red */
.service-card--appmonki .service-badge {
    background: rgba(183, 28, 28, 0.1);
    border-color: rgba(183, 28, 28, 0.35);
    color: #ef5350;
}
.service-card--appmonki .service-icon {
    background: rgba(183, 28, 28, 0.1);
    border-color: rgba(183, 28, 28, 0.2);
    color: #ef5350;
}
.service-card--appmonki:hover {
    border-color: rgba(183, 28, 28, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(183, 28, 28, 0.12);
}
.service-card--appmonki:hover .service-icon {
    background: rgba(183, 28, 28, 0.18);
    border-color: rgba(183, 28, 28, 0.4);
}
.service-card--appmonki::before { background: linear-gradient(135deg, rgba(183, 28, 28, 0.05) 0%, transparent 60%); }

/* WebMonki — purple */
.service-card--webmonki .service-badge {
    background: rgba(94, 53, 177, 0.12);
    border-color: rgba(94, 53, 177, 0.35);
    color: #b39ddb;
}
.service-card--webmonki .service-icon {
    background: rgba(94, 53, 177, 0.1);
    border-color: rgba(94, 53, 177, 0.2);
    color: #9575cd;
}
.service-card--webmonki:hover {
    border-color: rgba(94, 53, 177, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(94, 53, 177, 0.12);
}
.service-card--webmonki:hover .service-icon {
    background: rgba(94, 53, 177, 0.18);
    border-color: rgba(94, 53, 177, 0.4);
}
.service-card--webmonki::before { background: linear-gradient(135deg, rgba(94, 53, 177, 0.05) 0%, transparent 60%); }

/* EngMonki — green */
.service-card--engmonki .service-badge {
    background: rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.35);
    color: #66bb6a;
}
.service-card--engmonki .service-icon {
    background: rgba(46, 125, 50, 0.1);
    border-color: rgba(46, 125, 50, 0.22);
    color: #66bb6a;
}
.service-card--engmonki:hover {
    border-color: rgba(46, 125, 50, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(46, 125, 50, 0.12);
}
.service-card--engmonki:hover .service-icon {
    background: rgba(46, 125, 50, 0.18);
    border-color: rgba(46, 125, 50, 0.4);
}
.service-card--engmonki::before { background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, transparent 60%); }

/* =====================================================
   8. TEAM
   ===================================================== */
.team {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.team::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 75% 50%, rgba(41, 171, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(41, 171, 226, 0.08);
}

/* Photo */
.team-photo-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    flex-shrink: 0;
}
.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-accent);
    display: block;
    position: relative;
    z-index: 1;
}
.team-photo-placeholder {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    z-index: 0;
}
/* When photo fails, hide the broken img and show initials */
.team-photo-fallback .team-photo { display: none; }
.team-photo-fallback .team-photo-placeholder { z-index: 1; }

/* Info */
.team-location {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: -0.5rem;
}
.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}
.team-credential {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-blue);
}
.team-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-blue);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: -0.75rem;
    margin-bottom: 0.25rem;
}
.team-bio {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    text-align: left;
}

/* =====================================================
   9. FOOTER
   ===================================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}
.footer-company {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-nav h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.footer-nav a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--text-primary);
}
.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* =====================================================
   9. RESPONSIVE — TABLET (≤ 900px)
   ===================================================== */
@media (max-width: 900px) {
    :root {
        --section-pad: 5rem 0;
    }

    /* Navbar mobile */
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 80vw);
        background: rgba(14, 14, 22, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.35s var(--ease);
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        width: 100%;
    }
    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        justify-content: center;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-visual {
        order: -1;
    }
    .about-card-stack {
        max-width: 100%;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Team */
    .team-card {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =====================================================
   10. RESPONSIVE — MOBILE (≤ 600px)
   ===================================================== */
@media (max-width: 600px) {
    :root {
        --section-pad: 4rem 0;
    }

    .hero {
        padding: 7rem 1.25rem 4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Services single column */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Team single column */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* About stats wrap */
    .about-stats {
        gap: 1.5rem;
    }

    /* Footer single column */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Scroll hint hidden on small screens */
    .hero-scroll-hint {
        display: none;
    }
}

/* =====================================================
   11. REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
