﻿@font-face {
    font-family: "Aileron";
    src: url("https://cdn.jsdelivr.net/fontsource/fonts/aileron@latest/latin-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Aileron";
    src: url("https://cdn.jsdelivr.net/fontsource/fonts/aileron@latest/latin-700-normal.woff2") format("woff2");
    font-weight: 700 800;
    font-style: normal;
    font-display: swap;
}
:root {
    --black: #050505;
    --black-soft: #111111;
    --dark-card: #1a1a1a;
    --white: #ffffff;
    --off-white: #f4f1eb;
    --text: #1c1c1c;
    --muted: #666666;
    --muted-light: #cfcfcf;
    --brand-blue: #1800ad;
    --brand-orange: #e54e0f;
    --brand-blue-soft: rgba(24, 0, 173, 0.16);
    --brand-orange-soft: rgba(229, 78, 15, 0.16);
    --gold: #c8a86a;
    --gold-light: #e2c98d;
    --border: rgba(255, 255, 255, 0.12);
    --border-dark: rgba(0, 0, 0, 0.08);
    --container: 73.75rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Aileron", Arial, sans-serif;
    background: var(--off-white);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-content {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: flex-start;
    color: var(--white);
}

.logo img {
    width: 9.5rem;
    height: auto;
}

.main-nav a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    transition: 0.3s;
    margin: 0 8px;
}

.main-nav a:hover {
    color: var(--brand-orange);
}

.header-btn {
    padding: 13px 22px;
    background: var(--brand-orange);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.header-btn:hover {
    background: var(--brand-blue);
}

.hero {
    min-height: 92vh;
    padding: 160px 0 110px;
    background:
        linear-gradient(
            90deg, 
            rgba(0, 0, 0, 0.98) 0%, 
            rgba(0, 0, 0, 0.92) 36%, 
            rgba(0, 0, 0, 0.62) 62%, 
            rgba(0, 0, 0, 0.38) 100%
        ),
        url("../images/hero_anoar.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 70px;
}

.hero-text {
    max-width: 45vw;
}

.section-label {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--brand-orange);
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-label.light {
    color: var(--brand-orange);
}

.hero h1,
.about h2,
.section-heading h2,
.difference h2,
.projects h2,
.contact-cta h2 {
    font-family: "Aileron", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.05;
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 2.5rem);
    margin-bottom: 28px;
}

.hero h1::first-line {
    color: var(--white);
}

.hero p {
    max-width: 560px;
    color: #e8e8e8;
    font-size: 1.0625rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-primary {
    background: var(--brand-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brand-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    transform: translateY(-2px);
}

.light-btn {
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.28);
}

.hero-note {
    margin-top: 28px;
    font-size: 0.8125rem !important;
    color: #bdbdbd !important;
}

.about,
.audience,
.method,
.difference,
.contact-cta {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid,
.difference-grid,
.contact-grid,
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about h2,
.section-heading h2,
.difference h2,
.projects h2,
.contact-cta h2 {
    font-size: clamp(2.125rem, 4vw, 2.5rem);
    color: var(--black);
    margin-bottom: 28px;
}

.about p,
.audience p,
.method p,
.difference p,
.contact-cta p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 18px;
}

.showcase {
    padding: 100px 0;
    background: #0a0a0a;
    color: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.showcase-image {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.showcase-content h2 {
    font-family: "Aileron", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 2.25rem);
    line-height: 1.05;
    margin-bottom: 26px;
    color: var(--white);
}

.showcase-content p {
    color: #cfcfcf;
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.showcase-content .btn-primary {
    margin-top: 18px;
}

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .showcase-image img {
        height: 460px;
    }
}

@media (max-width: 720px) {
    .showcase {
        padding: 72px 0;
    }

    .showcase-image img {
        height: 320px;
    }
}

.quote-box {
    border-left: 1px solid rgba(229, 78, 15, 0.55);
    padding-left: 50px;
    max-width: 460px;
}

.quote-icon {
    color: var(--brand-orange);
    font-size: 2.5rem;
    display: block;
    margin-bottom: 28px;
}

.quote-box p {
    font-family: "Aileron", Arial, sans-serif;
    font-size: 1.6875rem;
    line-height: 1.5;
    color: var(--black);
    font-style: italic;
}

.section-heading {
    margin-bottom: 54px;
}

.section-heading.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.section-heading.split p {
    max-width: 540px;
    margin-left: auto;
}

.cards-grid {
    display: grid;
    gap: 28px;
}

.cards-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.info-card {
    padding: 34px 30px;
    border-left: 1px solid var(--border-dark);
}

.card-icon {
    display: block;
    font-size: 2.25rem;
    color: var(--brand-orange);
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 1.1875rem;
    margin-bottom: 12px;
    color: var(--black);
}

.info-card p {
    font-size: 0.9375rem;
    margin: 0;
}

.services {
    padding: 100px 0;
    background:
        radial-gradient(circle at left top, rgba(229, 78, 15, 0.12), transparent 28%),
        var(--black);
    color: var(--white);
}

.section-heading.dark h2 {
    color: var(--white);
}

.section-heading.dark p {
    color: var(--muted-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 320px;
    padding: 34px 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 0, 173, 0.32);
}

.service-number {
    position: absolute;
    right: 22px;
    top: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
}

.service-icon {
    display: block;
    color: var(--brand-orange);
    font-size: 1.875rem;
    margin-bottom: 32px;
}

.service-card h3 {
    font-family: "Aileron", Arial, sans-serif;
    font-size: 1.5625rem;
    line-height: 1.15;
    margin-bottom: 18px;
}

.service-card p {
    color: #c9c9c9;
    font-size: 0.9375rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(24, 0, 173, 0.32);
}

.timeline-item {
    position: relative;
    padding-top: 42px;
}

.timeline-item span {
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--off-white);
    border: 1px solid var(--brand-orange);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item h3 {
    color: var(--brand-orange);
    margin-bottom: 12px;
    font-family: "Aileron", Arial, sans-serif;
    font-size: 1.4375rem;
}

.timeline-item p {
    font-size: 0.9375rem;
    margin: 0;
}

.difference {
    padding-bottom: 70px;
}

.principles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 70px;
}

.principles span {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    border-top: 1px solid var(--border-dark);
    color: var(--muted);
    font-size: 0.875rem;
}

.projects {
    padding: 80px 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.78)),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.projects h2 {
    color: var(--white);
}

.projects p {
    color: #d6d6d6;
    margin-bottom: 26px;
}

.contact-cta {
    background: var(--off-white);
}

.small-text {
    font-size: 0.8125rem !important;
    margin-top: 18px;
}

.site-footer {
    padding: 1.2rem 0;
    background: var(--black-soft);
    color: var(--off-white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}


.footer-content p {
    max-width: 32rem;
    font-size: 0.875rem;
    margin: 0;
}

.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-dark);
    font-size: 0.8125rem;
}

.copyright a { font-weight: 700; }
.copyright a:hover { color: var(--brand-orange); }

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .hero-content,
    .about-grid,
    .difference-grid,
    .contact-grid,
    .projects-grid,
    .section-heading.split {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .services-grid,
    .timeline,
    .principles {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid.three {
        grid-template-columns: 1fr;
    }

    .section-heading.split p {
        margin-left: 0;
    }

    .hero-image {
        min-height: 360px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .header-content {
        height: 72px;
    }

    .header-btn {
        display: none;
    }
    .logo img {
        width: 8rem;
    }

    .hero {
        padding: 120px 0 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .image-card {
        height: 300px;
    }

    .notebook {
        width: 230px;
        height: 150px;
        right: 24px;
        bottom: 28px;
    }

    .about,
    .audience,
    .method,
    .difference,
    .contact-cta,
    .services {
        padding: 72px 0;
    }

    .quote-box {
        padding-left: 28px;
    }

    .quote-box p {
        font-size: 1.4375rem;
    }

    .services-grid,
    .timeline,
    .principles {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }
}






