:root {
    --bg: #0b0b0d;
    --bg-soft: #141418;
    --card: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #f4f4f5;
    --muted: #b5b5be;
    --accent: #ff7a00;
    --accent-2: #ffb347;
    --accent-3: #ffd54a;
    --danger: #ff3b1f;
    --shadow: 0 20px 60px rgba(0, 0, 0, .35);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 0, .18), transparent 26%),
        radial-gradient(circle at top right, rgba(255, 80, 40, .12), transparent 22%),
        linear-gradient(180deg, #070708 0%, #0d0d10 40%, #121216 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .06));
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(10, 10, 12, .68);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    min-width: 0;
}

.brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(255, 122, 0, .22));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    letter-spacing: .03em;
}

.brand-text span {
    color: var(--muted);
    font-size: .85rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    text-decoration: none;
    color: #ececf0;
    font-weight: 500;
    font-size: .96rem;
    padding: 10px 14px;
    border-radius: 999px;
    transition: .25s ease;
}

.nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.nav .cta {
    background: linear-gradient(135deg, var(--accent), var(--danger));
    box-shadow: 0 12px 30px rgba(255, 100, 20, .22);
}

.hero {
    position: relative;
    padding: 72px 0 44px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 34px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 122, 0, .10);
    border: 1px solid rgba(255, 179, 71, .22);
    color: #ffd6ab;
    font-weight: 600;
    font-size: .92rem;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-3), var(--danger));
    box-shadow: 0 0 18px rgba(255, 160, 0, .75);
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: .98;
    letter-spacing: -.04em;
    margin-bottom: 18px;
    max-width: 12ch;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #ffd5a2 34%, #ffb347 62%, #ff6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: .98rem;
    transition: .25s ease;
    border: 1px solid transparent;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--danger));
    box-shadow: 0 16px 32px rgba(255, 95, 25, .25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 95, 25, .32);
}

.btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

.hero-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 34px;
    padding: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, .40), transparent 68%);
    filter: blur(12px);
}

.hero-card::after {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 180, 71, .22), transparent 72%);
    filter: blur(14px);
}

.logo-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrap img {
    width: min(100%, 520px);
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .45));
}

.floating-badge {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 170px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(12, 12, 14, .82);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .34);
    backdrop-filter: blur(10px);
}

.floating-badge small {
    color: var(--muted);
    font-size: .78rem;
}

.floating-badge strong {
    font-size: 1rem;
    line-height: 1.3;
}

.badge-1 {
    top: 24px;
    left: 24px;
}

.badge-2 {
    right: 24px;
    bottom: 24px;
}

.section {
    padding: 34px 0;
}

.section-head {
    margin-bottom: 22px;
    max-width: 760px;
}

.section-head span {
    display: inline-block;
    color: #ffca8b;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .82rem;
    margin-bottom: 12px;
}

.section-head h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.about-grid,
.info-grid,
.contact-grid {
    display: grid;
    gap: 22px;
}

.about-grid {
    grid-template-columns: 1fr 1fr;
}

.info-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
}

.card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow);
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.card p {
    color: var(--muted);
    line-height: 1.8;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, .22), transparent 70%);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, .22), rgba(255, 59, 31, .14));
    border: 1px solid rgba(255, 179, 71, .18);
}

.check-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ededf2;
    line-height: 1.6;
}

.check-list li::before {
    content: "✓";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #111;
    font-size: .85rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-3), var(--accent));
    margin-top: 2px;
}

.contact-stack {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
}

.contact-item .icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 122, 0, .18), rgba(255, 59, 31, .14));
    font-size: 1.15rem;
    flex: 0 0 46px;
}

.contact-item small {
    display: block;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-item strong,
.contact-item a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 700;
    word-break: break-word;
}

.hours-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.hour-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
}

.hour-row span:first-child {
    color: #fff;
    font-weight: 600;
}

.hour-row span:last-child {
    color: #ffd3a1;
    text-align: right;
    font-weight: 700;
}

.cta-banner {
    margin-top: 22px;
    border-radius: 28px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 122, 0, .18), rgba(255, 59, 31, .14));
    border: 1px solid rgba(255, 179, 71, .18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-banner h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    margin-bottom: 8px;
}

.cta-banner p {
    color: #ffe0bf;
    max-width: 720px;
    line-height: 1.7;
}

footer {
    padding: 28px 0 44px;
    color: #9b9ba4;
    text-align: center;
    font-size: .95rem;
}

footer p + p {
    margin-top: 8px;
}

.footer-dev {
    color: #c9c9d1;
}

.footer-dev strong {
    color: #ffb347;
    font-weight: 700;
}

@media (max-width: 1080px) {

    .hero-grid,
    .about-grid,
    .contact-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        max-width: none;
    }

    .hero-card {
        min-height: 420px;
    }
}

@media (max-width: 720px) {
    .topbar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .brand {
        justify-content: center;
    }

    .nav {
        justify-content: center;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-card {
        padding: 18px;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
    }

    .floating-badge {
        position: static;
        margin-top: 16px;
        width: 100%;
    }

    .logo-wrap {
        flex-direction: column;
        order: 2;
    }

    .badge-1 {
        order: 1;
    }

    .badge-2 {
        order: 3;
    }

    .card,
    .cta-banner {
        padding: 22px;
    }

    .hour-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.nav a {
    text-decoration: none;
    color: #ececf0;
    font-weight: 500;
    font-size: .96rem;
    padding: 10px 14px;
    border-radius: 999px;
    transition: .25s ease;
    border: 1px solid transparent;
}

.nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border-color: rgba(255, 255, 255, .08);
}

.footer-dev a {
    text-decoration: none;
}

.footer-dev a strong {
    color: #ffb347;
    font-weight: 700;
    transition: .25s ease;
}

.footer-dev a:hover strong {
    color: #ffd54a;
}