/* =========================================================
   ARANIK V2.0
   GLOBAL DESIGN SYSTEM
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111827;
    line-height: 1.6;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --black: #0b0f14;

    --dark: #111827;

    --dark-soft: #1a222d;

    --gray-900: #202833;

    --gray-700: #4b5563;

    --gray-500: #6b7280;

    --gray-300: #d1d5db;

    --gray-200: #e5e7eb;

    --gray-100: #f3f4f6;

    --white: #ffffff;

    --accent: #d71920;

    --accent-dark: #b51218;

    --max-width: 1240px;

    --section-space: 110px;

    --radius: 4px;

    --transition: 0.25s ease;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin-inline: auto;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: relative;

    width: 100%;

    background: var(--white);

    border-bottom: 1px solid var(--gray-200);

    z-index: 1000;

}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* LOGO */

.logo {

    font-size: 27px;

    font-weight: 900;

    letter-spacing: 3px;

    color: var(--black);

    white-space: nowrap;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 25px;

}


.main-nav a {

    font-size: 14px;

    font-weight: 600;

    color: var(--gray-700);

    transition:
        color var(--transition),
        background var(--transition);

}


.main-nav a:hover {

    color: var(--black);

}


.main-nav a.current {

    color: var(--accent);

}


.main-nav .nav-button {

    padding: 11px 18px;

    color: var(--white);

    background: var(--black);

    border-radius: var(--radius);

}


.main-nav .nav-button:hover {

    color: var(--white);

    background: var(--accent);

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-button {

    display: none;

    width: 44px;

    height: 44px;

    border: 1px solid var(--gray-300);

    background: var(--white);

    color: var(--black);

    cursor: pointer;

    font-size: 21px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(11,15,20,0.82) 0%,
            rgba(11,15,20,0.60) 55%,
            rgba(11,15,20,0.25) 100%
        );

    color: var(--white);

    overflow: hidden;

}


.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent 0%,
            rgba(215,25,32,0.10) 100%
        );

    pointer-events: none;

}


.hero-content {

    position: relative;

    z-index: 2;

}


.hero-text {

    max-width: 850px;

}


.eyebrow {

    margin-bottom: 18px;

    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

}


.hero h1 {

    max-width: 900px;

    font-size: clamp(
        48px,
        7vw,
        88px
    );

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 900;

}


.hero h1 span {

    display: block;

    color: var(--gray-300);

}


.hero-description {

    max-width: 680px;

    margin-top: 30px;

    color: #d1d5db;

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding: var(--section-space) 0;

}


.section:nth-of-type(even) {

    background: #f8f9fa;

}


.section-heading {

    max-width: 820px;

    margin-bottom: 55px;

}


.section-heading h2 {

    margin-bottom: 20px;

    color: var(--black);

    font-size: clamp(
        34px,
        5vw,
        58px
    );

    line-height: 1.05;

    letter-spacing: -2px;

}


.section-heading p {

    color: var(--gray-700);

    font-size: 17px;

    line-height: 1.85;

}


/* =========================================================
   FEATURE GRID
========================================================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

}


.feature-card {

    position: relative;

    min-height: 270px;

    padding: 35px;

    background: var(--white);

    border:
        1px solid
        var(--gray-200);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);

}


.feature-card:hover {

    transform: translateY(-5px);

    border-color: var(--gray-300);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,0.08);

}


.feature-number {

    display: block;

    margin-bottom: 45px;

    color: var(--accent);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

}


.feature-card h3 {

    margin-bottom: 14px;

    color: var(--black);

    font-size: 23px;

    line-height: 1.2;

}


.feature-card p {

    color: var(--gray-700);

    line-height: 1.8;

}


.text-link {

    display: inline-block;

    margin-top: 25px;

    color: var(--accent);

    font-size: 14px;

    font-weight: 700;

}


.text-link:hover {

    color: var(--accent-dark);

}


/* =========================================================
   BUTTONS
========================================================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding:
        0 24px;

    border:
        1px solid
        transparent;

    border-radius: var(--radius);

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);

}


.button:hover {

    transform: translateY(-2px);

}


.button-primary {

    color: var(--white);

    background: var(--accent);

}


.button-primary:hover {

    background: var(--accent-dark);

}


.button-light {

    color: var(--black);

    background: var(--white);

}


.button-light:hover {

    color: var(--white);

    background: var(--accent);

}


.button-outline {

    color: var(--black);

    background: transparent;

    border-color: var(--gray-300);

}


.button-outline:hover {

    color: var(--white);

    background: var(--black);

    border-color: var(--black);

}


/* =========================================================
   CTA
========================================================= */

.cta-section {

    padding: 85px 0;

    color: var(--white);

    background: var(--black);

}


.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.cta-section .eyebrow {

    margin-bottom: 12px;

}


.cta-section h2 {

    max-width: 750px;

    font-size: clamp(
        32px,
        5vw,
        55px
    );

    line-height: 1.05;

    letter-spacing: -2px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 70px;

}


.contact-info h2 {

    margin-bottom: 20px;

    font-size: 46px;

    line-height: 1.05;

    letter-spacing: -2px;

}


