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

:root {
    --bg: #06070a;
    --bg-soft: #0b0f14;
    --surface: rgba(17, 22, 29, 0.88);
    --surface-strong: rgba(24, 30, 38, 0.94);
    --line: rgba(255, 255, 255, 0.12);
    --line-soft: rgba(255, 255, 255, 0.07);
    --text: #f6f2e9;
    --muted: #9ba5b2;
    --muted-strong: #cdd4dd;
    --gold: #d9b96e;
    --cyan: #6adbe6;
    --violet: #9278e6;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius: 8px;
    --nav-height: 76px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 76% 18%, rgba(106, 219, 230, 0.12), transparent 28rem),
        radial-gradient(circle at 12% 28%, rgba(217, 185, 110, 0.1), transparent 24rem),
        linear-gradient(180deg, #07080c 0%, #06070a 52%, #080a0e 100%);
    font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 82%);
}

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

a {
    color: inherit;
}

.container,
.nav-container,
.hero-content {
    width: min(1160px, calc(100% - 44px));
    margin: 0 auto;
}

.cursor-glow,
.particles,
.particle,
.neon-glow {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(6, 7, 10, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    transition: height 0.2s ease, background 0.2s ease;
}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 185, 110, 0.72), rgba(106, 219, 230, 0.58), transparent);
}

.navbar.scrolled {
    height: 68px;
    background: rgba(6, 7, 10, 0.94);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    width: auto;
    height: 46px;
    max-width: 160px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(106, 219, 230, 0.22));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.95rem;
    color: var(--muted-strong);
    border: 1px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 6px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    border-color: rgba(217, 185, 110, 0.26);
    background: rgba(255, 255, 255, 0.04);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
}

.hamburger span {
    width: 19px;
    height: 2px;
    background: var(--text);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 4rem) 0 5rem;
    background:
        linear-gradient(90deg, rgba(6, 7, 10, 0.98) 0%, rgba(6, 7, 10, 0.91) 55%, rgba(6, 7, 10, 0.62) 100%),
        linear-gradient(180deg, rgba(13, 18, 26, 0.78), rgba(6, 7, 10, 0.94));
}

.hero::before {
    content: "PAIZILAI";
    position: absolute;
    left: -1rem;
    bottom: 5vh;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
    font-family: "Orbitron", "Noto Sans SC", sans-serif;
    font-size: 12rem;
    font-weight: 900;
    line-height: 0.8;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(106, 219, 230, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 185, 110, 0.045) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: 0.5;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 78%);
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 610px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 440px;
}

.hero-content::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: min(36vw, 400px);
    height: 460px;
    border: 1px solid rgba(217, 185, 110, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
        rgba(15, 20, 28, 0.76);
    box-shadow: var(--shadow);
    transform: translateY(-50%);
}

.hero-content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: min(4.5vw, 52px);
    width: min(27vw, 296px);
    height: 296px;
    background:
        url("logo.png") center / contain no-repeat,
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    transform: translateY(-50%);
}

.hero-badge,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    margin-bottom: 1.1rem;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.hero-badge::before,
.section-tag::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-badge::after,
.section-tag::after {
    content: "";
    width: 18px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), transparent);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(106, 219, 230, 0.3);
    border-radius: 6px;
    background: rgba(106, 219, 230, 0.08);
    font-size: 0.9rem;
}

.hero-title,
.hero-desc,
.hero-buttons,
.hero-stats {
    max-width: 700px;
}

.hero-title {
    position: relative;
    margin-bottom: 1.35rem;
}

.title-line {
    display: block;
    color: var(--text);
    font-size: 5.1rem;
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 2px 0 rgba(217, 185, 110, 0.24), 0 18px 44px rgba(0, 0, 0, 0.42);
}

.title-line::after {
    content: "牌子来电竞";
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(106, 219, 230, 0.16);
}

