/* ========================= */
/* BASE */
/* ========================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(to bottom, #eef2f5, #e7ebef);
    color: #1f1f1f;
    line-height: 1.6;
    padding-bottom: 70px;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, p {
    margin-top: 0;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* ========================= */
/* NAVBAR */
/* ========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    color: #f97316;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    white-space: nowrap;
	text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    position: static;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f97316;
}

/* ========================= */
/* HAMBURGER */
/* ========================= */
.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    position: absolute;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 12px;
}

.hamburger span:nth-child(2) {
    top: 19px;
}

.hamburger span:nth-child(3) {
    top: 26px;
}

.hamburger.active span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

/* ========================= */
/* HERO */
/* ========================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.68));
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 90px 24px;
    text-align: center;
    color: #fff;
}

.hero-logo {
    width: min(460px, 82%);
    margin: 0 auto 28px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.94;
    margin-bottom: 28px;
}

/* ========================= */
/* BUTTONS / CTA */
/* ========================= */
.cta,
.about-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.cta a,
.about-cta a,
.primary,
.btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta a,
.about-cta a {
    background: #fff;
    color: #111;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.primary,
.btn {
    background: linear-gradient(135deg, #ff8a1d, #f97316);
    color: #fff;
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

.cta a:hover,
.about-cta a:hover,
.primary:hover,
.btn:hover {
    transform: translateY(-2px);
}

.primary:hover,
.btn:hover {
    background: linear-gradient(135deg, #ff962f, #ea580c);
}

/* ========================= */
/* GENERAL CONTENT */
/* ========================= */
section h2 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 2.2rem;
    font-weight: 800;
    color: #101010;
    letter-spacing: -0.02em;
}

.muted {
    font-size: 0.85rem;
    color: #666;
}

section p,
section li {
    font-size: 1.03rem;
}

section ul {
    max-width: 720px;
    margin: 0 auto;
    padding-left: 22px;
}

section:not(.pricing):not(.about-hero):not(.about) {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    margin-top: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* ========================= */
/* PRICING */
/* ========================= */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.card h2 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.card p {
    margin-bottom: 12px;
}

.card a {
    margin: 6px;
}

/* ========================= */
/* ABOUT PAGE */
/* ========================= */
.about-hero {
    background: linear-gradient(135deg, #0f0f10, #1c1c1f);
    color: #fff;
    text-align: center;
    padding: 120px 24px 90px;
    max-width: none;
}

.about-hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.about-hero p {
    font-size: 1.08rem;
    opacity: 0.92;
}

.about.modern {
    padding: 80px 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 32px 28px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-text:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.about-text h2 {
    margin-bottom: 14px;
    text-align: left;
    font-size: 1.7rem;
}

/* ========================= */
/* FOOTER */
/* ========================= */
footer {
    text-align: center;
    padding: 28px 20px;
    background: #050505;
    color: #b7b7b7;
    letter-spacing: 0.2px;
    margin-top: 30px;
}

footer a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* ========================= */
/* STICKY CALL BAR */
/* ========================= */
.sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff8a1d, #f97316);
    z-index: 1100;
    text-align: center;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
}

.sticky-call a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 14px 20px;
    letter-spacing: 0.2px;
}

/* ========================= */
/* SCROLL ANIMATION */
/* ========================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px) {
    body {
        padding-bottom: 68px;
    }

    .navbar {
        padding: 16px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        right: 20px;
        background: rgba(17, 17, 17, 0.98);
        padding: 16px;
        border-radius: 16px;
        min-width: 190px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .hero {
        min-height: 540px;
    }

    .hero-logo {
        width: min(320px, 85%);
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .pricing {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 90px 20px 70px;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 26px 22px;
    }

    section {
        padding: 50px 20px;
    }

    section:not(.pricing):not(.about-hero):not(.about) {
        border-radius: 22px;
    }
}