/* ==================================================
   ABOUT PAGE
================================================== */

/* ==================================================
   1. ABOUT HERO
================================================== */

.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 560px;
    padding: 120px 0;

    background:
        linear-gradient(
            rgba(20, 30, 50, 0.64),
            rgba(20, 30, 50, 0.64)
        ),
        url("images/home_hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: var(--ns-white);
    text-align: center;
}

.about-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-hero-label,
.about-label {
    display: inline-block;
    margin-bottom: 14px;

    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-hero h1 {
    margin-bottom: 24px;

    color: var(--ns-white);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
}

.about-hero p {
    max-width: 720px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    line-height: 1.6;
}


/* ==================================================
   2. ABOUT STORY
================================================== */

.about-story {
    padding: 100px 0;
    background: var(--ns-light);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.about-story-image img {
    width: 100%;
    height: 540px;

    object-fit: cover;
    object-position: center;

    border-radius: 12px;
    box-shadow: var(--ns-shadow);
}

.about-story-text {
    max-width: 680px;
}

.about-story-text h2 {
    margin-bottom: 24px;

    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.about-story-text p {
    margin-bottom: 18px;

    color: var(--ns-blue);
    font-size: 17px;
    line-height: 1.6;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}


/* RESPONSIVE HERO AND STORY */

@media (max-width: 900px) {

    .about-hero {
        min-height: 500px;
        padding: 100px 0;
    }

    .about-hero h1 {
        font-size: 44px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-story-image img {
        height: 460px;
    }

    .about-story-text {
        max-width: 760px;
    }

    .about-story-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {

    .about-hero {
        min-height: 440px;
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-hero-label,
    .about-label {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .about-story {
        padding: 70px 0;
    }

    .about-story-image img {
        height: 340px;
    }

    .about-story-text h2 {
        font-size: 30px;
    }

    .about-story-text p {
        font-size: 16px;
    }
}

/* ==================================================
   3. ABOUT SERVICES AND LICENCES
================================================== */

.about-services {
    padding: 100px 0;
    background: var(--ns-white);
}

.about-services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 70px;
    align-items: start;
}

.about-services-content h2 {
    margin-bottom: 36px;

    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 42px;
}

.about-services-grid span {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: var(--ns-blue);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.about-services-grid span::before {
    content: "✓";
    flex-shrink: 0;

    color: var(--ns-red);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}


/* LICENCE PANEL */

.about-licence-panel {
    padding: 34px 32px;

    background: var(--ns-light);
    border-left: 5px solid var(--ns-red);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.about-licence-panel .about-label {
    margin-bottom: 24px;
}

.about-licence-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(47, 57, 118, 0.14);
}

.about-licence-item:first-of-type {
    padding-top: 0;
}

.about-licence-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.about-licence-item strong {
    display: block;

    color: var(--ns-blue);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.about-licence-item span {
    display: block;
    margin-top: 5px;

    color: var(--ns-red);
    font-size: 15px;
    font-weight: 800;
}


/* ==================================================
   4. ABOUT FINAL CTA
================================================== */

.about-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.60),
            rgba(255, 255, 255, 0.60)
        ),
        url("images/home_cta.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
}

.about-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-cta h2 {
    margin-bottom: 30px;

    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.about-cta-primary,
.about-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 28px;
    border-radius: 6px;

    font-size: 15px;
    font-weight: 800;
    text-align: center;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.about-cta-primary {
    background: var(--ns-red);
    color: var(--ns-white);
}

.about-cta-primary:hover {
    background: var(--ns-red-dark);
    transform: translateY(-2px);
}

.about-cta-secondary {
    border: 2px solid var(--ns-blue);
    color: var(--ns-blue);
}

.about-cta-secondary:hover {
    background: var(--ns-blue);
    color: var(--ns-white);
    transform: translateY(-2px);
}


/* SERVICES AND CTA RESPONSIVE */

@media (max-width: 900px) {

    .about-services-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-licence-panel {
        width: 100%;
        max-width: 560px;
    }

    .about-services-content h2,
    .about-cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {

    .about-services {
        padding: 70px 0;
    }

    .about-services-content h2,
    .about-cta h2 {
        font-size: 30px;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-licence-panel {
        padding: 28px 24px;
    }

    .about-cta {
        padding: 70px 0;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-primary,
    .about-cta-secondary {
        width: 100%;
    }
}