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

:root {
    --black:      #080808;
    --dark:       #101010;
    --dark-grey:  #181818;
    --mid-grey:   #282828;
    --grey:       #a7a7a7;
    --light-grey: #808080;
    --silver:     #a8a8a8;
    --off-white:  #e0e0e0;
    --white:      #ffffff;
    --border:     rgba(255,255,255,0.07);
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--grey); border-radius: 2px; }
::selection { background: var(--grey); color: var(--white); }

/* ============================================================
   UTILITY
============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #242424, #979797);
}

.section-dark {
    background: linear-gradient(to top, #242424, #979797);
}

.section-header {
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--silver);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.section-title span { color: var(--silver); }

.section-desc {
    font-size: 16px;
    color: var(--silver);
    line-height: 1.8;
    max-width: 560px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { 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; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--black);
    padding: 15px 32px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 15px 32px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(8,8,8,0.93);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-box {
    width: 123px; height: 123px;
    background: transparent;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.logo-box svg { width: 22px; height: 22px; }

.brand-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--white);
}
.logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--silver);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--silver);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--white);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--white) !important;
    color: var(--black) !important;
    padding: 10px 22px !important;
    border-radius: 3px !important;
    font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--off-white) !important; }

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: color 0.3s ease, transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.mobile-menu.active a { transform: translateY(0); opacity: 1; }
.mobile-menu.active a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu a:hover { color: var(--silver); }

.mobile-cta {
    background: var(--white) !important;
    color: var(--black) !important;
    padding: 14px 40px !important;
    border-radius: 3px !important;
    font-size: 14px !important;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #242424, #979797);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    z-index: 0;
}

.hero-bg-radial {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 15% 50%, rgba(90,90,90,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 85% 20%, rgba(60,60,60,0.08) 0%, transparent 60%);
    z-index: 0;
}

.hero-bg-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black), transparent);
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 50%;
    z-index: 0;
}
.hero-shape-1 {
    width: 600px; height: 600px;
    top: -200px; right: -200px;
    animation: rotateSlow 30s linear infinite;
}
.hero-shape-2 {
    width: 300px; height: 300px;
    bottom: 100px; left: -100px;
    animation: rotateSlow 20s linear infinite reverse;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    width: 100%;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease) forwards 0.2s;
}

.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-badge span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver);
}

/* Hero Title */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(56px, 10vw, 130px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -4px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease) forwards 0.4s;
}

.line-grey {
    -webkit-text-stroke: 1px rgb(0, 0, 0);
    color: transparent;
    display: block;
}
.line-white   { color: var(--white); display: block; }
.line-outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.25);
    color: transparent;
    display: block;
}

/* Hero Desc */
.hero-desc {
    max-width: 520px;
    font-size: 16px;
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease) forwards 0.6s;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease) forwards 0.8s;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease) forwards 1s;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--light-grey);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease) forwards 1.2s;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--grey), transparent);
    animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Vision Mission Cards */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vm-card {
    background: var(--dark-grey);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    transition: var(--transition);
}
.vm-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    background: var(--mid-grey);
}

.vm-wide { grid-column: 1 / -1; }

.vm-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--silver);
}

.vm-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.vm-desc {
    font-size: 13px;
    color: var(--light-grey);
    line-height: 1.7;
}

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--dark-grey);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}
.service-card:hover { 
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-6px);
    background: var(--mid-grey);
}
.service-card:hover::before { transform: scaleX(1); }

.service-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 20px;
}

.service-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--silver);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.service-list li {
    font-size: 13px;
    color: var(--light-grey);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}
.service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--grey);
    font-size: 11px;
}

.service-tag {
    display: inline-block;
    margin-top: 24px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey);
    align-self: flex-start;
}

/* ============================================================
   SUBSIDIARIES
============================================================ */
.sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sub-card {
    background: var(--dark-grey);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}
.sub-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-6px);
}

.sub-card-inner { padding: 36px 32px; }

.sub-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 20px;
}

.sub-logo {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--silver);
    margin-bottom: 24px;
    transition: var(--transition);
}
.sub-card:hover .sub-logo {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.sub-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 20px;
}

.sub-desc {
    font-size: 13px;
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 24px;
}

.sub-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--light-grey);
}

.sub-features li svg {
    color: var(--silver);
    flex-shrink: 0;
}

/* ============================================================
   TEAM
============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--dark-grey);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.team-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    background: var(--mid-grey);
}

.team-card:hover::after { transform: scaleX(1); }

.team-card.featured {
    grid-column: span 2;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--mid-grey);
    border-color: rgba(255,255,255,0.12);
}

.team-avatar {
    position: relative;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.team-card.featured .team-avatar {
    margin-bottom: 0;
}

.avatar-placeholder {
    width: 64px;
    height: 64px;
    background: var(--grey);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.team-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.team-card.featured .avatar-placeholder {
    width: 80px;
    height: 80px;
    font-size: 22px;
    background: var(--grey);
}

.team-card.featured .team-photo {
    width: 80px;
    height: 80px;
}

.team-card:hover .team-photo {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 10px 24px rgba(0,0,0,0.45), 0 0 0 4px rgba(255,255,255,0.06);
}

.team-badge-role {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--white);
    color: var(--black);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 100px;
}

.team-info { flex: 1; }

.team-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.team-card.featured .team-name {
    font-size: 20px;
}

.team-role {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 12px;
}

.team-desc {
    font-size: 13px;
    color: var(--light-grey);
    line-height: 1.7;
}

/* ============================================================
   EQUIPMENT
============================================================ */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.equip-card {
    background: var(--dark-grey);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.equip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.03), transparent 60%);
    pointer-events: none;
}

