/* ── Google Fonts ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

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

:root {
    --navy: #0a1628;
    --navy2: #112240;
    --navy3: #1d3461;
    --blue: #2563eb;
    --blue-lt: #3b82f6;
    --blue-pale: #eff6ff;
    --gold: #f59e0b;
    --white: #ffffff;
    --grey: #f8fafc;
    --border: #e2e8f0;
    --text: #1e293b;
    --muted: #64748b;
    --radius: 10px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ── Scroll Reveal ────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* ── Navigation ───────────────────────────── */
nav {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 80px;
    max-width: 1140px;
    margin: 0 auto;
}

.nav-logo img {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--blue-lt);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    left: 16px;
    right: 16px;
}

.nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--blue-lt) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ─────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy2) 50%, var(--navy3) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 120px 28px 80px;
    position: relative;
    overflow: hidden;
}

/* Animated background dots */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: fadeIn 2s ease;
}

/* Glow orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: slideRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #60a5fa;
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeUp 0.9s 0.15s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero h1 span {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.75;
    animation: fadeUp 0.9s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── Buttons ──────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: var(--blue-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow);
}

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

/* ── Sections ─────────────────────────────── */
section {
    padding: 96px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 52px;
}

/* Alternating bg */
.section-alt {
    background: var(--grey);
}

.section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    color: var(--white);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-sub {
    color: rgba(255, 255, 255, 0.65);
}

.section-dark .section-label {
    color: #93c5fd;
}

.section-dark .section-label::before {
    background: #93c5fd;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #a78bfa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-4deg);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--blue);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── Stats ────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Stat counter animation */
.stat-number[data-target] {
    transition: none;
}

/* ── Industries ───────────────────────────── */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.industry-tag {
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.industry-tag:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-pale);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* ── Vision Items ─────────────────────────── */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.vision-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.vision-item:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    transform: translateX(4px);
}

.vision-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: linear-gradient(135deg, var(--blue), #a78bfa);
    border-radius: 50%;
    margin-top: 7px;
}

.vision-item p {
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 500;
}

/* ── About Prose ──────────────────────────── */
.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-prose h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 10px;
    padding-left: 14px;
    border-left: 3px solid var(--blue);
}

.about-prose p {
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.8;
}

.about-aside {
    position: sticky;
    top: 90px;
}

.about-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    border-radius: 20px;
    padding: 36px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.about-card .stat-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    text-align: left;
}

.about-card .stat-number {
    font-size: 2rem;
    color: #60a5fa;
}

.about-card .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Contact ──────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.2);
}

.contact-item h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.65;
}

.contact-item a {
    transition: var(--transition);
}

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

.contact-hours {
    background: var(--navy);
    color: var(--white);
    border-radius: 14px;
    padding: 22px 26px;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-hours strong {
    color: #93c5fd;
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Form ─────────────────────────────────── */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #cbd5e1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 6px;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.form-submit:hover {
    background: linear-gradient(135deg, var(--blue-lt) 0%, var(--blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    color: #166534;
    font-weight: 600;
    margin-top: 16px;
    animation: scaleIn 0.4s ease both;
}

/* ── CTA Banner ───────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
    color: var(--white);
    text-align: center;
    padding: 96px 28px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    font-size: 1.05rem;
    position: relative;
}

/* ── Events ───────────────────────────────── */
.events-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 24px;
    transition: var(--transition);
    border-left: 4px solid var(--blue);
}

.events-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(6px);
}

.events-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.events-card p {
    color: var(--muted);
    line-height: 1.8;
}

/* ── Page Header ──────────────────────────── */
.page-header {
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy2) 100%);
    color: var(--white);
    padding: 130px 28px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    position: relative;
    animation: fadeUp 0.8s ease both;
}

.page-header p {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 14px;
    font-size: 1.05rem;
    position: relative;
    animation: fadeUp 0.8s 0.15s ease both;
}

/* ── Footer ───────────────────────────────── */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 56px 28px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
}

.footer-logo img {
    height: 100px;
    opacity: 0.9;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.87rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 28px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    max-width: 1140px;
    margin: 0 auto;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-aside {
        position: static;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(12px);
        padding: 20px 28px 28px;
        gap: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.open {
        display: flex;
        animation: fadeIn 0.2s ease;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero {
        min-height: auto;
        padding: 110px 28px 72px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }
}