.contact-info > p {

    color: var(--gray-700);

    line-height: 1.8;

}


.contact-details {

    margin-top: 45px;

}


.contact-item {

    padding:
        20px 0;

    border-bottom:
        1px solid
        var(--gray-200);

}


.contact-item strong {

    display: block;

    margin-bottom: 5px;

    color: var(--black);

}


.contact-item p {

    color: var(--gray-700);

}


/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {

    padding: 40px;

    background: #f8f9fa;

    border:
        1px solid
        var(--gray-200);

}


.form-group {

    margin-bottom: 22px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    color: var(--black);

    font-size: 14px;

    font-weight: 700;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 14px 15px;

    color: var(--black);

    background: var(--white);

    border:
        1px solid
        var(--gray-300);

    border-radius: var(--radius);

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition);

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--accent);

    box-shadow:
        0 0 0 3px
        rgba(215,25,32,0.10);

}


.form-group textarea {

    resize: vertical;

}


/* =========================================================
   LEGAL
========================================================= */

.legal-content {

    max-width: 900px;

}


.legal-content h2 {

    margin-top: 55px;

    margin-bottom: 16px;

    color: var(--black);

}


.legal-content p {

    max-width: 800px;

    color: var(--gray-700);

    line-height: 1.9;

}


.legal-actions {

    display: flex;

    gap: 16px;

    flex-wrap: wrap;

    margin-top: 55px;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding: 55px 0;

    color: #9ca3af;

    background: #080b0f;

}


.footer-inner {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 40px;

}


.footer-logo {

    margin-bottom: 10px;

    color: var(--white);

    font-size: 24px;

    font-weight: 900;

    letter-spacing: 3px;

}


.site-footer p {

    margin-bottom: 22px;

}


.footer-links {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}


.footer-links a {

    color: #d1d5db;

    font-size: 13px;

}


.footer-links a:hover {

    color: var(--white);

}
/* =========================================================
   HERO V2
========================================================= */

.hero-v2 {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white);

    background: var(--black);

}


.hero-v2-media {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-v2-media img {

    width: 100%;

    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: center;

}


.hero-v2-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(11,15,20,0.96) 0%,
            rgba(11,15,20,0.78) 42%,
            rgba(11,15,20,0.30) 100%
        );

}


.hero-v2-content {

    position: relative;

    z-index: 2;

    width: 100%;

}


.hero-v2-text {

    max-width: 760px;

}


.hero-v2 .hero-description {

    max-width: 650px;

}


.hero-v2-actions {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 35px;

}


.hero-v2-actions .button {

    min-width: 170px;

    min-height: 52px;

    padding: 0 24px;

    white-space: nowrap;

}


/* =========================================================
   HERO V2 MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero-v2 {

        min-height: 620px;

        align-items: center;

    }


    .hero-v2-media {

        position: absolute;

        inset: 0;

    }


    .hero-v2-media img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position: center;

    }


    .hero-v2-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(11,15,20,0.96) 0%,
                rgba(11,15,20,0.78) 55%,
                rgba(11,15,20,0.45) 100%
            );

    }


    .hero-v2-text {

        max-width: 100%;

    }


    .hero-v2-actions {

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        margin-top: 28px;

    }


    .hero-v2-actions .button {

        width: 100%;

        min-width: 0;

    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-nav {

        gap: 15px;

    }

    .main-nav a {

        font-size: 13px;

    }

    .feature-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 850px) {

    .header-inner {

        min-height: 72px;

    }


    .main-nav {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px 24px 25px;

        background: var(--white);

        border-bottom:
            1px solid
            var(--gray-200);

        box-shadow:
            0 15px 30px
            rgba(0,0,0,0.08);

    }


    .main-nav.active {

        display: flex;

    }


    .main-nav a {

        padding: 13px 0;

        border-bottom:
            1px solid
            var(--gray-100);

    }


    .main-nav .nav-button {

        margin-top: 10px;

        padding: 13px 18px;

        text-align: center;

    }


    .menu-button {

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .hero {

        min-height: 520px;

    }


    .contact-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .cta-inner {

        align-items: flex-start;

        flex-direction: column;

    }

}


@media (max-width: 600px) {

    .container {

        width:
            min(
                calc(100% - 32px),
                var(--max-width)
            );

    }


    :root {

        --section-space: 75px;

    }


    .hero h1 {

        font-size: 46px;

        letter-spacing: -2px;

    }


    .hero-description {

        font-size: 16px;

    }


    .feature-grid {

        grid-template-columns: 1fr;

    }


    .feature-card {

        min-height: auto;

        padding: 28px;

    }


    .contact-form-wrapper {

        padding: 25px;

    }


    .contact-info h2 {

        font-size: 38px;

    }


    .footer-inner {

        flex-direction: column;

    }

}
.menu-button {
    position: relative;
    font-size: 0;
}

.menu-button::before,
.menu-button::after {
    content: "";
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    background: var(--black);
}

.menu-button::before {
    top: 14px;
    box-shadow: 0 7px 0 var(--black);
}

.menu-button::after {
    top: 28px;
}