.equip-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    background: var(--mid-grey);
}

.equip-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--silver);
    margin-bottom: 20px;
    transition: var(--transition);
}

.equip-card:hover .equip-icon {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.equip-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.equip-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.equip-list li {
    font-size: 13px;
    color: var(--light-grey);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}

.equip-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--grey);
    font-size: 11px;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
    background: var(--dark-grey);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-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: 48px 48px;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 15px;
    color: var(--light-grey);
    line-height: 1.7;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-icon {
    width: 44px; height: 44px;
    background: var(--dark-grey);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--silver);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    border-color: rgba(255,255,255,0.2);
    background: var(--mid-grey);
    color: var(--white);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
}

.contact-value {
    font-size: 14px;
    color: var(--silver);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.6;
}

.contact-value:hover { color: var(--white); }

/* Contact Form */
.contact-form-wrap {
    background: var(--dark-grey);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
}

/* Contact Social */
.contact-social-wrap {
    background: var(--dark-grey);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
}

.contact-social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.contact-social-desc {
    font-size: 14px;
    color: var(--light-grey);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    background: var(--mid-grey);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.contact-social-btn svg {
    flex-shrink: 0;
}

.contact-social-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.28);
    filter: brightness(1.05);
}

/* Platform brand styles */
.contact-social-btn.social-tiktok {
    background: #0f0f0f;
    border-color: rgba(255, 0, 80, 0.55);
    box-shadow: -2px 0 0 #25F4EE, 2px 0 0 #FE2C55;
    color: #ffffff;
}

.contact-social-btn.social-instagram {
    background: linear-gradient(135deg, #F58529, #DD2A7B 45%, #8134AF 75%, #515BD4);
    border-color: rgba(255,255,255,0.25);
    color: #ffffff;
}

.contact-social-btn.social-facebook {
    background: #1877F2;
    border-color: #1877F2;
    color: #ffffff;
}

.contact-social-btn.social-youtube {
    background: #FF0000;
    border-color: #FF0000;
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--silver);
}

.form-input {
    background: var(--mid-grey);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 13px 16px;
    color: var(--white);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-input::placeholder { color: var(--grey); }

.form-input:focus {
    border-color: rgba(255,255,255,0.3);
    background: var(--dark-grey);
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23808080' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--dark-grey);
    color: var(--white);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 13px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--off-white);
}

.form-success.show { display: flex; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--dark); border-top: 1px solid var(--border); }

.footer-top { padding: 72px 0; }

.footer-top-inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-brand-desc {
    font-size: 13px;
    color: var(--light-grey);
    line-height: 1.8;
    margin-top: 20px;
    max-width: 280px;
}

.footer-group-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: var(--light-grey);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy {
    font-size: 12px;
    color: var(--grey);
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px; height: 44px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 6px;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
.whatsapp-float {
    position: fixed;
    right: 32px;
    bottom: 88px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    z-index: 901;
    box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    background: #1ebe5d;
    box-shadow: 0 18px 36px rgba(0,0,0,0.4);
}

.whatsapp-float:focus-visible {
    outline: 2px solid rgba(255,255,255,0.9);
    outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-card.featured { grid-column: span 2; }
    .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }

    .navbar { padding: 14px 0; }
    .navbar.scrolled { padding: 10px 0; }

    .logo-box {
        width: 78px;
        height: 78px;
    }

    .brand-logo-img {
        width: 74px;
        height: 74px;
    }

    .logo-name { font-size: 14px; }
    .logo-sub { font-size: 8px; letter-spacing: 2px; }

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

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

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

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions { justify-content: center; }

    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }
}

@media (max-width: 1366px) {
    .nav-links { display: none !important; }
    .hamburger { display: flex; }

    .hero-title {
        font-size: clamp(44px, 14vw, 80px);
        letter-spacing: -2px;
    }

    .hero-content { padding: 120px 0 80px; }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

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

    .team-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }

    .vm-grid { grid-template-columns: 1fr; }
    .vm-wide { grid-column: 1; }

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

    .contact-form-wrap { padding: 28px 20px; }
    .contact-social-wrap { padding: 28px 20px; }
    .contact-social-grid { grid-template-columns: 1fr; }

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .hero-scroll-indicator { display: none; }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 76px;
        width: 52px;
        height: 52px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 40px);
        letter-spacing: -1px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 64px 0; }

    .navbar { padding: 10px 0; }
    .navbar.scrolled { padding: 8px 0; }

    .logo-box {
        width: 64px;
        height: 64px;
    }

    .brand-logo-img {
        width: 60px;
        height: 60px;
    }

    .logo-name { font-size: 13px; }
    .logo-sub { font-size: 7px; letter-spacing: 1.5px; }

    .back-to-top {
        right: 14px;
        bottom: 18px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 72px;
    }

    .hero-title {
        font-size: clamp(38px, 13vw, 60px);
        letter-spacing: -1.5px;
    }

    .hero-badge span { font-size: 9px; letter-spacing: 1px; }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .stat-number { font-size: 30px; }

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

    .sub-card-inner { padding: 24px 20px; }

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

    .team-card { padding: 20px 16px; }

    .cta-banner { padding: 56px 0; }

    .btn-primary,
    .btn-secondary {
        padding: 13px 24px;
        font-size: 12px;
    }

    .about-actions {
        flex-direction: column;
    }

    .about-actions .btn-primary,
    .about-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-brand-desc { max-width: 100%; }

    .hero-scroll-indicator { display: none; }

    .mobile-menu { gap: 24px; }

    .mobile-menu a { font-size: clamp(18px, 5vw, 26px); }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .logo-name { font-size: 14px; }
    .logo-sub { font-size: 8px; }

    .section-title { font-size: 26px; }
}