:root {
    --bg-color: #000000;
    --surface-color: #111111;
    --surface-light: #1c1c1e;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --accent-color: #ffffff;
    --gradient-glow: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);

    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --section-padding: 15vh 0;
    --container-width: 1200px;
    --container-padding: 0 5vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
}

h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1.5rem;
}

h4 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.lead {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.4;
}

.highlight {
    color: var(--accent-color);
    font-weight: 500;
}

.highlight-white {
    color: #fff;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.btn-primary {
    display: inline-block;
    background-color: var(--text-primary);
    color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #dddddd;
    opacity: 1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:not(.btn-connect) {
    color: var(--text-secondary);
}

.nav-links a:not(.btn-connect):hover {
    color: #fff;
}

.btn-connect {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.btn-connect:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, var(--surface-light) 0%, var(--bg-color) 70%);
    z-index: -1;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-main-logo {
    opacity: 0;
    transform: translateY(50px);
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: 0;
    background: -webkit-linear-gradient(top, #fff, #86868b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description {
    max-width: 700px;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-secondary), transparent);
}

.intro {
    padding: var(--section-padding);
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.intro-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.intro-text {
    max-width: 900px;
}

.ceo-profile {
    padding: var(--section-padding);
    background-color: var(--surface-color);
    position: relative;
    overflow: hidden;
}

.profile-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.profile-image-wrapper {
    flex: 1;
    position: relative;
    height: 80vh;
    min-height: 600px;
    border-radius: 20px;
}

.image-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.parallax-img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center 20%;
    position: absolute;
    top: -10%;
    left: -10%;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    transition: filter 0.5s ease;
}

.image-mask:hover .parallax-img {
    filter: grayscale(0%) contrast(1.1) brightness(1);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: var(--gradient-glow);
    border-radius: 20px;
    z-index: -1;
    filter: blur(40px);
}

.founder-info {
    text-align: center;
    margin-top: 2rem;
}

.founder-name {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

.profile-text {
    flex: 1;
}

.mission {
    padding: var(--section-padding);
    position: relative;
    background-color: var(--bg-color);
    overflow: hidden;
}

.mission-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom, var(--surface-light) 0%, transparent 80%);
    opacity: 0.3;
}

.mission-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.mission-text-block h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.mission-text-block p {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.5;
}

.mission-statement {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-statement h4 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-statement h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--text-secondary);
}

.mission-statement p {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.2rem;
}

.mission-statement .small-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 1rem;
    margin-bottom: 0;
}

.connect {
    padding: 10vh 0 5vh 0;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 15vh;
}

.connect-motto h2 {
    margin-bottom: 1rem;
    color: #fff;
}

.connect-motto ul {
    list-style: none;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.connect-motto li {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-20px);
}

.connect-motto li:last-child {
    color: #fff;
}

.connect-action p {
    font-size: 1.2rem;
    max-width: 500px;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
}

.footer-socials h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.footer-socials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-socials a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #ffffff;
}

.company-name {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.address-lines {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.contact-number {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

@media (max-width: 992px) {
    .profile-flex {
        flex-direction: column;
        gap: 3rem;
    }

    .profile-image-wrapper {
        min-height: 500px;
        width: 100%;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .connect-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .connect-action {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-content-wrapper {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
}

.business-overview {
    padding: var(--section-padding);
    background-color: var(--surface-color);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.text-center {
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
}

.stat-card {
    background: var(--surface-light);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-number {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
    background: -webkit-linear-gradient(top, #fff, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.industries-section h3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 1.5rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.industry-tag:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.training {
    padding: var(--section-padding);
    position: relative;
    background-color: var(--bg-color);
    overflow: hidden;
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
    align-items: center;
}

.training-text-block h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.training-text-block p {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.5;
}

.training-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-box {
    background: var(--surface-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {

    .training-content,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .training-features-grid {
        grid-template-columns: 1fr;
    }
}