:root {
    --bg: #090b10;
    --bg-soft: #10141d;
    --card: #151b26;
    --line: rgba(255, 255, 255, 0.1);
    --text: #eff3fb;
    --muted: #9ba9c5;
    --accent: #ff7a1a;
    --accent-2: #ff9a3f;
    --radius: 16px;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at 80% -20%, #263a57 0%, transparent 40%), var(--bg);
    color: var(--text);
    line-height: 1.65;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 2.4rem));
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 26px rgba(255, 122, 26, 0.25);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px rgba(255, 122, 26, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: rgba(255, 122, 26, 0.6);
    color: #fff;
    transform: translateY(-2px);
}

.section {
    padding: 5.5rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 3.3vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted);
    max-width: 720px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 11, 16, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(145deg, #232d3f, #0f141f);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--accent);
    font-weight: 900;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.main-nav a {
    color: #d9e1ef;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.4rem 0.1rem;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}

.hero {
    min-height: calc(88vh - 84px);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(9, 11, 16, 0.9) 0%, rgba(9, 11, 16, 0.6) 45%, rgba(9, 11, 16, 0.2) 100%),
        url("../images/1.jpg") center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(9, 11, 16, 0.96) 0%, rgba(9, 11, 16, 0.2) 48%, rgba(9, 11, 16, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    text-align: left;
    padding: 2rem 0;
    animation: riseIn 900ms ease both;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: #d5def1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.34rem 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4.15rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

.hero p {
    color: #ccd6ea;
    max-width: 640px;
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.metrics {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.metric {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(15, 20, 31, 0.6);
    padding: 0.9rem;
}

.metric strong {
    font-size: 1.2rem;
}

.metric span {
    color: var(--muted);
    font-size: 0.86rem;
    display: block;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    background: linear-gradient(160deg, #131a26 0%, #101620 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.3rem;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 26, 0.5);
}

.card h3 {
    margin: 0.3rem 0 0.6rem;
    font-size: 1.16rem;
}

.card p {
    color: var(--muted);
    font-size: 0.96rem;
}

.icon-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 122, 26, 0.55);
    display: grid;
    place-items: center;
    color: var(--accent-2);
    font-size: 0.9rem;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.3rem;
    align-items: center;
}

.media-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 420px;
    background: #0d1119;
}

.media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(16, 22, 32, 0.7);
}

.price-item strong {
    color: #fff;
    font-size: 1.03rem;
}

.price-item span {
    font-weight: 800;
    color: var(--accent-2);
}

.cta-band {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(130deg, rgba(255, 122, 26, 0.22) 0%, rgba(255, 122, 26, 0.03) 58%),
        #101620;
    padding: 2rem;
}

.page-hero {
    padding: 4.6rem 0 3.2rem;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(160deg, rgba(255, 122, 26, 0.08), transparent 55%),
        #0d1118;
}

.page-hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3.3rem);
    line-height: 1.1;
    margin-bottom: 0.7rem;
}

.page-hero p {
    color: var(--muted);
    max-width: 780px;
}

.info-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.info-list li {
    border-left: 2px solid rgba(255, 122, 26, 0.5);
    padding-left: 0.8rem;
    color: #dce4f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-label {
    display: inline-block;
    margin-bottom: 0.32rem;
    font-size: 0.93rem;
    color: #d9e2f5;
}

.input,
.textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #0c1119;
    color: #fff;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    font: inherit;
    transition: border-color 0.2s ease;
}

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

.input:focus,
.textarea:focus {
    border-color: rgba(255, 122, 26, 0.7);
    outline: none;
}

.status {
    margin-top: 0.8rem;
    color: #cde6cd;
    min-height: 1.3rem;
    font-size: 0.95rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #0a0d14;
    padding: 3rem 0 1.6rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.2rem;
}

.footer-title {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.footer-links a {
    color: #cad5eb;
    font-size: 0.94rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-small {
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: #97a6c5;
    font-size: 0.88rem;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .media-wrap {
        min-height: 340px;
    }
}

@media (max-width: 820px) {
    .main-nav {
        position: absolute;
        top: 84px;
        right: 1.2rem;
        background: #0d121c;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        min-width: 230px;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
    }

    .main-nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .metrics,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