.title-sub {
    display: block;
    margin-top: 0.85rem;
    color: var(--muted-strong);
    font-family: "Orbitron", "Noto Sans SC", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.hero-desc {
    margin-bottom: 2rem;
    color: var(--muted-strong);
    font-size: 1.1rem;
    line-height: 1.9;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 2.7rem;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 52px;
    padding: 0.9rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 7px;
    color: var(--text);
    font: inherit;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-neon {
    color: #06070a;
    background: linear-gradient(135deg, #fff1c0, var(--gold) 46%, #b5f5fb 100%);
    box-shadow: 0 12px 34px rgba(217, 185, 110, 0.18);
}

.btn-outline-neon {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(217, 185, 110, 0.3);
}

.btn-outline-neon:hover {
    color: var(--gold);
    border-color: rgba(217, 185, 110, 0.56);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    border: 1px solid rgba(217, 185, 110, 0.18);
    border-radius: var(--radius);
    background: rgba(17, 22, 29, 0.68);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.26);
}

.stat {
    position: relative;
    padding: 1.25rem 1.15rem;
}

.stat::before {
    content: "";
    position: absolute;
    left: 1.15rem;
    top: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.stat-value {
    display: block;
    color: var(--text);
    font-family: "Orbitron", "Noto Sans SC", sans-serif;
    font-size: 2rem;
    line-height: 1.08;
    font-weight: 900;
}

.stat-label {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    min-height: 100%;
    background: linear-gradient(180deg, transparent, rgba(217, 185, 110, 0.42), rgba(106, 219, 230, 0.28), transparent);
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.55rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.8rem;
    transform: translateX(-50%);
}

.scroll-mouse {
    width: 20px;
    height: 34px;
    border: 1px solid rgba(217, 185, 110, 0.42);
    border-radius: 99px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    border-radius: 99px;
    background: var(--gold);
}

.about,
.services,
.contact {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.about {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.services {
    background: linear-gradient(180deg, var(--bg-soft) 0%, #080b10 100%);
}

.contact {
    background: linear-gradient(180deg, #080b10 0%, var(--bg) 100%);
}

.section-header {
    max-width: 780px;
    margin-bottom: 3.2rem;
    text-align: left;
}

.section-title {
    margin-bottom: 0.85rem;
    color: var(--text);
    font-size: 2.85rem;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}

.section-desc {
    max-width: 650px;
    color: var(--muted-strong);
    font-size: 1.05rem;
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
    gap: 3.6rem;
    align-items: center;
}

.about-text,
.contact-wrapper,
.service-card,
.image-container {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)), var(--surface);
    box-shadow: var(--shadow);
}

.about-text {
    position: relative;
    padding: 1.8rem;
}

.about-text::before,
.contact-wrapper::before {
    content: "";
    position: absolute;
    left: 1.8rem;
    top: 0;
    width: 84px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.about-text h3 {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.48rem;
    line-height: 1.35;
}

.about-text p {
    max-width: 680px;
    margin-bottom: 1rem;
    color: var(--muted-strong);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.1rem;
    border: 1px solid var(--line-soft);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 185, 110, 0.32);
    background: rgba(255, 255, 255, 0.055);
}

.feature-icon,
.service-icon,
.contact-icon,
.image-icon {
    font-size: 0;
}

.feature-icon,
.service-icon,
.contact-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 185, 110, 0.34);
    border-radius: 8px;
    background: rgba(217, 185, 110, 0.08);
}

.feature-icon::before,
.service-icon::before,
.contact-icon::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid var(--gold);
    border-left-color: var(--cyan);
    border-radius: 4px;
    transform: rotate(45deg);
}

.feature-text h4 {
    margin-bottom: 0.2rem;
    color: var(--text);
    font-size: 1rem;
}

.feature-text p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.image-container {
    position: relative;
    min-height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-container::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    background:
        linear-gradient(90deg, transparent 49.7%, rgba(106, 219, 230, 0.12) 50%, transparent 50.3%),
        linear-gradient(0deg, transparent 49.7%, rgba(217, 185, 110, 0.16) 50%, transparent 50.3%);
}

.image-glow {
    display: none;
}

.image-content {
    position: relative;
    z-index: 1;
    width: min(78%, 330px);
    text-align: center;
}

.image-content::before {
    content: "";
    display: block;
    width: min(100%, 275px);
    height: 132px;
    margin: 0 auto 1.5rem;
    background: url("logo.png") center / contain no-repeat;
    filter: drop-shadow(0 0 18px rgba(106, 219, 230, 0.22));
}

.image-content h4 {
    margin-bottom: 0.55rem;
    color: var(--text);
    font-size: 1.2rem;
}

.image-content p {
    color: var(--muted-strong);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 960px;
}

.service-card {
    position: relative;
    min-height: 100%;
    padding: 1.8rem;
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 1.8rem;
    right: 1.8rem;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--cyan), transparent);
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(106, 219, 230, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026)), var(--surface-strong);
}

.service-icon {
    margin-bottom: 1.3rem;
}

.service-card h3 {
    margin-bottom: 0.8rem;
    color: var(--text);
    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 1.2rem;
    color: var(--muted-strong);
}

