/* ===== VARIABLES ===== */
:root {
    --orange: #E8751A;
    --orange-light: #F28C38;
    --orange-dark: #C9600E;
    --orange-glow: rgba(232, 117, 26, 0.15);
    --orange-glow-strong: rgba(232, 117, 26, 0.3);
    --grey-900: #1A1A1A;
    --grey-800: #2A2A2A;
    --grey-700: #3D3D3D;
    --grey-600: #555555;
    --grey-500: #777777;
    --grey-400: #999999;
    --grey-300: #BBBBBB;
    --grey-200: #E0E0E0;
    --grey-100: #F2F2F2;
    --grey-50: #F8F8F8;
    --white: #FFFFFF;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-orange: 0 4px 30px rgba(232, 117, 26, 0.2);
}

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

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

body {
    font-family: var(--font-main);
    color: var(--grey-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--transition);
}

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: var(--orange);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--grey-900);
    line-height: 1.15;
    margin-bottom: 24px;
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-900);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: contrast(1.1) brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.4) 40%,
        rgba(26, 26, 26, 0.6) 70%,
        rgba(26, 26, 26, 0.95) 100%
    );
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-logo-mark {
    margin-bottom: 24px;
}

.hero-logo-mark img {
    height: 480px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 8px 40px rgba(0,0,0,0.5));
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tagline-word {
    display: inline-block;
}

.hero-line.accent {
    color: var(--orange);
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.6);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 40px rgba(232, 117, 26, 0.35);
}

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

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number, .stat-text {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-text {
    font-size: 1.5rem;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 40px;
}

.about-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--grey-200);
    border-radius: 24px;
    transform: rotate(-3deg);
}

.about-shape::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 2px solid var(--orange);
    border-radius: 24px;
    transform: rotate(6deg);
    opacity: 0.3;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.icon-cell {
    background: var(--grey-50);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s var(--transition);
    border: 1px solid var(--grey-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.icon-cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.icon-cell svg {
    width: 44px;
    height: 44px;
    color: var(--orange);
    margin-bottom: 12px;
    flex-shrink: 0;
}

.icon-cell span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey-700);
    line-height: 1.3;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--grey-600);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--grey-500);
    margin-bottom: 32px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--orange-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.highlight-icon svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
}

.highlight strong {
    display: block;
    font-size: 0.95rem;
    color: var(--grey-900);
    margin-bottom: 2px;
}

.highlight span {
    font-size: 0.85rem;
    color: var(--grey-500);
}

/* ===== SERVICES / CAPABILITIES ===== */
.services {
    padding: 120px 0;
    background: var(--grey-50);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--grey-500);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    border: 1px solid var(--grey-200);
    transition: all 0.4s var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}

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

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

.service-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--grey-300);
    margin-bottom: 24px;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--orange-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s var(--transition);
}

.service-card:hover .service-icon {
    background: var(--orange);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--orange);
    transition: color 0.3s var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 16px;
}

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

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--grey-500);
    line-height: 1.7;
    padding: 6px 0 6px 20px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.6;
}

/* ===== PERSONNEL SECTION ===== */
.personnel {
    padding: 120px 0;
    background: var(--white);
}

.personnel-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
}

.personnel-roles h3,
.personnel-features h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: 24px;
}

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

.role-item {
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s var(--transition);
}

.role-item:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.role-item svg {
    width: 36px;
    height: 36px;
    color: var(--orange);
    margin-bottom: 10px;
}

.role-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--grey-800);
    margin-bottom: 4px;
}

.role-item small {
    display: block;
    font-size: 0.78rem;
    color: var(--grey-400);
    line-height: 1.5;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: var(--orange-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--orange);
}

.feature-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--grey-900);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--grey-500);
    line-height: 1.6;
    margin: 0;
}

/* ===== TRACK RECORD ===== */
.track-record {
    padding: 120px 0;
    background: var(--grey-900);
}

.track-record .section-label {
    color: var(--orange);
}

.track-record h2 {
    color: var(--white);
}

.track-record .section-header p {
    color: rgba(255,255,255,0.5);
}

.track-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.track-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s var(--transition);
}

.track-card:hover {
    border-color: rgba(232, 117, 26, 0.4);
    background: rgba(232, 117, 26, 0.05);
    transform: translateY(-4px);
}

.track-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 14px;
    background: rgba(232, 117, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-icon svg {
    width: 30px;
    height: 30px;
    color: var(--orange);
}

.track-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
    line-height: 1.3;
}

.track-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.specialty-tag {
    padding: 12px 24px;
    border: 1px solid rgba(232, 117, 26, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    background: rgba(232, 117, 26, 0.05);
    transition: all 0.3s var(--transition);
    cursor: default;
}

.specialty-tag:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
    background: var(--grey-50);
}

.contact-details-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
    background: var(--grey-900);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    overflow: hidden;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.contact-details-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(232, 117, 26, 0.08), transparent 70%);
    pointer-events: none;
}

.contact-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 16px;
    text-decoration: none;
    transition: all 0.3s var(--transition);
    position: relative;
    z-index: 1;
}

.contact-detail + .contact-detail {
    border-left: 1px solid rgba(255,255,255,0.08);
}

a.contact-detail:hover {
    background: rgba(232, 117, 26, 0.08);
}

a.contact-detail:hover span {
    color: var(--orange);
}

.contact-detail svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    max-width: 22px;
    flex-shrink: 0;
    color: var(--orange);
    transition: color 0.2s var(--transition);
}

.contact-detail > span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-align: center;
    transition: color 0.2s var(--transition);
}

@media (max-width: 600px) {
    .contact-details-row {
        flex-wrap: wrap;
    }
    .contact-detail {
        flex: 1 1 45%;
        padding: 20px 12px;
    }
    .contact-detail + .contact-detail {
        border-left: none;
    }
}

/* ===== DIRECTORS ===== */
.directors-grid {
    display: flex;
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
}

.director-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--grey-900);
    border-radius: 16px;
    padding: 36px 32px;
    border: none;
    transition: all 0.3s var(--transition);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(232, 117, 26, 0.12), transparent 60%);
    pointer-events: none;
}

.director-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.director-photo {
    width: 160px;
    height: 200px;
    min-width: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--orange);
    background: var(--grey-800);
    position: relative;
    z-index: 1;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.director-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.director-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.director-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.director-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.director-info p + p {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .directors-grid {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .director-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    .director-photo {
        width: 120px;
        height: 150px;
        min-width: 120px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--grey-900);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .personnel-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-card {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .nav-links a {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero {
        align-items: flex-start;
        padding-top: 140px;
    }

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

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero h1 {
        flex-direction: column;
        gap: 4px;
    }

    .hero-logo-mark {
        margin-top: 0;
    }

    .hero-logo-mark img {
        height: 200px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

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

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 28px 24px;
    }

    .track-card {
        padding: 24px 20px;
    }

    .role-item {
        padding: 16px;
    }
}