.service-features {
    display: grid;
    gap: 0.5rem;
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 1.05rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.service-features li::before {
    content: "";
    position: absolute;
    top: 0.78em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.contact-wrapper {
    position: relative;
    max-width: 1040px;
    padding: 1.9rem;
}

.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    max-width: 740px;
    margin-bottom: 2rem;
    color: var(--muted-strong);
}

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

.wechat-qr {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.45rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
}

.wechat-qr img {
    display: block;
    width: 128px;
    height: 128px;
    padding: 6px;
    object-fit: cover;
    background: #fff;
}

.wechat-qr .contact-label,
.wechat-qr .contact-value {
    display: block;
}

.wechat-qr .contact-label {
    margin-bottom: 0.35rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.95rem;
    align-items: start;
    min-width: 0;
    padding: 1.05rem;
    border: 1px solid var(--line-soft);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
}

.contact-label,
.contact-value {
    display: block;
}

.contact-label {
    margin-bottom: 0.18rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.contact-value {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    min-height: 43px;
    padding: 0.72rem 1.05rem;
    border: 1px solid rgba(217, 185, 110, 0.24);
    border-radius: 7px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    font-weight: 800;
    transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.social-link::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 0.55rem;
    background: var(--gold);
    transform: rotate(45deg);
}

.social-link:hover {
    color: var(--text);
    border-color: rgba(106, 219, 230, 0.38);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.055);
}

.contact-form,
.form-group,
.facilities,
.about-game,
.team,
.achievements {
    display: none;
}

.footer {
    position: relative;
    padding: 4.4rem 0 2rem;
    border-top: 1px solid rgba(217, 185, 110, 0.18);
    background: #05060b;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.5fr);
    gap: 3.6rem;
    margin-bottom: 2.7rem;
}

.footer-brand p {
    max-width: 380px;
    color: var(--muted);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 56px;
    width: auto;
}

.footer-logo p {
    color: var(--muted-strong);
    font-size: 0.95rem;
}

.footer-slogan {
    margin-top: 0.95rem;
    color: var(--gold);
    font-family: "Orbitron", "Noto Sans SC", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

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

.footer-column {
    padding: 1.05rem;
    border: 1px solid var(--line-soft);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.025);
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 0.98rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.18s ease, padding-left 0.18s ease;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 1.45rem;
    border-top: 1px solid var(--line-soft);
    color: var(--muted);
    font-size: 0.86rem;
    text-align: center;
}

@media (max-width: 1100px) {
    .hero-content {
        padding-right: 0;
    }

    .hero-content::before,
    .hero-content::after {
        opacity: 0.15;
        right: -5%;
    }
}

@media (max-width: 1024px) {
    .title-line {
        font-size: 4.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-container {
        min-height: 340px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.6rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
    }

    .container,
    .nav-container,
    .hero-content {
        width: calc(100% - 32px);
        max-width: 1160px;
        min-width: 0;
    }

    .navbar {
        height: var(--nav-height);
    }

    .logo-image {
        height: 40px;
        max-width: 140px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.65rem;
        border: 1px solid rgba(217, 185, 110, 0.24);
        border-radius: 8px;
        background: rgba(8, 10, 14, 0.98);
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        min-height: 46px;
        justify-content: flex-start;
        padding: 0 0.9rem;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 94vh;
        padding-top: calc(var(--nav-height) + 3rem);
    }

    .hero::before {
        font-size: 5.5rem;
        bottom: 8vh;
    }

    .hero-content {
        min-height: 630px;
    }

    .hero-content::before,
    .hero-content::after {
        display: none;
    }

    .title-line {
        font-size: 3.08rem;
    }

    .title-sub {
        font-size: 0.82rem;
        letter-spacing: 0.11em;
        overflow-wrap: anywhere;
    }

    .hero-desc,
    .contact-value {
        overflow-wrap: anywhere;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .stat {
        padding: 1rem;
    }

    .stat-divider {
        width: 100%;
        min-height: 1px;
        height: 1px;
    }

    .about,
    .services,
    .contact {
        padding: 4.8rem 0;
    }

    .section-title {
        font-size: 2.15rem;
    }

    .about-text,
    .contact-wrapper {
        padding: 1.25rem;
    }

    .about-features,
    .services-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-desc {
        width: min(100%, 22rem);
        max-width: 22rem;
        font-size: 1rem;
        line-height: 1.82;
        word-break: break-word;
    }

    .hero-buttons,
    .hero-stats {
        width: min(100%, 22rem);
        max-width: 22rem;
    }

    .btn {
        width: 100%;
    }

    .title-line {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.92rem;
    }

    .feature-item,
    .contact-item {
        grid-template-columns: 1fr;
    }

    .scroll-hint {
        display: none;
    }
}
